diff --git a/01-introduction.md b/01-introduction.md new file mode 100644 index 00000000..1f4c592b --- /dev/null +++ b/01-introduction.md @@ -0,0 +1,88 @@ +--- +title: Introduction to OpenRefine +teaching: 15 +exercises: 0 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Explain what the OpenRefine software does +- Explain how the OpenRefine software can help work with data files + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- What is OpenRefine? What can it do? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## What is OpenRefine? + +OpenRefine is a desktop application that uses your web browser as a graphical interface. It is described as "a power tool for working with messy data" ([David Huynh](https://web.archive.org/web/20141021040915/http://davidhuynh.net/spaces/nicar2011/tutorial.pdf)) - but what does this mean? It is probably easiest to describe the kinds of data OpenRefine is good at working with and the sorts of problems it can help you or your team solve. + +OpenRefine is most useful where you have data in a simple tabular format such as a spreadsheet, a comma separated values file (csv) or a tab delimited file (tsv) but with internal inconsistencies either in data formats, or where data appears, or in terminology used. OpenRefine can be used to standardize and clean data across your file. It can help you: + +- Get an overview of a data set +- Resolve inconsistencies in a data set, for example standardizing date formatting +- Help you split data up into more granular parts, for example splitting up cells with multiple authors into separate cells +- Match local data up to other data sets - for example, in matching forms of personal names against name authority records in the Virtual International Authority File (VIAF) +- Enhance a data set with data from other sources + +Some common scenarios might be: + +- Where you want to know how many times a particular value (name, publisher, subject) appears in a column in your data +- Where you want to know how values are distributed across your whole data set +- Where you have a list of dates which are formatted in different ways, and want to change all the dates in the list to a single common date format. For example: + +| Data you have | Desired data | +| ----------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------- | +| 1st January 2014 | 2014-01-01 | +| 01/01/2014 | 2014-01-01 | +| Jan 1 2014 | 2014-01-01 | +| 2014-01-01 | 2014-01-01 | + +- Where you have a list of names or terms that differ from each other but refer to the same people, places or concepts. For example: + +| Data you have | Desired data | +| ----------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------- | +| London | London | +| London] | London | +| London,] | London | +| london | London | + +- Where you have several bits of data combined together in a single column, and you want to separate them out into individual bits of data with one column for each bit of the data. For example going from a single address field (in the first column), to each part of the address in a separate field: + +| Address in single field | Institution | Library name | Address 1 | Address 2 | Town/City | Region | Country | Postcode | +| ----------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------- | :------------------------------------------------------------- | :---------------- | :-------- | :---------- | :------------ | :------------- | :------- | +| University of Wales, Llyfrgell Thomas Parry Library, Llanbadarn Fawr, ABERYSTWYTH, Ceredigion, SY23 3AS, United Kingdom | University of Wales | Llyfrgell Thomas Parry Library | Llanbadarn Fawr | | Aberystwyth | Ceredigion | United Kingdom | SY23 3AS | +| University of Aberdeen, Queen Mother Library, Meston Walk, ABERDEEN, AB24 3UE, United Kingdom | University of Abderdeen | Queen Mother Library | Meston Walk | | Aberdeen | | United Kingdom | AB24 3UE | +| University of Birmingham, Barnes Library, Medical School, Edgbaston, BIRMINGHAM, West Midlands, B15 2TT, United Kingdom | University of Birmingham | Barnes Library | Medical School | Edgbaston | Birmingham | West Midlands | United Kingdom | B15 2TT | +| University of Warwick, Library, Gibbett Hill Road, COVENTRY, CV4 7AL, United Kingdom | University of Warwick | Library | Gibbett Hill Road | | Coventry | | United Kingdom | CV4 7AL | + +- Where you want to add to your data from an external data source: + +| Data you have | Date of Birth from VIAF (Virtual International Authority File) | Date of Death from VIAF (Virtual International Authority File) | +| ----------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------- | :------------------------------------------------------------- | +| Braddon, M. E. (Mary Elizabeth) | 1835 | 1915 | +| Rossetti, William Michael | 1829 | 1919 | +| Prest, Thomas Peckett | 1810 | 1879 | + +## What Should I Know When Working With OpenRefine? + +- No internet connection is needed, and none of the data or commands you enter in OpenRefine are sent to a remote server. +- You are NOT modifying original/raw data. +- Projects are autosaved every five minutes and when OpenRefine is properly shut down (Ctrl+C). See [History in User Manual](https://docs.openrefine.org/manual/running/#history-undoredo) for details. +- Files are saved locally such that if you are working on two computers you will have to export/import files/projects. + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- OpenRefine is 'a tool for working with messy data' +- OpenRefine works best with data in a simple tabular format +- OpenRefine can help you split data up into more granular parts +- OpenRefine can help you match local data up to other data sets +- OpenRefine can help you enhance a data set with data from other sources + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/02-importing-data.md b/02-importing-data.md new file mode 100644 index 00000000..325284a4 --- /dev/null +++ b/02-importing-data.md @@ -0,0 +1,97 @@ +--- +title: Importing data into OpenRefine +teaching: 10 +exercises: 5 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Successfully import data into OpenRefine + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- How do I get data into OpenRefine? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Importing data + +OpenRefine does not manipulate your data directly. +Instead, the data you import and all the changes you make are stored in a project. +You can stop working on a project and continue later if you like. +When you want to 'refine' a new file, you start by creating a new project. +When you want to continue working on a project, you can open it through "Open Project". +It is also possible to export a project on one computer and continue working on it on a different +computer. +To do so, you transfer the exported files to the new computer and use "Import Project" on the new +computer. + +::::::::::::::::::::::::::::::::::::::::: callout + +## What kinds of data files can I import? + +There are several options for getting your data set into OpenRefine. You can upload or import files in a variety of formats including: + +- TSV (tab-separated values) +- CSV (comma-separated values) +- TXT +- Excel +- JSON (javascript object notation) +- XML (extensible markup language) +- Google Spreadsheet + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +::::::::::::::::::::::::::::::::::::::: checklist + +## Create your first OpenRefine project (using provided data) + +To import the data for the exercise below, follow the instructions in [Setup](https://librarycarpentry.github.io/lc-open-refine/index.html) to download the data and run OpenRefine. *NOTE: If OpenRefine does not open in a browser window, open your browser and type the address [http://127.0.0.1:3333/](https://127.0.0.1:3333/) to take you to the OpenRefine interface.* + +1. Once OpenRefine is launched in your browser, click `Create Project` from the left hand menu and select `Get data from This Computer` +2. Click `Choose Files` (or 'Browse', depending on your setup) and locate the file which you have downloaded called `doaj-article-sample.csv` +3. Click `Next»` where the next screen (see below) gives you options to ensure the data is imported into OpenRefine correctly. The options vary depending on the type of data you are importing. +4. Click in the `Character encoding` box and set it to `UTF-8`. This ensures that OpenRefine correctly interprets the imported data as UTF-8 encoded. If you don't select this you may find that some special characters (e.g. smart quotation marks) are not displayed correctly. +5. Ensure the first row is used to create the column headings by checking the box `Parse next 1 line(s) as column headers` +6. OpenRefine will automatically select `Use character " to enclose cells containing column separators` (such as a comma) as part of their data. This will make sure that OpenRefine doesn't misinterpret any commas (or other characters) within the column data as a delimiter. Keep this option selected. +7. From OpenRefine 3.4 onwards there is an option to Trim leading \& trailing whitespace from strings when importing separator-based files. Keeping this checked will ensure that values like `English` and `English `, which differ by a single trailing space, are not treated as different values after the import +8. Make sure the `Attempt to parse cell text into numbers` box is not checked, so OpenRefine doesn't try to automatically detect numbers because this could cause errors such as confusion between date formats (e.g. DD/MM/YYYY vs MM/DD/YYYY). +9. The Project Name box in the upper right corner will default to the title of your imported file. Click in the `Project Name` box to give your project a different name, if desired. + + :::::::::::::::::::::::::::::::::::::: instructor + + This is a good moment to review the points from [What Should I Know When Working with OpenRefine?](01-introduction.md#what-should-i-know-when-working-with-openrefine) + + ::::::::::::::::::::::::::::::::::::::::::::::::: +10. Once you have selected the appropriate options for your project, click the `Create project »` button at the top right of the screen. This will create the project and open it for you. Projects are saved as you work on them, there is no need to save copies as you go along. + +![Create Project in OpenRefine](fig/openrefine_ui.png){alt="OpenRefine Create Project screen, with highlights for the address bar, mentioned settings and the Create Project button."} + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +To open an existing project in OpenRefine you can click `Open Project` from the main OpenRefine screen (in the left hand menu). When you click this, you will see a list of the existing projects and can click on a project's name to open it. + +### Going Further + +- Look at the other options on the Import screen - try changing some of these options and see how that changes the Preview and how the data appears after import. + +::::::::::::::::::::::::::::::::::::::: instructor +Carefully guide learners on how to revisit OpenRefine's homepage to explore import options when creating new or re-opening existing projects, select the large blue diamond in the upper left corner of the browser window. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +- Do you have access to JSON or XML data? If so the first stage of the import process will prompt you to select a 'record path' - that is the parts of the file that will form the data rows in the OpenRefine project. + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- Use the `Create Project` option to import data +- You can control how data imports using options on the import screen +- Several files types may be imported into OpenRefine. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/03-working-with-data.md b/03-working-with-data.md new file mode 100644 index 00000000..a6796758 --- /dev/null +++ b/03-working-with-data.md @@ -0,0 +1,187 @@ +--- +title: Layout of OpenRefine, Rows vs Records +teaching: 10 +exercises: 5 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Locate controls for navigating data in OpenRefine +- Find options to work with data through the OpenRefine dropdown menus +- Split cells which contain multiple bits of data so that each piece of data is in its own cell + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- How is data organised in OpenRefine? +- How do I access options to amend data in OpenRefine? +- What is the difference between Rows and Records in OpenRefine? +- How do I work with single cells that contain multiple values in a list? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## The layout of OpenRefine + +OpenRefine displays data in a tabular format. Each row will usually represent a 'record' in the data, while each column represents a type of information. This is very similar to how you might view data in a spreadsheet or database. As with a spreadsheet, the individual bits of data live in 'cells' at the intersection of a row and a column. + +OpenRefine only displays a limited number of rows of data at one time. You can adjust the number choosing between 5, 10 (the default), 25 and 50 at the top left of the table of data. You can navigate through the records by using the previous/next/first/last navigation options at the top right of the table of data. + +In OpenRefine it is always possible to undo any changes: note the left panel, currently empty. Read the four words at the top of the panel: +Facet/Filter and Undo/Redo. We will focus on the undo/redo commands much later in the workshop; you are welcome to use it at anytime, as needed. + +## Working with data in OpenRefine + +Most options to work with data in OpenRefine are accessed from drop down menus at the top of the data columns. When you select an option in a particular column (e.g. to make a change to the data), it will affect all the cells in that column. If you want to make changes across several columns, you will need to do this one column at a time. + +## Rows and Records + +OpenRefine has two modes of viewing data: 'Rows' and 'Records'. At the moment we are in Rows mode, where each row represents a single record in the data set - in this case, an article. In Records mode, OpenRefine can link together multiple rows as belonging to the same Record. Rows will be assigned to Records based on the values in the first column. See more [details of Rows and Records in the OpenRefine documentation](https://docs.openrefine.org/manual/exploring#rows-vs-records). + +### Splitting Cells + +To see how this works in practice we can split author names into separate cells. If you look at the Author column you should be able to see that there are multiple names in each cell separated by the pipe symbol ( | ). + +To work with the author names effectively in OpenRefine, we need to have each name in an individual cell. To split the names into their own cells, we can use a `Split multi-valued cells` function: + +- Click the dropdown menu at the top of the Author column +- Choose `Edit cells->Split multi-valued cells` +- In the prompt type the ( | ) symbol and click `OK` + - Note that the rows are still numbered sequentially +- Click the `Records` option to change to Records mode + - Note how the numbering has changed - indicating that several rows are related to the same record + +![](fig/rows.png){alt='Screen capture showing OpenRefine in Rows mode.'} +![](fig/records.png){alt='Screen capture showing OpenRefine in Records mode.'} + +Note in the images above the difference between: Rows with the same Title appear below each shared title, interrupted the numbered sequence in the third column from the left. Shared titles have the same shading, which may be very difficult to distinguish visually, so look for each star and flag in the leftmost columns, which indicates a new row, that is an item with a different author. + +Now that we can split multi-valued cells, we'll cover how to join them back together. + +### Joining Cells + +A common workflow with multi-valued cells is + +- split multi-valued cells into individual cells (what we did above) +- modify/refine/clean individual cells +- join multi-valued cells back together + +Modifying cells will be covered in future lessons, but for now we will cover how to join cells back together that have been split previously. + +- Click the dropdown menu at the top of the Author column +- Choose `Edit cells->Join multi-valued cells` +- In the prompt type the ( | ) symbol + - Here we are specifying the *delimiter* character for OpenRefine to use to join the values together. +- Click `OK` to join the Authors cells back together + +You will now see that split rows have gone away - the Authors have been joined into a single cell with the specified delimiter. Our Rows and +Records values will now be the same since we do not have any more columns with split (multi-valued) cells. + +- Click both the `Rows` and `Records` options and observe how the numbers of Rows and Records are equal + +### Choosing a good separator + +The value that separates multi-valued cells is called a separator or delimiter. Choosing a good +separator is important. In the examples, we've seen the pipe character ( | ) has been used. + +Choosing the wrong separator can lead to problems. Consider the following multi-valued Author example, +with a pipe as a separator. + +``` +Jones, Andrew | Davis, S. +``` + +When we tell OpenRefine to split this cell on the pipe ( | ), we will get the following two authors each in their own cell since there is a single pipe character separating them. + +- **Author 1:** Jones, Andrew +- **Author 2:** Davis, S. + +Now imagine that the document creator had chosen a **comma** as the separator instead of a pipe. + +``` +Jones, Andrew , Davis, S. +``` + +Can you spot the problem? Can you tell where one author stops and the next begins? + +OpenRefine will split on **every** comma it encounters, +so we'll end up with 4 authors, not two, because OpenRefine cannot tell that **Jones, Andrew** is supposed to be a single author. We will get +the following four "authors" because there are 3 commas separating the name parts. + +- **Author 1:** Jones +- **Author 2:** Andrew +- **Author 3:** Davis +- **Author 4:** S. + +Splitting on a comma will not work with Authors because the names may include commas within them. + +::::::::::::::::::::::::::::::::::::::::: callout + +## Choose a separator that is not in your data values + +When creating a spreadsheet with multi-valued cells, it is important to choose a separator that will never appear in +the cell values themselves. For this reason, the pipe character ( | ) is often a good choice since it +is rarely used in data. Commas, colons and semi-colons should be avoided as separators. + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +::::::::::::::::::::::::::::::::::::::: challenge + +## Splitting Subjects into separate cells + +1. What separator character is used in the Subjects cells? +2. How would you split these subjects into individual cells? + +::::::::::::::: solution + +## Solution + +1. The subject words/headings are divided up with the pipe ( | ) character +2. To split the subject words into individual cells you need to: + +- Click the dropdown menu at the top of the Subjects column +- Choose 'Edit cells->Split multi-valued cells' +- In the prompt type the ( | ) symbol and click 'OK' + + + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +::::::::::::::::::::::::::::::::::::::: challenge + +## Joining the Subjects column back together + +1. Using what we've learned, now Join the Subjects back together + +::::::::::::::: solution + +## Solution + +1. The subject words/headings were previously delimited with the pipe ( | ) character +2. To join the split subject cells back to a single cell you need to: + +- Click the dropdown menu at the top of the Subjects column +- Choose 'Edit cells->Join multi-valued cells' +- In the prompt type the ( | ) symbol and click 'OK' + + + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- OpenRefine uses rows and columns to display data +- Most options to work with data in OpenRefine are accessed through a drop down menu at the top of a data column +- When you select an option in a particular column (e.g. to make a change to the data), it will affect all the cells in that column +- OpenRefine has a Records mode which links together multiple rows into a single record +- Split and join multi-valued cells to modify the individual values within them +- When creating multi-valued cells in your data, choose a separator that will not appear in the data values + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/04-faceting-and-filtering.md b/04-faceting-and-filtering.md new file mode 100644 index 00000000..f4c925fa --- /dev/null +++ b/04-faceting-and-filtering.md @@ -0,0 +1,171 @@ +--- +title: Faceting and filtering +teaching: 10 +exercises: 10 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Explain what Facets and Filters are +- Answer questions about the content of a data set using Facets +- Use facets and filters to work with a subset of data +- Correct data problems through a facet + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- What is a facet in OpenRefine? +- What is a filter in OpenRefine? +- How can I use filters and facets to explore data in OpenRefine? +- How can I correct common data issues in my data with OpenRefine? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Facets + +Facets are one of the most useful features of OpenRefine and can help in both getting an overview of the data and to improve the consistency of the data. + +A 'Facet' groups all the values that appear in a column, and then allows you to filter the data by these values and edit values across many records at the same time. + +One of the most commonly used facets is called a 'Text facet'. This groups all the text values in a column and lists each value with the number of records it appears in. The facet information always appears in the left hand panel in the OpenRefine interface. + +To create a Text Facet for a column, click on the drop down menu at the top of the publisher column and choose `Facet -> Text Facet`. The facet will then appear in the left hand panel. + +The facet consists of a list of values used in the data. You can filter the data displayed by clicking on one of these headings. + +You can include multiple values from the facet in a filter at one time by using the `Include` option which appears when you put your mouse over a value in the Facet. + +You can also `invert` the filter to show all records which do not match your selected values. This option appears at the top of the Facet panel when you select a value from the facet to apply as a filter. + +::::::::::::::::::::::::::::::::::::::: checklist + +## Let's create a text facet + +1. Click on the drop down menu at the top of the publisher column and choose `Facet > Text Facet`. The facet will then appear in the left hand panel +2. To select a single value, click the text of the relevant line in the facet +3. To select multiple values click the `Include` option on the appropriate line in the facet (which only appears when you mouse over the line) +4. You can 'invert' your selections to `exclude` +5. Include a value and then look at top to invert inclusion. + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +::::::::::::::::::::::::::::::::::::::: challenge + +## Which licences are used for articles in this file? + +Use a `text facet` for the `licence` column and answer these questions: + +1. What is the most common Licence in the file? +2. How many articles in the file don't have a licence assigned? + +::::::::::::::: solution + +## Solution + +1. Create a facet for the 'Licence' column +2. Sort values by `count` +3. What is the most common Licence in the file? Answer: `CC BY` +4. How many articles in the file don't have a licence assigned? Answer: **6** + + + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Filters + +As well as using Facets to filter the data displayed in OpenRefine you can also apply 'Text Filters' which looks for a particular piece of text appearing in a column based on a unique text string, like a 'find' feature. Text filters are applied by clicking the drop down menu at the top of the column you want to apply the filter to and choosing 'Text filter'. + +As with Facets, the Filter options appear in the left hand panel in OpenRefine. As you type the text you want to use in the Filter in the Filter's text box, OpenRefine works to display only rows that contain that text in the relevant column. + +You can also use [regular expressions](https://librarycarpentry.org/lc-data-intro/01-regular-expressions.html) in the filter. + +## Working with filtered data + +It is very important to note that when you have filtered the data displayed in OpenRefine, any operations you carry out will apply only to the rows that match the filter - that is the data currently being displayed. To confirm you are working with the data you intended to select, check the number of matching records displayed above the data table. + +## Other types of Facet + +As well as 'Text facets' OpenRefine also supports a range of other types of facet. These include: + +- Numeric facets +- Timeline facets (for dates) +- Scatterplot facets +- Custom facets + +**Numeric and Timeline facets** display graphs instead of lists of values. The graph includes 'drag and drop' controls you can use to set a start and end range to filter the data displayed. + +**Scatterplot facets** are less commonly used. For further information on these see the tutorial at [https://web.archive.org/web/20190105063215/http://enipedia.tudelft.nl/wiki/OpenRefine\_Tutorial#Exploring\_the\_data\_with\_scatter\_plots](https://web.archive.org/web/20190105063215/http://enipedia.tudelft.nl/wiki/OpenRefine_Tutorial#Exploring_the_data_with_scatter_plots). + +**Custom facets** are a range of different types of facets. Some of the default custom facets are: + +- Word facet - this breaks down text into words and counts the number of records each word appears in +- Duplicates facet - this results in a binary facet of 'true' or 'false'. Rows appear in the 'true' facet if the value in the selected column is an exact match for a value in the same column in another row +- Text length facet - creates a numeric facet based on the length (number of characters) of the text in each row for the selected column. This can be useful for spotting incorrect or unusual data in a field where specific lengths are expected (e.g. if the values are expected to be years, any row with a text length more than 4 for that column is likely to be incorrect) +- Facet by blank - a binary facet of 'true' or 'false'. Rows appear in the 'true' facet if they have no data present in that column. This is useful when looking for rows missing key data. + +Facets are intended to group together common values and OpenRefine limits the number of values allowed in a single facet to ensure the software does not perform slowly or run out of memory. If you create a facet where there are many unique values (for example, a facet on a 'book title' column in a data set that has one row per book) the facet created will be very large and may either slow down the application, or OpenRefine will not create the facet. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Find all publications without a DOI + +- Use the `Facet by blank` function to find all publications in this data set without a DOI + +::::::::::::::: solution + +## Solution + +1. On the `DOI` column drop down and select `Facets > Customized facets > Facet by blank` +2. `True` means that it is blank, so you can: + - Select `include` on True in the facet to filter the list of publications to only those that don't have a DOI + + + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Amending data through facets + +If you create a text facet you can edit the values in the facet to change the value for several records at the same time. To do this, mouse-over the value you want to edit and click the 'edit' option that appears. + +This approach is useful in relatively small facets where you might have small variations through punctuation or typing errors etc. For example, a column that should contain only terms from a small restricted list such as days of the week or months of the year. + +The list of values in the facet will update as you make edits. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Correct the Language values via a facet + +- Create a `Text facet` on the `language` column and correct the variation in the `EN` and `English` values. + +::::::::::::::: solution + +## Solution + +1. Create a Text facet on the Language column +2. Notice that there is both `EN` and `English` +3. Put the mouse over the `English` value +4. Click `Edit` +5. Type `EN` and click `Apply` +6. See how the Language facet updates + + + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- You can use facets and filters to explore your data +- You can use facets and filters work with a subset of data in OpenRefine +- You can correct common data issues from a Facet + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/05-clustering.md b/05-clustering.md new file mode 100644 index 00000000..feb9ce91 --- /dev/null +++ b/05-clustering.md @@ -0,0 +1,56 @@ +--- +title: Clustering +teaching: 10 +exercises: 10 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Explain what clustering is in OpenRefine +- Use clustering to identify and replace varying forms of the same data with a single consistent value + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- What is Clustering in OpenRefine and when would you use it? +- How does clustering work in OpenRefine? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Clustering + +The Cluster function groups together similar, but inconsistent values in a given column and lets you merge these inconsistent values into a single value you choose. + +This is very effective where you have data with minor variations in data values, e.g. names of people, organisations, places, classification terms. + +To use the 'Cluster' function, click on the `Edit Cells` menu option in the relevant column and choose `Cluster and edit...` + +The 'Clusters' are created automatically according to an algorithm. OpenRefine supports a number of different clustering algorithms - some experimentation may be required to see which clustering algorithm works best with any particular set of data, and you may find that using different algorithms highlights different clusters. + +For more information on the methods used to create Clusters, see [OpenRefine's Technical Reference on Clustering in Depth](https://openrefine.org/docs/technical-reference/clustering-in-depth). + +For each cluster, you have the option of 'merging' the values together - that is, replace the various inconsistent values with a single consistent value. By default, OpenRefine uses the most common value in the cluster as the new value, but you can select another value by clicking the value itself, or you can type the desired value into the 'New Cell Value' box. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Use Clustering to clean up author data + +1. Split out the author names into individual cells using `Edit cells -> Split multi-valued cells`, using the pipe ( | ) character as the separator +2. Choose `Edit cells -> Cluster and edit` from the 'author' column. +3. Using the `key collision` method with the `fingerprint` Keying Function, work through the clusters of values, merging them to a single value where appropriate +4. Try changing the clustering method being used - which ones work well? + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- Clustering is a way of finding variant forms of the same piece of data within a dataset (e.g. different spellings of a name) +- There are a number of different Clustering algorithms that work in different ways and will produce different results +- The best clustering algorithm to use will depend on the data +- Using clustering you can replace varying forms of the same data with a single consistent value + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/06-working-with-columns.md b/06-working-with-columns.md new file mode 100644 index 00000000..ac6ff17d --- /dev/null +++ b/06-working-with-columns.md @@ -0,0 +1,59 @@ +--- +title: Working with columns and sorting +teaching: 5 +exercises: 5 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Explain how to reorder, rename and remove columns +- Explain how to sort data in columns + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- How do I move, rename or remove columns in OpenRefine? +- How do I sort data in OpenRefine? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Reordering columns + +You can reorder the columns by clicking the drop-down menu at the top of the first column (labelled 'All'), and choosing 'Edit columns' > 'Re-order / remove columns …'. + +You can then drag and drop column names to reorder the columns, or remove columns completely if they are not required. + +## Renaming columns + +You can rename a column by opening the drop-down menu at the top of the column that you would like to rename, and choosing 'Edit column' > 'Rename this column'. You will then be prompted to enter the new column name. + +## Sorting data + +You can sort data in OpenRefine by clicking on the drop-down menu for the column you want to sort on, and choosing `Sort`. + +Once applied, locate the new "Sort" button at the top of the grid. + +![New Sort menu appears above grid after first sort command](fig/sort-menu-highlight.png){alt="Note the addition of a menu called Sort which appears after your first sort command. It follows the number of rows displayed."} + +Unlike in Excel, 'Sorts' in OpenRefine are temporary - that is, if you remove the `Sort`, the data will go back to its original 'unordered' state. The 'Sort' drop-down menu lets you amend the existing sort (e.g., reverse the sort order), remove existing sorts, and/or make sorts permanent. To make a sort permanent, choose Reorder Rows Permanently from the Sort drop-down menu. + +You can sort on multiple columns at the same time by adding another sorted column (in the same way). + +:::::::::::::::::::::::::::::::::::::::: instructor + +## Sorting and Reorder Rows Permanently + +Do not rush these last two sentences. Repeat them slowly after a pause and allow learners to explore how sorting works for a moment. + +Although the "Undo/Redo" tab is not introduced until episode 9, it may be worth noting that applying a sort does not count as a change to the data because removing the sort will restore the data to its original order. However, once you select "Reorder Rows Permanently" this does count as a data change and adds an entry to the Undo/Redo history. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- You can reorder, rename and remove columns in OpenRefine +- Sorting in OpenRefine always sorts all rows +- The original order of rows in OpenRefine is maintained during a sort until you use the option to Reorder Rows Permanently from the Sort drop-down menu + +:::::::::::::::::::::::::::::::::::::::::::::::::: diff --git a/07-introduction-to-transformations.md b/07-introduction-to-transformations.md new file mode 100644 index 00000000..d5292080 --- /dev/null +++ b/07-introduction-to-transformations.md @@ -0,0 +1,67 @@ +--- +title: Introduction to Transformations +teaching: 5 +exercises: 5 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Describe common transformations +- Explain GREL, the General Refine Expression Language + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- How do I use transformations to programmatically edit my data? +- What are the kind of transformations Open Refine supports? +- What is GREL? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Introducing Transformations + +Through facets, filters and clusters OpenRefine offers relatively straightforward ways of getting an overview of your data, and making changes where you want to standardise terms used to a common set of values. + +However, sometimes there will be changes you want to make to the data that cannot be achieved in this way. Such types of changes include: + +- Splitting data that is in a single column into multiple columns (e.g. splitting an address into multiple parts) +- Standardising the format of data in a column without changing the values (e.g. removing punctuation or standardising a date format) +- Extracting a particular type of data from a longer text string (e.g. finding ISBNs in a bibliographic citation) + +To support this type of activity OpenRefine supports 'Transformations' which are ways of manipulating data in columns. Transformations are normally written in a special language called 'GREL' (General Refine Expression Language). To some extent GREL expressions are similar to Excel Formula, although they tend to focus on text manipulations rather than numeric functions. + +Full documentation for the GREL is available at [https://docs.openrefine.org/manual/grelfunctions](https://docs.openrefine.org/manual/grelfunctions). This tutorial covers only a small subset of the commands available. + +### Common transformations + +Some transformations are used regularly and are accessible directly through menu options, without having to type them directly. + +Examples of some of these common transformations are given in the table below, with their 'GREL' equivalents. We'll see how to use the GREL version later in this lesson. + +| Common Transformation | Action | GREL expression | +| ------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | +| Trim leading and trailing whitespace | Removes any 'whitespace' characters (e.g. spaces, tabs) from the start and end of the current value | `value.trim()` | +| To titlecase | Converts the current value to titlecase (i.e. each word starts with an uppercase character and all other characters are converted to lowercase) | `value.toTitlecase()` | +| To uppercase | Converts the current value to uppercase | `value.toUppercase()` | +| To lowercase | Converts the current value to lowercase | `value.toLowercase()` | + +::::::::::::::::::::::::::::::::::::::: checklist + +## Correct Publisher data + +1. Create a text facet on the Publisher column +2. Note that in the values there are two that look almost identical - why do these two values appear separately rather than as a single value? +3. On the publisher column use the dropdown menu to select `Edit cells->Common transforms->Collapse consecutive whitespace` +4. Look at the publisher facet now - has it changed? (if it hasn't changed try clicking the `Refresh` option to make sure it updates) + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- Common transformations are available through the Menu option + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/08-writing-transformations.md b/08-writing-transformations.md new file mode 100644 index 00000000..10713010 --- /dev/null +++ b/08-writing-transformations.md @@ -0,0 +1,66 @@ +--- +title: Writing Transformations +teaching: 5 +exercises: 10 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Explain how to write one's own transformations using GREL + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- Where do I write GREL expressions in the OpenRefine interface? +- How do I write a valid GREL expression? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Writing transformations + +To start writing transformations, select the column on which you wish to perform a transformation and choose `Edit cells->Transform…`. In the screen that displays you have a place to write a transformation (the 'Expression' box) and then the ability to Preview the effect the transformation would have on 10 rows of your data. + +The transformation you type into the 'Expression' box has to be a valid GREL expression. The default expression is the word `value` by itself - which means the value that is currently in the column - that is: make no change. + +GREL functions are written by giving a value of some kind (a text string, a date, a number etc.) to a GREL function. Some GREL functions take additional parameters or options which control how the function works. GREL supports two types of syntax: + +- `value.function(options)` +- `function(value, options)` + +Either is valid, and which is used is completely down to personal preference. In these notes the first syntax is used. + +Next to the 'Preview' option are options to view: + +- 'History' - a list of transformations you've previously used with the option to reuse them immediately or to 'star' them for easy access +- 'Starred' - a list of transformations you've 'starred' via the 'History' view +- 'Help' - a list of all the GREL functions and brief information on how to use them + +::::::::::::::::::::::::::::::::::::::: checklist + +## Put titles into Title Case + +Use Facets and the GREL expression `value.toTitlecase()` to put the titles in Title Case + +1. Facet by publisher +2. Select "Akshantala Enterprises" and "Society of Pharmaceutical Technocrats" +3. To select multiple values in the facet use the `include` link that appears to the right of the facet +4. See that the Titles for these are all in uppercase +5. Click the dropdown menu on the Title column +6. Choose `Edit cells->Transform...` +7. In the Expression box type `value.toTitlecase()` +8. In the Preview pane under value.toTitlecase() you can see what the effect of running this will be +9. Click `OK` +10. Find examples of titles that are still not correct, or have been incorrectly cased (abbreviations, species names, etc.) + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- You can alter data in OpenRefine based on specific instructions +- You can preview the results of your GREL expression + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/09-undo-and-redo.md b/09-undo-and-redo.md new file mode 100644 index 00000000..3e6026de --- /dev/null +++ b/09-undo-and-redo.md @@ -0,0 +1,44 @@ +--- +title: Transformations - Undo and Redo +teaching: 5 +exercises: 0 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Explain how to use Undo and Redo to retrace ones' steps + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- How do the Undo and Redo features work? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Undo and Redo + +OpenRefine lets you undo, and redo, any number of steps you have taken in cleaning the data. This means you can always try out transformations and 'undo' if you need to. The way OpenRefine records the steps you have taken even allows you to take the steps you've carried out on one data set, and apply it to another data set by a copy and paste operation. + +The `Undo` and `Redo` options are accessed via the lefthand panel. + +The Undo/Redo panel lists all the steps you've taken so far. To undo steps, click on the last step you want to preserve in the list and this will automatically undo all the changes made since that step. + +The remaining steps will continue to show in the list but greyed out, and you can reapply them by clicking on the last step you want to apply. + +However, if you 'undo' a set of steps and then start doing new transformations, the greyed out steps will disappear and you will no longer have the option to 'redo' these steps. + +If you wish to save a set of steps to be re-applied later, for instance, to a different project, you can click the `Extract` button. This gives you the option to select steps that you want to save, and extract the code for those steps in a format called ‘JSON'. You can copy the extracted JSON and save it as a plain text file (e.g. in Notepad). If you are using OpenRefine version 3.6.0 or later, you can also click the `Export` button in the "Extract operation history" window to open a save dialog and directly save the JSON instead of first copying it to a text file. + +To apply a set of steps you have copied or saved in this 'JSON' format use the `Apply` button and paste in the JSON. In this way you can share transformations between projects and with other people. + +Undo/Redo data is stored with the Project and is saved automatically as you work, so next time you open the project, you can access your full history of steps you have carried out and undo/redo in exactly the same way. + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- You can use Undo and Redo to retrace ones' steps +- You can save and apply a set of steps to a new set of data using the 'Extract' and 'Apply' features + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/10-data-transformation.md b/10-data-transformation.md new file mode 100755 index 00000000..e728f702 --- /dev/null +++ b/10-data-transformation.md @@ -0,0 +1,137 @@ +--- +title: Transforming Strings, Numbers, Dates and Booleans +teaching: 5 +exercises: 15 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Name and describe 4 types of data - String, Number, Date and Boolean +- Transform dates for further analysis +- Use Boolean to identify information recorded in a different format +- Create and run transformations based on Boolean Values + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- How do I use transformations to programmatically edit my data? +- How do I transform the various data types? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Data types + +Understanding data types can help you write a wider variety of transformations using GREL. + +::::::::::::::::::::::::::::::::::::::::: callout + +## Data types in OpenRefine + +Every piece of data in OpenRefine has a 'type'. The most common 'type' is a 'string' - that is a piece of text. However there are other data types available and transformations let you convert data from one type to another where appropriate. The data types supported are: + +- String +- Number +- Date +- Boolean +- Array (covered in the next lesson) + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +### Dates and Numbers + +So far we've been looking only at 'String' type data. Much of the time it is possible to treat numbers and dates as strings. For example in the Date column we have the date of publication represented as a String. However, some operations and transformations only work on 'number' or 'date' typed data, such as sorting values in numeric or date order. To carry out these functions we need to convert the values to a date or number first. + +::::::::::::::::::::::::::::::::::::::: checklist + +## Reformat the Date + +1. Make sure you remove all Facets and Filters +2. On the Date column use the dropdown menu to select `Edit cells -> Transform` +3. In the 'Expression' box type the GREL expression `value.toDate("dd/MM/yyyy")` and press OK. +4. Note how the values are now displayed in green and follow a standard convention for their display format (ISO 8601) - this indicates they are now stored as date data types in OpenRefine. We can now carry out functions that are specific to Dates +5. On the Date column dropdown select `Edit column->Add column based on this column`. Using this function you can create a new column, while preserving the old column +6. In the 'New column name' type "Formatted-Date" +7. In the 'Expression' box type the GREL expression `value.toString("dd MMMM yyyy")` + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +::::::::::::::::::::::::::::::::::::::::: callout + +## Specifying Date Formatting in GREL Expressions + +GREL allow us to specify date and time using `pattern strings`, which are letters that have some specific representation in the function call. + +Pattern strings are case sensitive, therefore capital and lower case letters have a different meaning and usage. + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +The table below shows letters related to date and time representation. + +| Letter | Date or Time Representation | +| --------------------------- | :-------------------------: | +| `y` | Year | +| `M` | Month in year | +| `D` | Day in year | +| `d` | Day in month | +| `F` | Day of week in month | +| `E` | Day name in week | +| `u` | Day number of week | +| `a` | AM/PM marker | + +The table below presents examples on how to use the patterns as input and the obtained output. + +| Date and Time Pattern Input | Output | +| --------------------------- | :-------------------------: | +| `"yyyy-MM-dd"` | 2022-06-05 | +| `"dd MMM yyyy"` | 05 Jun 2022 | +| `"EEE, MMM d, ''yy"` | Mon, Jun 5, '22 | +| `"yyyy.MMMM.dd hh:mm a"` | 2022\.June.05 12:10 PM | +| `"EEE, d MMM yyyy HH:mm:ss"` | Mon, 5 Jun 2022 12:10:10 | + +For a more detailed explanation checkout [OpenRefine Documentation](https://docs.openrefine.org/manual/grelfunctions#date-functions). + +### Booleans + +A 'Boolean' is a binary value that can either be 'true' or 'false'. Boolean values can be used directly in OpenRefine cells, but are more often used in transformations as part of a GREL expression. For example the GREL expression + +``` +value.contains("test") +``` + +generates a boolean value of either 'true' or 'false' depending on whether the current value in the cell contains the text 'test' anywhere. + +Such tests can be combined with other GREL expressions to create more complex transformations. For example, to carry out a further transformation only if a test is successful. The GREL transformation `if(value.contains("test"),"Test data",value)` replaces a cell value with the words "Test data" only *if* the value in the cell contains the string "test" anywhere. + +::::::::::::::::::::::::::::::::::::::: checklist + +## Find Reversed Author Names + +In this exercise we are going to use the Boolean data type. +If you look at the Authors column, you can see that most of the author names are written with the personal name first. However, a few have been reversed to put the family name first. + +We can do a crude test for reversed author names by looking for those that contain a comma: + +1. Make sure you have already split the author names into individual cells using `Edit cells->Split multi-valued cells` (you should have done this in exercise 5) +2. On the Authors column, use the dropdown menu and select `Facet->Custom text facet...` +3. The Custom text facet function allows you to write GREL functions to create a facet +4. In the Expression box type `value.contains(",")` + +- Click `OK` +- Since the 'contains' function outputs a Boolean value, you should see a facet that contains 'false' and 'true'. These represent the outcome of the expression, i.e. true = values containing a comma; false = values not containing a comma +- In order to change the names to personal name first order, see the Arrays lesson. + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- You can alter data in OpenRefine based on specific instructions +- You can expand the data editing functions that are built-in into OpenRefine by building your own + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/11-using-arrays-transformations.md b/11-using-arrays-transformations.md new file mode 100644 index 00000000..746eb3a4 --- /dev/null +++ b/11-using-arrays-transformations.md @@ -0,0 +1,148 @@ +--- +title: Transformations - Handling Arrays +teaching: 5 +exercises: 15 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Understand the purpose of Arrays in OpenRefine +- Use arrays as part of transformations in GREL + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- How do I use Arrays in data transformation? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Preview + +The following example is chosen to demonstrate how to go from a list with duplicated values to a list with each value just once by using an array in a transformation. + +:::::::::::::::::::::::::::::::::::::::: instructor + +## Different meanings of 'transformation' + +Ask the students what transformation means to them currently. Many may only know it from Excel to convert columns into rows or vice versa. Discuss how in OpenRefine, transformation is specifically the working window--these values are neither stored nor displayed in the cells or output. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +It does this using a function called uniques() which can be used to remove duplicates from an array. In this example we start with a list of subject words: + +`crystal structure|clozapinium|crystal structure|molecular configuration|hydrogen bonding|supramolecular assembly|Chemistry|QD1-999` + +Examining this by eye we can see it contains "crystal structure" twice. If we assume that each cell in the subject column might have duplicates in it, and in each case the subject word/phrase that is duplicated could be different, then it's not practical to "fix" this problem (remove the duplicates from each) by find and replace. However, we can do it using an array. The lesson's goal is: an array as something you can manipulate. + +To remove the repetition we show how to do a GREL transformation like: + +``` +value.split("|").uniques().join("|") +``` + +In total this transformation does three steps: + +- `split("|")` creates an array -> `["crystal structure", "clozapinium", "crystal structure", "molecular configuration", "hydrogen bonding", "supramolecular assembly", "Chemistry", "QD1-999"]` +- `uniques()` takes the array created, and from it generates an array with any duplicates removed (so each value in the resulting array is unique) so the result is -> `["crystal structure", "clozapinium", "molecular configuration", "hydrogen bonding", "supramolecular assembly", "Chemistry", "QD1-999"]` +- `join("|")` turns the array created by the uniques() command back into a string of pipe separated values which can be stored in a cell -> `crystal structure|clozapinium|molecular configuration|hydrogen bonding|supramolecular assembly|Chemistry|QD1-999` + +Let us now move from a list with duplicated values to a list with each value just once using an array in transformation. + +## Arrays + +An 'Array' is a data type (as mentioned in the previous lesson) which can contain a list of values. In OpenRefine an array is represented by the use of square brackets containing a list of values separated by commas. + +For example: + +- an array containing a list of strings (in this case subject keywords or phrases) could look like: `["crystal structure", "clozapinium", "crystal structure", "molecular configuration", "hydrogen bonding", "supramolecular assembly", "Chemistry", "QD1-999"]` +- an array containing a list of numbers could look like: `[1, 2, 3, 4]` + +Arrays can be sorted, de-duplicated, and manipulated in other ways in GREL expressions, but cannot be stored directly in an OpenRefine cell. Arrays in OpenRefine are usually the result of a transformation written with GREL. For example the `split` function takes a string, and changes it into an array based on a 'separator'. For example if a cell has the value: + +`"crystal structure|clozapinium|crystal structure|molecular configuration|hydrogen bonding|supramolecular assembly|Chemistry|QD1-999"` + +This can be transformed into an array using the `split` function specifying the pipe character ( | ) as the separating character. Recall the cautionary note about separator choice from [Working with Data](03-working-with-data.md#choosing-a-good-separator). + +``` +value.split("|") +``` + +This would create the array containing a list of subject headings, separated by a pipe character | (as in the first example above). In the transformation preview the array will display as a list of comma separated values in double quotes, with the whole array surrounded by square brackets. + +This subject string can be found for the title "The crystal structures of three clozapinium salts: different molecular configurations, and supramolecular assembly in one, two and three dimensions" in the original project. + +This can be combined with array operations like `uniques`. For example, assuming the cell contains the same value as above, then the function + +``` +value.split("|").uniques() +``` + +would result in the following array: +["crystal structure", "clozapinium", "molecular configuration", "hydrogen bonding", "supramolecular assembly", "Chemistry", "QD1-999"] + +Compared to the first example, now the second 'crystal structure' has been removed. + +You can extract a specific item from the array using the square bracket notation and number for position in sequence: + +``` +value.split("|")[0] +``` + +would result in the string: +"crystal structure" + +You can also join arrays together to make a 'String'. The GREL expression would look like + +``` +value.split("|").uniques().join("|") +``` + +Taking the same example again, this would result in a string with the subjects in alphabetical order, listed with commas between each subject. + +::::::::::::::::::::::::::::::::::::::: instructor + +## Recap on best practice for separators + +Recall previous discussion of dangers of changing separators and ensuring you avoid using a separator character that is already used in the text. A possible question to pose to learners could be: Which subject would be broken if a hyphen were used as a separator? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +::::::::::::::::::::::::::::::::::::::: checklist + +## Reverse author names + +You may already have done the boolean exercise and have a facet containing the names in personal name first order. In this case, select the 'true' facet and start with the step **"9. On the `Authors` column use..."** below. + +In this exercise we are going to use both the Boolean and Array data types. +If you look at the Authors column, you can see that most of the author names are written in personal name first order. However, a few have been reversed to put the family name first. + +We can do a crude test for reversed author names by looking for those that contain a comma: + +1. Make sure you have already split the author names into individual cells using `Edit cells->Split multi-valued cells` (you should have done this in the Clustering lesson) +2. On the Authors column, use the dropdown menu and select `Facet->Custom text facet...` +3. The `Custom text` facet function allows you to write GREL functions to create a facet +4. In the Expression box type `value.contains(",")` +5. Click `OK` +6. Since the `contains` function outputs a Boolean value, you should see a facet that contains 'false' and 'true'. These represent the outcome of the expression, i.e. true = values containing a comma; false = values not containing a comma +7. In this facet select 'true' to narrow down to the author names that contain a comma +8. Now we have narrowed down to the lines with a comma in a name, we can use the GREL `split` function. This is different to the `Split multi-valued cells` operation we have previously used as it allows us to manipulate the content of a cell, rather than create new cells. +9. On the `Authors` column use the dropdown menu and select `Edit cells->Transform ` +10. In the Expression box type `value.split(", ")` (make sure to include a space after the comma inside the split expression to avoid extra spaces in your author name later). +11. See how this creates an array with two members in each row in the Preview column +12. To get the author name in personal name first order you can reverse the array and join it back together with a space to create the string you need: +13. In the Expression box, add to the existing expression until it reads `value.split(", ").reverse().join(" ")` +14. In the Preview view you should be able see this has reversed the array, and joined it back into a string +15. Click `OK` + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- Arrays cannot appear directly in an OpenRefine cell +- Arrays can be used in many ways using GREL expressions + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/12-export-transformation.md b/12-export-transformation.md new file mode 100644 index 00000000..72440c8c --- /dev/null +++ b/12-export-transformation.md @@ -0,0 +1,41 @@ +--- +title: Exporting data +teaching: 5 +exercises: 0 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Explain how to export data in different formats from OpenRefine + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- How do I export data from OpenRefine? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Note about OpenRefine + +All the edits you make to your data using OpenRefine are being stored inside the OpenRefine program and are not being saved to your original file. That's why OpenRefine uses the terms "import" and "export" to talk about moving your data in and out of the OpenRefine interface. Therefore, in order to save your work into a file format you can view in other programs or share with others, you need to export your data. + +## Exporting data + +Once you have finished working with a data set in OpenRefine you may wish to export it. The export options are accessed through the `Export` button at the top right of the OpenRefine interface. + +Export formats support include HTML, Excel and comma- and tab-separated value (csv and tsv). You can also write a custom export, selecting to export specific fields, adding a header or footer and specifying the exact format. + +## Exporting a portion of your data + +You can also export a portion of your data by using facets or filters to select a portion of your data. With only those rows selected, you can select the export format and your resulting file will only include the select rows. + +*Note well:* It's easy to export only a portion of your data by accident, so make sure you look at the top left to ensure all rows are being displayed when you want to do a full export. + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- You can export your data in a variety of formats + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/13-looking-up-data.md b/13-looking-up-data.md new file mode 100644 index 00000000..66464afa --- /dev/null +++ b/13-looking-up-data.md @@ -0,0 +1,198 @@ +--- +title: Looking Up Data +teaching: 20 +exercises: 10 +--- + +::::::::::::::::::::::::::::::::::::::: objectives + +- Use URLs to fetch data from the web based on columns in an OpenRefine project +- Add columns to parse JSON data returned by web services +- Understand how Reconciliation services are used to validate data +- Add functionality using OpenRefine extensions + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- How do I fetch data from an Application Programming Interface (API) to be used in OpenRefine? +- How do I reconcile my data by comparing it to authoritative datasets? +- How do I install extensions for OpenRefine? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Looking up data from a URL + +OpenRefine can retrieve data from URLs. This can be used in various ways, including looking up additional information from a remote service, based on information in your OpenRefine data. + +As an example, you can look up names against the Virtual International Authority File (VIAF), and retrieve additional information such as dates of birth/death and identifiers. + +Typically this is a two step process, firstly a step to retrieve data from a remote service, and secondly to extract the relevant information from the data you have retrieved. + +To retrieve data from an external source, use the drop down menu at any column heading and select ‘Edit column->Add column by fetching URLs'. + +This will prompt you for a GREL expression to create a URL. Usually this would be a URL that uses existing values in your data to build a query. When the query runs OpenRefine will request each URL (for each line) and retrieve whatever data is returned (this may often be structured data, but could be HTML). + +The data retrieved will be stored in a cell in the new column that has been added to the project. You can then use OpenRefine transformations to extract relevant information from the data that has been retrieved. Two specific OpenRefine functions used for this are: + +- parseHtml() +- parseJson() + +The 'parseHtml()' function can also be used to extract data from XML. + +The next exercise demonstrates this two stage process in full. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Retrieving journal details from CrossRef via ISSN + +Because retrieving data from external URLs takes time, this exercise targets a single line in the data. In reality you would want to run this over many rows (and probably go and do something else while it ran). + +- Select a single row from the data set which contains an ISSN by: + - Clicking the star icon for the relevant row in the first column + - Facet by Star + - Choose the single row +- In the ISSN column use the dropdown menu to choose 'Edit column->Add column by fetching URLs' +- Give the column a name e.g. "Journal_details" +- In the expression box you need to write some GREL where the output of the expression is a URL which can be used to retrieve data (the format of the data could be HTML, XML, JSON, or some other text format) + +In this case we are going to use the CrossRef API: [https://api.crossref.org/](https://api.crossref.org/). Read more about the CrossRef service: [https://crossref.org](https://crossref.org). Note that API providers may impose rate limits or have other requirements for using their data, so it's important to check the site's documentation. To comply with API rate limits, use the Throttle Delay setting to specify the number of milliseconds between URL requests. CrossRef, for instance, [asks users](https://www.crossref.org/documentation/retrieve-metadata/rest-api/tips-for-using-the-crossref-rest-api/#pick-the-right-service-level) to "specify a User-Agent header that properly identifies your script or tool and that provides a means of contacting you via email using 'mailto:'." User-agent headers provide administrators with user information that facilitates better administration and moderation of the API, and it is generally good etiquette to include a header with any API request. + +To edit your User-Agent header: + +- Click 'Show' (next to 'HTTP headers to be used when fetching URLs'). Note that OpenRefine has already populated the 'User-Agent' field with information about the version of OpenRefine you are using; it should look similar to ` OpenRefine 3... [...]` (the information following `OpenRefine` will depend on the version of OpenRefine you are using). +- At the end of the existing text, add `; mailto:address@library.edu`, using your own email address. The full User-Agent field should now be similar to ` OpenRefine 3... [...]; mailto:address@library.edu` but reflect your version information and email address. + +The syntax for requesting journal information from CrossRef is `https://api.crossref.org/journals/{ISSN}` where {ISSN} is replaced with the ISSN of the journal + +- In the expression box type the GREL `"https://api.crossref.org/journals/"+value` + +At this point, your screen should be similar to this: +![](fig/openrefine_add_columns_by_url.png){alt='Add column by fetching URLs screen capture'} + +- Click 'OK' + +You should see a message at the top on the OpenRefine screen indicating it is fetching some data, with progress showing the percentage of the proportion of rows of data successfully being fetched. Wait for this to complete. Fetching data for a single row should take only ten seconds or so, but fetching data for all rows will take longer. You can speed this up by modifying the "Throttle Delay" setting in the 'Add column by fetching URLs' dialog which controls the delay between each URL request made by OpenRefine. This is defaulted to a rather large 5000 milliseconds (5 seconds). + +At this point you should have a new cell containing a long text string in a format called 'JSON' (this stands for JavaScript Object Notation, although very rarely spelt out in full). + +OpenRefine has a function for extracting data from JSON (sometimes referred to as 'parsing' the JSON). The 'parseJson' function is explained in more detail at [https://docs.openrefine.org/manual/grelfunctions/#format-based-functions-json-html-xml](https://docs.openrefine.org/manual/grelfunctions/#format-based-functions-json-html-xml). + +- In the new column you've just added use the dropdown menu to access 'Edit column->Add column based on this column' +- Add a name for the new column e.g. "Journal_title" +- In the Expression box type the GREL `value.parseJson().message.title` +- You should see in the Preview the Journal title displays + +The reason for using 'Add column based on this column' is that this allows you to retain the full JSON and extract further data from it if you need to. If you only wanted the title and did not need any other information from the JSON you could use 'Edit cells->Transform...' with the same GREL expression. + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Reconciliation services + +Reconciliation services allow you to lookup terms from your data in OpenRefine against external services, and use values from the external services in your data. The official User Manual provides [detailed information about the reconciliation feature](https://docs.openrefine.org/manual/reconciling). + +Reconciliation services can be more sophisticated and often quicker than using the method described above to retrieve data from a URL. However, to use the ‘Reconciliation' function in OpenRefine requires the external resource to support the necessary service for OpenRefine to work with, which means unless the service you wish to use supports such a service you cannot use the ‘Reconciliation' approach. + +There are a few services where you can find an OpenRefine Reconciliation option available. For example Wikidata has a reconciliation service at [https://wikidata.reconci.link/](https://wikidata.reconci.link/). + +In other cases people have built reconciliation applications for a specific service which you can download and run yourself. These vary in how they work, and what it takes to run them locally. For example there are multiple reconciliation applications for VIAF. Even for the same service (e.g. VIAF) different reconciliation applications (written by different people) can work in different ways and potentially give different results - so caveat emptor! + +One of the most common ways of using the reconciliation option in OpenRefine is with an extension (see below for more on extensions to OpenRefine) which can use linked data sources for reconciliation. The RDF extension by Stuart Kenny can be downloaded from [https://github.com/stkenny/grefine-rdf-extension/releases](https://github.com/stkenny/grefine-rdf-extension/releases). + +Other extensions are available to do reconciliation against local data such as csv files (see [http://okfnlabs.org/reconcile-csv/](https://okfnlabs.org/reconcile-csv/)) and maintained lists of values (see [http://okfnlabs.org/projects/nomenklatura/index.html](https://okfnlabs.org/projects/nomenklatura/index.html)). + +For more information on using Reconciliation services see [https://docs.openrefine.org/manual/reconciling](https://docs.openrefine.org/manual/reconciling). + +::::::::::::::::::::::::::::::::::::::: challenge + +## Reconcile Publisher names with VIAF IDs + +In this exercise you are going to use the VIAF Reconciliation service written by [Jeff Chiu](https://twitter.com/absolutelyjeff). Jeff offers two ways of using the reconciliation service - either via a public service he runs at [http://refine.codefork.com/](https://refine.codefork.com/), or by installing and running the service locally using the instructions at [https://github.com/codeforkjeff/conciliator](https://github.com/codeforkjeff/conciliator). + +If you are going to do a lot of reconciliation, please install and run your own local reconciliation service following the instructions at [https://github.com/codeforkjeff/conciliator](https://github.com/codeforkjeff/conciliator#running-conciliator-on-your-own-computer). + +Once you have chosen which service you are going to use: + +- In the Publisher column use the dropdown menu to choose 'Reconcile->Start Reconciling' +- If this is the first time you've used this particular reconciliation service, you'll need to add the details of the service now + - Click 'Add Standard Service...' and in the dialogue that appears enter: + - "[https://refine.codefork.com/reconcile/viaf](https://refine.codefork.com/reconcile/viaf)" for Jeff's public service + - "[http://localhost:8080/reconcile/viaf](https://localhost:8080/reconcile/viaf)" if you are running the service locally +- You should now see a heading in the list on the left hand side of the Reconciliation dialogue called "VIAF" +- Click on this to choose to use this reconciliation service +- In the middle box in the reconciliation dialogue you may get asked what type of 'entity' you want to reconcile to - that is, what type of thing are you looking for. The list will vary depending on what reconciliation service you are using. + - In this case choose "Corporate Name" (it seems like the VIAF Reconciliation Service is slightly intelligent about this and will only offer options that are relevant) +- In the box on the righthand side of the reconciliation dialogue you can choose if other columns are used to help the reconciliation service make a match - however it is sometimes hard to tell what use (if any) the reconciliation service makes of these additional columns +- At the bottom of the reconciliation dialogue there is the option to "Auto-match candidates with high confidence". This can be a time saver, but in this case you are going to uncheck it, so you can see the results before a match is made +- Now click 'Start Reconciling' + +Reconciliation is an operation that can take a little time if you have many values to look up. However, in this case there are only 6 publishers to check, so it should work quite quickly. + +Once the reconciliation has completed two Facets should be created automatically: + +- Publisher: Judgement +- Publisher: best candidate's score + +These are two of several specific reconciliation facets and actions that you can get from the 'Reconcile' menu (from the column drop down menu). + +- Close the 'Publisher: best candidate's score' facet, but leave the 'Publisher: Judgement' facet open + +If you look at the Publisher column, you should see some cells have found one or more matches - the potential matches are shown in a list in each cell. Next to each potential match there is a 'tick' and a 'double tick'. To accept a reconciliation match you can use the 'tick' options in cells. The 'tick' accepts the match for the single cell, the 'double tick' accepts the match for all identical cells. + +- Create a text facet on the Publisher column +- Choose 'International Union of Crystallography' + +In the Publisher column you should be able to see the various potential matches. Clicking on a match will take you to the VIAF page for that entity. + +- Click a 'double tick' in one of the Publisher column cells for the option "International Union of Crystallography" +- This will accept this as a match for all cells - you should see the other options all disappear +- Check the 'Publisher: Judgement' facet. This should now show that 858 items are 'matched' (if this does not update, try refreshing the facets) + +We could do these one by one, but if we are confident with the matches, there is an option to accept all: + +- Remove all filters/facets from the project so all rows display +- In the Publisher column use the dropdown menu to choose 'Reconcile->Actions->Match each cell to its best candidate' + +There are two things that reconciliation can do for you. Firstly it gets a standard form of the name or label for the entity. Secondly it gets an ID for the entity - in this case a VIAF id. This is hidden in the default view, but can be extracted: + +- In the Publisher column use the dropdown menu to choose 'Edit column->Add column based on this column...' +- Give the column the name 'VIAF-ID' +- In the GREL expression box type `cell.recon.match.id` +- This will create a new column that contains the VIAF ID for the matched entity + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Using the ‘cross' function to lookup data in other OpenRefine projects + +As well as looking up data in external systems using the methods described above, it is also possible to look up data in other OpenRefine projects on the same computer. This is done using the ‘cross' function. + +The ‘cross' function takes a value from the OpenRefine project you are working on, and looks for that value in a column in another OpenRefine project. If it finds one or more matching rows in the second OpenRefine project, it returns an array containing the rows that it has matched. + +As it returns the whole row for each match, you can use a transformation to extract the values from any of the columns in the second project. + +You can use this function to compare the contents of two OpenRefine projects, or to use data between the two projects. + +The VIB-Bits extension adds a number of very useful functions to OpenRefine. One of them is "Add column(s) from other projects...", which provides a dialog window to help you work with the `cross` function with less typing. + +::::::::::::::::::::::::::::::::::::::::: callout + +## Extensions + +The functionality in OpenRefine can be enhanced by ‘extensions' which can be downloaded and installed to add functionality to your OpenRefine installation. + +A list of Extensions (not necessarily complete) is given on the OpenRefine downloads page at [http://openrefine.org/download.html](https://openrefine.org/download.html). + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- OpenRefine can look up custom URLs to fetch data based on what's in an OpenRefine project +- Such API calls can be custom built, or one can use existing Reconciliation services to enrich data +- OpenRefine can be further enhanced by installing extensions + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..f19b8049 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,13 @@ +--- +title: "Contributor Code of Conduct" +--- + +As contributors and maintainers of this project, +we pledge to follow the [The Carpentries Code of Conduct][coc]. + +Instances of abusive, harassing, or otherwise unacceptable behavior +may be reported by following our [reporting guidelines][coc-reporting]. + + +[coc-reporting]: https://docs.carpentries.org/topic_folders/policies/incident-reporting.html +[coc]: https://docs.carpentries.org/topic_folders/policies/code-of-conduct.html diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 00000000..7632871f --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,79 @@ +--- +title: "Licenses" +--- + +## Instructional Material + +All Carpentries (Software Carpentry, Data Carpentry, and Library Carpentry) +instructional material is made available under the [Creative Commons +Attribution license][cc-by-human]. The following is a human-readable summary of +(and not a substitute for) the [full legal text of the CC BY 4.0 +license][cc-by-legal]. + +You are free: + +- to **Share**---copy and redistribute the material in any medium or format +- to **Adapt**---remix, transform, and build upon the material + +for any purpose, even commercially. + +The licensor cannot revoke these freedoms as long as you follow the license +terms. + +Under the following terms: + +- **Attribution**---You must give appropriate credit (mentioning that your work + is derived from work that is Copyright (c) The Carpentries and, where + practical, linking to ), provide a [link to the + license][cc-by-human], and indicate if changes were made. You may do so in + any reasonable manner, but not in any way that suggests the licensor endorses + you or your use. + +- **No additional restrictions**---You may not apply legal terms or + technological measures that legally restrict others from doing anything the + license permits. With the understanding that: + +Notices: + +* You do not have to comply with the license for elements of the material in + the public domain or where your use is permitted by an applicable exception + or limitation. +* No warranties are given. The license may not give you all of the permissions + necessary for your intended use. For example, other rights such as publicity, + privacy, or moral rights may limit how you use the material. + +## Software + +Except where otherwise noted, the example programs and other software provided +by The Carpentries are made available under the [OSI][osi]-approved [MIT +license][mit-license]. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +## Trademark + +"The Carpentries", "Software Carpentry", "Data Carpentry", and "Library +Carpentry" and their respective logos are registered trademarks of [Community +Initiatives][ci]. + +[cc-by-human]: https://creativecommons.org/licenses/by/4.0/ +[cc-by-legal]: https://creativecommons.org/licenses/by/4.0/legalcode +[mit-license]: https://opensource.org/licenses/mit-license.html +[ci]: https://communityin.org/ +[osi]: https://opensource.org diff --git a/config.yaml b/config.yaml new file mode 100644 index 00000000..6c5a0067 --- /dev/null +++ b/config.yaml @@ -0,0 +1,93 @@ +#------------------------------------------------------------ +# Values for this lesson. +#------------------------------------------------------------ + +# Which carpentry is this (swc, dc, lc, or cp)? +# swc: Software Carpentry +# dc: Data Carpentry +# lc: Library Carpentry +# cp: Carpentries (to use for instructor training for instance) +# incubator: The Carpentries Incubator +carpentry: 'lc' + +# Overall title for pages. +title: 'Library Carpentry: OpenRefine' + +# Date the lesson was created (YYYY-MM-DD, this is empty by default) +created: '2018-04-12' + +# Comma-separated list of keywords for the lesson +keywords: 'software, data, lesson, The Carpentries' + +# Life cycle stage of the lesson +# possible values: pre-alpha, alpha, beta, stable +life_cycle: 'stable' + +# License of the lesson materials (recommended CC-BY 4.0) +license: 'CC-BY 4.0' + +# Link to the source repository for this lesson +source: 'https://github.com/librarycarpentry/lc-open-refine' + +# Default branch of your lesson +branch: 'main' + +# Who to contact if there are any issues +contact: 'team@carpentries.org' + +# Navigation ------------------------------------------------ +# +# Use the following menu items to specify the order of +# individual pages in each dropdown section. Leave blank to +# include all pages in the folder. +# +# Example ------------- +# +# episodes: +# - introduction.md +# - first-steps.md +# +# learners: +# - setup.md +# +# instructors: +# - instructor-notes.md +# +# profiles: +# - one-learner.md +# - another-learner.md + +# Order of episodes in your lesson +episodes: +- 01-introduction.md +- 02-importing-data.md +- 03-working-with-data.md +- 04-faceting-and-filtering.md +- 05-clustering.md +- 06-working-with-columns.md +- 07-introduction-to-transformations.md +- 08-writing-transformations.md +- 09-undo-and-redo.md +- 10-data-transformation.md +- 11-using-arrays-transformations.md +- 12-export-transformation.md +- 13-looking-up-data.md + +# Information for Learners +learners: + +# Information for Instructors +instructors: + +# Learner Profiles +profiles: + +# Customisation --------------------------------------------- +# +# This space below is where custom yaml items (e.g. pinning +# sandpaper and varnish versions) should live + + +url: 'https://librarycarpentry.github.io/lc-open-refine' +analytics: carpentries +lang: en diff --git a/data/UCSD_Guardian.csv b/data/UCSD_Guardian.csv new file mode 100644 index 00000000..9b8d5321 --- /dev/null +++ b/data/UCSD_Guardian.csv @@ -0,0 +1,2916 @@ +Object Unique ID,Level,File name,File use,Type of Resource,Language,Title,Title,Subtitle,Translation,Variant,Variant,Variant,Variant,Variant,Variant,Variant,Variant,Variant,Variant,Variant,Variant,Variant,Variant,Variant,Variant,Begin date,Begin date,Date:creation,Date:creation,End date,End date,File name 2,File use 2,Identifier:filename,Identifier:filename,Note:local attribution,Note:note,Note:note,Note:note,Note:note,Note:publication,Note:publication,Note:series,Note:series,Subject:topic +http://library.ucsd.edu/ark:/20775/bb4813423q,Object,20775-bb4813423q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,2/10/1994,,10-Feb-94,,2/10/1994,,20775-bb4813423q-0-2.tgz,document-source,VOLUME81_ISSUE12_THURSDAYFEBRUARY10_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 81, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb8943155k,Object,20775-bb8943155k-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,5/7/1979,,7-May-79,,5/7/1979,,20775-bb8943155k-0-2.tgz,document-source,VOLUME37_ISSUE16_MONDAYMAY7_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb47792902,Object,20775-bb47792902-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/21/1987,,21-May-87,,5/21/1987,,20775-bb47792902-0-2.tgz,document-source,VOLUME58_ISSUE56_THURSDAYMAY21_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 56",, +http://library.ucsd.edu/ark:/20775/bb75779516,Object,20775-bb75779516-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/7/1987,,7-May-87,,5/7/1987,,20775-bb75779516-0-2.tgz,document-source,VOLUME58_ISSUE52_THURSDAYMAY7_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 52",, +http://library.ucsd.edu/ark:/20775/bb0479396b,Object,2014-01-16.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/16/2014,,16-Jan-14,,1/16/2014,,,,2014-01-16.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 24",,Newspaper +http://library.ucsd.edu/ark:/20775/bb23906782,Object,2014-03-10.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/10/2014,,10-Mar-14,,3/10/2014,,,,2014-03-10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 39",,Newspaper +http://library.ucsd.edu/ark:/20775/bb86701140,Object,20775-bb86701140-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,3/16/1977,,16-Mar-77,,3/16/1977,,20775-bb86701140-0-2.tgz,document-source,VOLUME30_ISSUE28_WEDNESDAYMARCH16_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 30, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb5837320f,Object,20775-bb5837320f-0-1.pdf,document-service,text,,The Guardian,,,,Triton Times,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,1/5/1981,,5-Jan-81,,1/5/1981,,20775-bb5837320f-0-2.tgz,document-source,VOLUME42_ISSUE1_MONDAYJANUARY5_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb2014764j,Object,20775-bb2014764j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,10/15/1990,,15-Oct-90,,10/15/1990,,20775-bb2014764j-0-2.tgz,document-source,VOLUME71_ISSUE9_MONDAYOCTOBER15_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 71, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb32093141,Object,20775-bb32093141-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/26/2000,,26-Oct-00,,10/26/2000,,20775-bb32093141-0-2.tgz,document-source,VOLUME101_ISSUE11_THURSDAYOCTOBER26_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 101, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb4984071q,Object,20775-bb4984071q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,3/11/1991,,11-Mar-91,,3/11/1991,,20775-bb4984071q-0-2.tgz,document-source,VOLUME72_ISSUE19_MONDAYMARCH11_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 72, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb23560659,Object,20775-bb23560659-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/9/1997,,9-Oct-97,,10/9/1997,,20775-bb23560659-0-2.tgz,document-source,VOLUME92_ISSUE5_THURSDAYOCTOBER9_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 92, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb6690569x,Object,20775-bb6690569x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,9/21/1981,,21-Sep-81,,9/21/1981,,20775-bb6690569x-0-2.tgz,document-source,VOLUME44_ISSUE2_MONDAYSEPTEMBER21_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 44, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb14686814,Object,20775-bb14686814-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,UCSD Guardian,The Guardian,Triton Times,,,,,,,,,,,,,3/2/1979,,2-Mar-79,,3/2/1979,,20775-bb14686814-0-2.tgz,document-source,VOLUME36_ISSUE23_FRIDAYMARCH2_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 36, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb7509692g,Object,20775-bb7509692g-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/17/1973,,17-Apr-73,,4/17/1973,,20775-bb7509692g-0-2.tgz,document-source,VOLUME19_ISSUE5_TUESDAYAPRIL17_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 19, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb8567844r,Object,20775-bb8567844r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/2/2009,,2-Mar-09,,3/2/2009,,,,03_02_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb3209313h,Object,20775-bb3209313h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,12/5/1985,,5-Dec-85,,12/5/1985,,20775-bb3209313h-0-2.tgz,document-source,VOLUME56_ISSUE20_THURSDAYDECEMBER5_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 56, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb20147652,Object,20775-bb20147652-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,3/15/1974,,15-Mar-74,,3/15/1974,,20775-bb20147652-0-2.tgz,document-source,VOLUME21_ISSUE20_MARCH15_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 21, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb57690636,Object,20775-bb57690636-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,3/7/1983,,7-Mar-83,,3/7/1983,,20775-bb57690636-0-2.tgz,document-source,VOLUME48_ISSUE19_MONDAYMARCH7_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb7577950p,Object,20775-bb7577950p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/25/1993,,25-Jan-93,,1/25/1993,,20775-bb7577950p-0-2.tgz,document-source,VOLUME78_ISSUE7_MONDAYJANUARY25_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 78, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb61786235,Object,20775-bb61786235-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,4/11/1975,,11-Apr-75,,4/11/1975,,20775-bb61786235-0-2.tgz,document-source,VOLUME25_ISSUE6_FRIDAYAPRIL11_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 25, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb31751777,Object,20775-bb31751777-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,3/13/1989,,13-Mar-89,,3/13/1989,,20775-bb31751777-0-2.tgz,document-source,VOLUME66_ISSUE20_MONDAYMARCH13_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 66, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb38236534,Object,20775-bb38236534-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/24/1986,,24-Feb-86,,2/24/1986,,20775-bb38236534-0-2.tgz,document-source,VOLUME57_ISSUE15_MONDAYFEBRUARY24_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 57, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb89431563,Object,20775-bb89431563-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/26/1992,,26-Oct-92,,10/26/1992,,20775-bb89431563-0-2.tgz,document-source,VOLUME77_ISSUE10_MONDAYOCTOBER26_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 77, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb2970399h,Object,20775-bb2970399h-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,4/7/1972,,7-Apr-72,,4/7/1972,,20775-bb2970399h-0-2.tgz,document-source,VOLUME16_ISSUE4_FRIDAYAPRIL7_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 16, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb5905575q,Object,20775-bb5905575q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/11/2005,,11-Apr-05,,4/11/2005,,20775-bb5905575q-0-2.tgz,document-source,VOLUME115_ISSUE5_MONDAYAPRIL11_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 115, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb7304909b,Object,20775-bb7304909b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,10/27/1983,,27-Oct-83,,10/27/1983,,20775-bb7304909b-0-2.tgz,document-source,VOLUME50_ISSUE11_THURSDAYOCTOBER27_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 50, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb3004531k,Object,20775-bb3004531k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,9/28/1999,,28-Sep-99,,9/28/1999,,20775-bb3004531k-0-2.tgz,document-source,VOLUME98_ISSUE1_TUESDAYSEPTEMBER28_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 98, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb4574512t,Object,20775-bb4574512t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/30/1996,,30-May-96,,5/30/1996,,20775-bb4574512t-0-2.tgz,document-source,VOLUME88_ISSUE18_THURSDAYMAY30_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 88, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb5769062p,Object,20775-bb5769062p-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,Triton Times,UCSD Guardian,The Guardian,,,,,,,,,,,,,10/31/1979,,31-Oct-79,,10/31/1979,,20775-bb5769062p-0-2.tgz,document-source,VOLUME38_ISSUE29_WEDNESDAYOCTOBER31_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb62810108,Object,20775-bb62810108-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,12/1/1970,,1-Dec-70,,12/1/1970,,20775-bb62810108-0-2.tgz,document-source,VOLUME11_ISSUE19_TUESDAYDECEMBER1_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 11, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb07519473,Object,20775-bb07519473-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,6/10/1977,,10-Jun-77,,6/10/1977,,20775-bb07519473-0-2.tgz,document-source,VOLUME31_ISSUE29_FRIDAYJUNE10_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 31, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb59055767,Object,20775-bb59055767-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,2/12/1998,,12-Feb-98,,2/12/1998,,20775-bb59055767-0-2.tgz,document-source,VOLUME93_ISSUE12_THURSDAYFEBRUARY12_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 93, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb1298035j,Object,20775-bb1298035j-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,1/19/1979,,19-Jan-79,,1/19/1979,,20775-bb1298035j-0-2.tgz,document-source,VOLUME36_ISSUE6_FRIDAYJANUARY19_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 36, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb7509691z,Object,20775-bb7509691z-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/1/1974,,1-Apr-74,,4/1/1974,,20775-bb7509691z-0-2.tgz,document-source,VOLUME22_ISSUE1_TUESDAYAPRIL1_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 22, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb4574513b,Object,20775-bb4574513b-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,4/14/1986,,14-Apr-86,,4/14/1986,,,,VOLUME58_ISSUE5_MONDAYAPRIL14_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb1468680m,Object,20775-bb1468680m-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/17/1980,,17-Nov-80,,11/17/1980,,20775-bb1468680m-0-2.tgz,document-source,VOLUME41_ISSUE42_MONDAYNOVEMBER17_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 42",, +http://library.ucsd.edu/ark:/20775/bb5154844t,Object,20775-bb5154844t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/5/2007,,5-Nov-07,,11/5/2007,,,,11_05_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb9216313h,Object,20775-bb9216313h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/26/2009,,26-May-09,,5/26/2009,,,,05_26_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb8670111f,Object,20775-bb8670111f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,4/4/1983,,4-Apr-83,,4/4/1983,,20775-bb8670111f-0-2.tgz,document-source,VOLUME49_ISSUE1_MONDAYAPRIL4_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 49, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb8294686p,Object,20775-bb8294686p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,3/11/1996,,11-Mar-96,,3/11/1996,,20775-bb8294686p-0-2.tgz,document-source,VOLUME87_ISSUE19_MONDAYMARCH11_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 87, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb48134268,Object,20775-bb48134268-0-1.pdf,document-service,text,,The Guardian,,,,Daily Guardian,Triton Times,UCSD Guardian,Guardian,,,,,,,,,,,,,2/12/1981,,12-Feb-81,,2/12/1981,,20775-bb48134268-0-2.tgz,document-source,VOLUME42_ISSUE12_THURSDAYFEBRUARY12_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb49840727,Object,20775-bb49840727-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,11/7/1990,,7-Nov-90,,11/7/1990,,20775-bb49840727-0-2.tgz,document-source,VOLUME71_ISSUE19_WEDNESDAYNOVEMBER7_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 71, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb3823652m,Object,20775-bb3823652m-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,1/22/1974,,22-Jan-74,,1/22/1974,,20775-bb3823652m-0-2.tgz,document-source,VOLUME21_ISSUE5_TUESDAYJANUARY22_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 21, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb2356064s,Object,20775-bb2356064s-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,5/4/1977,,4-May-77,,5/4/1977,,20775-bb2356064s-0-2.tgz,document-source,VOLUME31_ISSUE14_WEDNESDAYMAY4_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 31, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb12980362,Object,20775-bb12980362-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,11/27/1973,,27-Nov-73,,11/27/1973,,20775-bb12980362-0-2.tgz,document-source,VOLUME20_ISSUE18_TUESDAYNOVEMBER27_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 20, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb30045323,Object,20775-bb30045323-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,11/28/1972,,28-Nov-72,,11/28/1972,,20775-bb30045323-0-2.tgz,document-source,VOLUME17_ISSUE18_TUESDAYNOVEMBER28_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 17, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb75096930,Object,20775-bb75096930-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,1/18/1982,,18-Jan-82,,1/18/1982,,20775-bb75096930-0-2.tgz,document-source,VOLUME45_ISSUE5_MONDAYJANUARY18_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb6178620m,Object,20775-bb6178620m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,1/7/1991,,7-Jan-91,,1/7/1991,,20775-bb6178620m-0-2.tgz,document-source,VOLUME72_ISSUE1_MONDAYJANUARY7_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 72, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb9728139m,Object,20775-bb9728139m-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,11/26/1980,,26-Nov-80,,11/26/1980,,20775-bb9728139m-0-2.tgz,document-source,VOLUME41_ISSUE49_WEDNESDAYNOVEMBER26_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 49",, +http://library.ucsd.edu/ark:/20775/bb8670110x,Object,20775-bb8670110x-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,9/20/1977,,20-Sep-77,,9/20/1977,,20775-bb8670110x-0-2.tgz,document-source,VOLUME32_ISSUE1_TUESDAYSEPTEMBER20_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb29703980,Object,20775-bb29703980-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,3/2/1973,,2-Mar-73,,3/2/1973,,20775-bb29703980-0-2.tgz,document-source,VOLUME18_ISSUE16_FRIDAYMARCH2_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 18, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb8943153j,Object,20775-bb8943153j-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,UCSD Guardian,Triton Times,Guardian,,,,,,,,,,,,,2/4/1980,,4-Feb-80,,2/4/1980,,20775-bb8943153j-0-2.tgz,document-source,VOLUME39_ISSUE21_MONDAYFEBRUARY4_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb45403810,Object,20775-bb45403810-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/9/1995,,9-Nov-95,,11/9/1995,,20775-bb45403810-0-2.tgz,document-source,VOLUME86_ISSUE15_THURSDAYNOVEMBER9_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 86, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb4813425r,Object,20775-bb4813425r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,3/31/2005,,31-Mar-05,,3/31/2005,,20775-bb4813425r-0-2.tgz,document-source,VOLUME115_ISSUE2_THURSDAYMARCH31_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 115, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb32093120,Object,20775-bb32093120-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/18/1988,,18-Apr-88,,4/18/1988,,20775-bb32093120-0-2.tgz,document-source,VOLUME64_ISSUE5_MONDAYAPRIL18_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 64, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb2014762h,Object,20775-bb2014762h-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,2/12/1980,,12-Feb-80,,2/12/1980,,20775-bb2014762h-0-2.tgz,document-source,VOLUME39_ISSUE27_TUESDAYFEBRUARY12_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb4984073r,Object,20775-bb4984073r-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,4/16/1975,,16-Apr-75,,4/16/1975,,20775-bb4984073r-0-2.tgz,document-source,VOLUME25_ISSUE8_WEDNESDAYAPRIL16_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 25, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb69977446,Object,20775-bb69977446-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/5/2005,,5-May-05,,5/5/2005,,20775-bb69977446-0-2.tgz,document-source,VOLUME115_ISSUE12_THURSDAYMAY5_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 115, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb1536937j,Object,20775-bb1536937j-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,4/26/1968,,26-Apr-68,,4/26/1968,,20775-bb1536937j-0-2.tgz,document-source,VOLUME4_ISSUE4_APRIL26_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 4, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb20147631,Object,20775-bb20147631-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,5/4/1973,,4-May-73,,5/4/1973,,20775-bb20147631-0-2.tgz,document-source,VOLUME19_ISSUE10_FRIDAYMAY4_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 19, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb56666707,Object,20775-bb56666707-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/30/2000,,30-Oct-00,,10/30/2000,,20775-bb56666707-0-2.tgz,document-source,VOLUME101_ISSUE12_MONDAYOCTOBER30_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 101, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb44038604,Object,20775-bb44038604-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,6/5/1989,,5-Jun-89,,6/5/1989,,20775-bb44038604-0-2.tgz,document-source,VOLUME67_ISSUE19_MONDAYJUNE5_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 67, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb1605199p,Object,20775-bb1605199p-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,10/19/1971,,19-Oct-71,,10/19/1971,,20775-bb1605199p-0-2.tgz,document-source,VOLUME14_ISSUE7_TUESDAYOCTOBER19_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 14, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb8260551d,Object,20775-bb8260551d-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,4/2/1971,,2-Apr-71,,4/2/1971,,20775-bb8260551d-0-2.tgz,document-source,VOLUME13_ISSUE2_FRIDAYAPRIL2_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 13, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb6997743p,Object,20775-bb6997743p-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,2/7/1975,,7-Feb-75,,2/7/1975,,20775-bb6997743p-0-2.tgz,document-source,VOLUME24_ISSUE15_FRIDAYFEBRUARY7_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 24, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb7304908t,Object,20775-bb7304908t-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,2/14/1977,,14-Feb-77,,2/14/1977,,20775-bb7304908t-0-2.tgz,document-source,VOLUME30_ISSUE16_MONDAYFEBRUARY14_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 30, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb17075895,Object,20775-bb17075895-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,11/18/1982,,18-Nov-82,,11/18/1982,,20775-bb17075895-0-2.tgz,document-source,VOLUME47_ISSUE17_THURSDAYNOVEMBER18_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb68617028,Object,2013-05-16.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/16/2013,,16-May-13,,5/16/2013,,,,2013-05-16.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 54",,Newspaper +http://library.ucsd.edu/ark:/20775/bb3209310z,Object,20775-bb3209310z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/8/1986,,8-May-86,,5/8/1986,,,,VOLUME58_ISSUE12_THURSDAYMAY8_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb2970397g,Object,20775-bb2970397g-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,3/18/1977,,18-Mar-77,,3/18/1977,,20775-bb2970397g-0-2.tgz,document-source,VOLUME30_ISSUE29_FRIDAYMARCH18_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 30, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb92844568,Object,20775-bb92844568-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,3/8/1999,,8-Mar-99,,3/8/1999,,20775-bb92844568-0-2.tgz,document-source,VOLUME96_ISSUE19_MONDAYMARCH8_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 96, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb4574516w,Object,20775-bb4574516w-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/23/1976,,23-Apr-76,,4/23/1976,,20775-bb4574516w-0-2.tgz,document-source,VOLUME28_ISSUE12_FRIDAYAPRIL23_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 28, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb89431542,Object,20775-bb89431542-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,2/6/2003,,6-Feb-03,,2/6/2003,,20775-bb89431542-0-2.tgz,document-source,VOLUME108_ISSUE10_THURSDAYFEBRUARY6_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 108, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb5871576w,Object,20775-bb5871576w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/7/2010,,7-Oct-10,,10/7/2010,,,,10_07_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb05813009,Object,20775-bb05813009-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,1/20/2005,,20-Jan-05,,1/20/2005,,20775-bb05813009-0-2.tgz,document-source,VOLUME114_ISSUE6_THURSDAYJANUARY20_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 114, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb61786256,Object,20775-bb61786256-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,11/9/2000,,9-Nov-00,,11/9/2000,,20775-bb61786256-0-2.tgz,document-source,VOLUME101_ISSUE15_THURSDAYNOVEMBER9_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 101, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb31751798,Object,20775-bb31751798-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,2/11/1985,,11-Feb-85,,2/11/1985,,20775-bb31751798-0-2.tgz,document-source,VOLUME54_ISSUE11_MONDAYFEBRUARY11_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 54, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb38236555,Object,20775-bb38236555-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,1/20/1975,,20-Jan-75,,1/20/1975,,20775-bb38236555-0-2.tgz,document-source,VOLUME24_ISSUE7_MONDAYJANUARY20_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 24, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb4540380g,Object,20775-bb4540380g-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,2/18/1972,,18-Feb-72,,2/18/1972,,20775-bb4540380g-0-2.tgz,document-source,VOLUME15_ISSUE14_FRIDAYFEBRUARY18_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 15, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb4574514v,Object,20775-bb4574514v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/19/1988,,19-Jan-88,,1/19/1988,,20775-bb4574514v-0-2.tgz,document-source,VOLUME59_ISSUE25_TUESDAYJANUARY19_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 59, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb5769064q,Object,20775-bb5769064q-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,11/16/1989,,16-Nov-89,,11/16/1989,,20775-bb5769064q-0-2.tgz,document-source,VOLUME68_ISSUE17_THURSDAYNOVEMBER16_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 68, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb1298033h,Object,20775-bb1298033h-0-1.pdf,document-service,text,,The Guardian,,,,Triton Times,UCSD Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,1/26/1981,,26-Jan-81,,1/26/1981,,20775-bb1298033h-0-2.tgz,document-source,VOLUME42_ISSUE7_MONDAYJANUARY26_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb8260550w,Object,20775-bb8260550w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,11/21/1994,,21-Nov-94,,11/21/1994,,20775-bb8260550w-0-2.tgz,document-source,VOLUME83_ISSUE18_MONDAYNOVEMBER21_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 83, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb4745285c,Object,20775-bb4745285c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,12/4/2008,,4-Dec-08,,12/4/2008,,,,12_04_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb7748725w,Object,20775-bb7748725w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/11/2011,,11-Apr-11,,4/11/2011,,,,04_11_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 45",, +http://library.ucsd.edu/ark:/20775/bb6110485m,Object,20775-bb6110485m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/22/2008,,22-May-08,,5/22/2008,,,,05_22_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb15369382,Object,20775-bb15369382-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/2/1995,,2-Feb-95,,2/2/1995,,20775-bb15369382-0-2.tgz,document-source,VOLUME84_ISSUE8_THURSDAYFEBRUARY2_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 84, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb2356067b,Object,20775-bb2356067b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/28/2002,,28-Jan-02,,1/28/2002,,20775-bb2356067b-0-2.tgz,document-source,VOLUME105_ISSUE7_MONDAYJANUARY28_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 105, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb4574515c,Object,20775-bb4574515c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,9/27/1984,,27-Sep-84,,9/27/1984,,20775-bb4574515c-0-2.tgz,document-source,VOLUME53_ISSUE4_THURSDAYSEPTEMBER27_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 53, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb3209311g,Object,20775-bb3209311g-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/5/1977,,5-Oct-77,,10/5/1977,,20775-bb3209311g-0-2.tgz,document-source,VOLUME32_ISSUE6_OCTOBER5_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb2356066t,Object,20775-bb2356066t-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,11/15/1979,,15-Nov-79,,11/15/1979,,20775-bb2356066t-0-2.tgz,document-source,VOLUME38_ISSUE40_THURSDAYNOVEMBER15_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 40",, +http://library.ucsd.edu/ark:/20775/bb3312185v,Object,2013-04-25.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/25/2013,,25-Apr-13,,4/25/2013,,,,2013-04-25.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 48",,Newspaper +http://library.ucsd.edu/ark:/20775/bb9284455r,Object,20775-bb9284455r-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/26/1980,,26-Feb-80,,2/26/1980,,20775-bb9284455r-0-2.tgz,document-source,VOLUME39_ISSUE36_TUESDAYFEBRUARY26_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 36",, +http://library.ucsd.edu/ark:/20775/bb3823654n,Object,20775-bb3823654n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,10/11/1999,,11-Oct-99,,10/11/1999,,20775-bb3823654n-0-2.tgz,document-source,VOLUME98_ISSUE4_MONDAYOCTOBER11_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 98, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb8670113g,Object,20775-bb8670113g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,11/19/1981,,19-Nov-81,,11/19/1981,,20775-bb8670113g-0-2.tgz,document-source,VOLUME44_ISSUE19_THURSDAYNOVEMBER19_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 44, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb1741724m,Object,20775-bb1741724m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,4/21/2003,,21-Apr-03,,4/21/2003,,20775-bb1741724m-0-2.tgz,document-source,VOLUME109_ISSUE7_MONDAYAPRIL21_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 109, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb1195646n,Object,20775-bb1195646n-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,Triton Times,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,2/2/1979,,2-Feb-79,,2/2/1979,,20775-bb1195646n-0-2.tgz,document-source,VOLUME36_ISSUE12_FRIDAYFEBRUARY2_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 36, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb3175178r,Object,20775-bb3175178r-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,10/24/1969,,24-Oct-69,,10/24/1969,,20775-bb3175178r-0-2.tgz,document-source,VOLUME8_ISSUE4_FRIDAYOCTOBER24_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 8, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb6178622n,Object,20775-bb6178622n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/14/1982,,14-Oct-82,,10/14/1982,,20775-bb6178622n-0-2.tgz,document-source,VOLUME47_ISSUE7_THURSDAYOCTOBER14_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb6690568d,Object,20775-bb6690568d-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/19/1977,,19-Oct-77,,10/19/1977,,20775-bb6690568d-0-2.tgz,document-source,VOLUME32_ISSUE12_WEDNESDAYOCTOBER19_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 32, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb8670112z,Object,20775-bb8670112z-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,4/16/2001,,16-Apr-01,,4/16/2001,,20775-bb8670112z-0-2.tgz,document-source,VOLUME103_ISSUE5_MONDAYAPRIL16_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 103, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb12980341,Object,20775-bb12980341-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,1/8/2004,,8-Jan-04,,1/8/2004,,20775-bb12980341-0-2.tgz,document-source,VOLUME111_ISSUE2_THURSDAYJANUARY8_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 111, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb30045302,Object,20775-bb30045302-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,10/14/1985,,14-Oct-85,,10/14/1985,,20775-bb30045302-0-2.tgz,document-source,VOLUME56_ISSUE6_MONDAYOCTOBER14_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 56, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb8397235j,Object,20775-bb8397235j-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,5/3/2012,,3-May-12,,5/3/2012,,,,2012-05-03.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 50",, +http://library.ucsd.edu/ark:/20775/bb3653125x,Object,20775-bb3653125x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/14/2011,,14-Nov-11,,11/14/2011,,,,11_14_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb76462150,Object,20775-bb76462150-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/10/1982,,10-May-82,,5/10/1982,,20775-bb76462150-0-2.tgz,document-source,VOLUME46_ISSUE13_MONDAYMAY10_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb69977425,Object,20775-bb69977425-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,11/2/1987,,2-Nov-87,,11/2/1987,,20775-bb69977425-0-2.tgz,document-source,VOLUME59_ISSUE12_MONDAYNOVEMBER2_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 59, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb2014760g,Object,20775-bb2014760g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,4/25/1991,,25-Apr-91,,4/25/1991,,20775-bb2014760g-0-2.tgz,document-source,VOLUME73_ISSUE8_THURSDAYAPRIL25_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 73, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb6827091x,Object,20775-bb6827091x-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,3/6/1973,,6-Mar-73,,3/6/1973,,20775-bb6827091x-0-2.tgz,document-source,VOLUME18_ISSUE17_TUESDAYMARCH6_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 18, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb23560617,Object,20775-bb23560617-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,4/23/1979,,23-Apr-79,,4/23/1979,,20775-bb23560617-0-2.tgz,document-source,VOLUME37_ISSUE10_MONDAYAPRIL23_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb6963611z,Object,20775-bb6963611z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,7/16/2001,,16-Jul-01,,7/16/2001,,20775-bb6963611z-0-2.tgz,document-source,VOLUME103_ISSUE21_MONDAYJULY16_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 103, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb47792944,Object,20775-bb47792944-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,1/9/2006,,9-Jan-06,,1/9/2006,,20775-bb47792944-0-2.tgz,document-source,MONDAYJANUARY9_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 117, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb8943151h,Object,20775-bb8943151h-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/30/1986,,30-Jan-86,,1/30/1986,,20775-bb8943151h-0-2.tgz,document-source,VOLUME57_ISSUE8_THURSDAYJANUARY30_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 57, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb45403831,Object,20775-bb45403831-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,4/10/1989,,10-Apr-89,,4/10/1989,,20775-bb45403831-0-2.tgz,document-source,VOLUME67_ISSUE3_MONDAYAPRIL10_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 67, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb1536939k,Object,20775-bb1536939k-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,11/10/1986,,10-Nov-86,,11/10/1986,,,,VOLUME58_ISSUE14_MONDAYNOVEMBER10_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb89431521,Object,20775-bb89431521-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/24/1974,,24-May-74,,5/24/1974,,20775-bb89431521-0-2.tgz,document-source,VOLUME22_ISSUE16_FRIDAYMAY24_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 22, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb7577954r,Object,20775-bb7577954r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/22/2004,,22-Apr-04,,4/22/2004,,20775-bb7577954r-0-2.tgz,document-source,VOLUME112_ISSUE8_THURSDAYAPRIL22_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 112, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb4540382h,Object,20775-bb4540382h-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,2/12/1980,,12-Feb-80,,2/12/1980,,20775-bb4540382h-0-2.tgz,document-source,VOLUME39_ISSUE26_MONDAYFEBRUARY12_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb5939835x,Object,20775-bb5939835x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/5/2009,,5-Oct-09,,10/5/2009,,,,10_05_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb6963612g,Object,20775-bb6963612g-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,4/2/1975,,2-Apr-75,,4/2/1975,,20775-bb6963612g-0-2.tgz,document-source,VOLUME25_ISSUE2_WEDNESDAYAPRIL2_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 25, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb71683866,Object,20775-bb71683866-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,3/4/1980,,4-Mar-80,,3/4/1980,,20775-bb71683866-0-2.tgz,document-source,VOLUME39_ISSUE41_TUESDAYMARCH4_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 41",, +http://library.ucsd.edu/ark:/20775/bb6997741n,Object,20775-bb6997741n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/1/2003,,1-May-03,,5/1/2003,,20775-bb6997741n-0-2.tgz,document-source,VOLUME109_ISSUE10_THURSDAYMAY1_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 109, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb44038625,Object,20775-bb44038625-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,10/9/1995,,9-Oct-95,,10/9/1995,,20775-bb44038625-0-2.tgz,document-source,VOLUME86_ISSUE6_MONDAYOCTOBER9_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 86, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb8465811k,Object,2013-04-04.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/4/2013,,4-Apr-13,,4/4/2013,,,,2013-04-04.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 42",,Newspaper +http://library.ucsd.edu/ark:/20775/bb20147610,Object,20775-bb20147610-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/12/1994,,12-May-94,,5/12/1994,,20775-bb20147610-0-2.tgz,document-source,VOLUME82_ISSUE13_THURSDAYMAY12_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 82, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb1298030z,Object,20775-bb1298030z-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,4/4/1980,,4-Apr-80,,4/4/1980,,20775-bb1298030z-0-2.tgz,document-source,VOLUME40_ISSUE5_FRIDAYAPRIL4_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb4574517d,Object,20775-bb4574517d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,1/15/2004,,15-Jan-04,,1/15/2004,,20775-bb4574517d-0-2.tgz,document-source,VOLUME111_ISSUE4_THURSDAYJANUARY15_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 111, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb7646212f,Object,20775-bb7646212f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,6/4/1987,,4-Jun-87,,6/4/1987,,20775-bb7646212f-0-2.tgz,document-source,VOLUME58_ISSUE60_THURSDAYJUNE4_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 60",, +http://library.ucsd.edu/ark:/20775/bb58373251,Object,20775-bb58373251-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,3/6/1997,,6-Mar-97,,3/6/1997,,20775-bb58373251-0-2.tgz,document-source,VOLUME90_ISSUE18_THURSDAYMARCH6_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 90, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb2868009d,Object,20775-bb2868009d-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/8/2004,,8-Nov-04,,11/8/2004,,20775-bb2868009d-0-2.tgz,document-source,VOLUME113_ISSUE13_MONDAYNOVEMBER8_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 113, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb1298031g,Object,20775-bb1298031g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,11/16/1990,,16-Nov-90,,11/16/1990,,20775-bb1298031g-0-2.tgz,document-source,VOLUME71_ISSUE23_FRIDAYNOVEMBER16_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 71, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb4779291k,Object,20775-bb4779291k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,3/4/1991,,4-Mar-91,,3/4/1991,,20775-bb4779291k-0-2.tgz,document-source,VOLUME72_ISSUE17_MONDAYMARCH4_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 72, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb0820209v,Object,20775-bb0820209v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,3/13/1997,,13-Mar-97,,3/13/1997,,20775-bb0820209v-0-2.tgz,document-source,VOLUME90_ISSUE20_THURSDAYMARCH13_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 90, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb4403861n,Object,20775-bb4403861n-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/18/2000,,18-May-00,,5/18/2000,,20775-bb4403861n-0-2.tgz,document-source,VOLUME100_ISSUE14_THURSDAYMAY18_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 100, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb8875015t,Object,20775-bb8875015t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/22/2009,,22-Sep-09,,9/22/2009,,,,09_22_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb14005478,Object,20775-bb14005478-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/18/2009,,18-May-09,,5/18/2009,,,,05_18_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb7646211x,Object,20775-bb7646211x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,6/5/2003,,5-Jun-03,,6/5/2003,,20775-bb7646211x-0-2.tgz,document-source,VOLUME109_ISSUE20_THURSDAYJUNE5_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 109, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb8124027m,Object,20775-bb8124027m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,5/4/2006,,4-May-06,,5/4/2006,,20775-bb8124027m-0-2.tgz,document-source,THURSDAYMAY4_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 118, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb6827090d,Object,20775-bb6827090d-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,11/27/1978,,27-Nov-78,,11/27/1978,,20775-bb6827090d-0-2.tgz,document-source,VOLUME35_ISSUE28_MONDAYNOVEMBER27_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 35, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb12980320,Object,20775-bb12980320-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/24/1989,,24-Apr-89,,4/24/1989,,20775-bb12980320-0-2.tgz,document-source,VOLUME67_ISSUE7_MONDAYAPRIL24_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 67, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb2868008w,Object,20775-bb2868008w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/12/1992,,12-Nov-92,,11/12/1992,,20775-bb2868008w-0-2.tgz,document-source,VOLUME77_ISSUE15_THURSDAYNOVEMBER12_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 77, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb14004228,Object,20775-bb14004228-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/4/1982,,4-Feb-82,,2/4/1982,,20775-bb14004228-0-2.tgz,document-source,VOLUME45_ISSUE10_THURSDAYFEBRUARY4_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb2356060q,Object,20775-bb2356060q-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,4/18/1977,,18-Apr-77,,4/18/1977,,20775-bb2356060q-0-2.tgz,document-source,VOLUME31_ISSUE7_MONDAYAPRIL18_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 31, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb85335873,Object,20775-bb85335873-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,5/13/1977,,13-May-77,,5/13/1977,,20775-bb85335873-0-2.tgz,document-source,VOLUME31_ISSUE18_FRIDAYMAY13_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 31, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb5837324h,Object,20775-bb5837324h-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/14/2000,,14-Nov-00,,11/14/2000,,20775-bb5837324h-0-2.tgz,document-source,VOLUME101_ISSUE16_TUESDAYNOVEMBER14_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 101, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb65200465,Object,20775-bb65200465-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/20/2011,,20-Oct-11,,10/20/2011,,,,10_20_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb69636130,Object,20775-bb69636130-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/27/1999,,27-May-99,,5/27/1999,,20775-bb69636130-0-2.tgz,document-source,VOLUME97_ISSUE18_THURSDAYMAY27_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 97, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb72025169,Object,20775-bb72025169-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,5/5/1970,,5-May-70,,5/5/1970,,20775-bb72025169-0-2.tgz,document-source,VOLUME10_ISSUE10_TUESDAYMAY5_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 10, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb23560638,Object,20775-bb23560638-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,4/20/2000,,20-Apr-00,,4/20/2000,,20775-bb23560638-0-2.tgz,document-source,VOLUME100_ISSUE6_THURSDAYAPRIL20_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 100, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb0751948m,Object,20775-bb0751948m-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/20/1971,,20-Apr-71,,4/20/1971,,20775-bb0751948m-0-2.tgz,document-source,VOLUME13_ISSUE7_TUESDAYAPRIL20_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 13, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb09909869,Object,20775-bb09909869-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/15/2010,,15-Apr-10,,4/15/2010,,,,04_15_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 46",, +http://library.ucsd.edu/ark:/20775/bb85335894,Object,20775-bb85335894-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,12/2/2002,,2-Dec-02,,12/2/2002,,20775-bb85335894-0-2.tgz,document-source,VOLUME107_ISSUE19_MONDAYDECEMBER2_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 107, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb69977404,Object,20775-bb69977404-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,4/6/2006,,6-Apr-06,,4/6/2006,,20775-bb69977404-0-2.tgz,document-source,THURSDAYAPRIL6_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 118, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb75779537,Object,20775-bb75779537-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/6/1973,,6-Apr-73,,4/6/1973,,20775-bb75779537-0-2.tgz,document-source,VOLUME19_ISSUE2_FRIDAYAPRIL6_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 19, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb2902302q,Object,20775-bb2902302q-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,2/9/2012,,9-Feb-12,,2/9/2012,,,,2012-02-09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 30",, +http://library.ucsd.edu/ark:/20775/bb47792923,Object,20775-bb47792923-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/26/2005,,26-May-05,,5/26/2005,,20775-bb47792923-0-2.tgz,document-source,VOLUME115_ISSUE18_THURSDAYMAY26_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 115, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb6963610f,Object,20775-bb6963610f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/14/1998,,14-May-98,,5/14/1998,,20775-bb6963610f-0-2.tgz,document-source,VOLUME94_ISSUE14_THURSDAYMAY14_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 94, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb5154720b,Object,20775-bb5154720b-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,4/10/1978,,10-Apr-78,,4/10/1978,,20775-bb5154720b-0-2.tgz,document-source,VOLUME34_ISSUE4_MONDAYAPRIL10_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 34, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb44038646,Object,20775-bb44038646-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,5/15/2006,,15-May-06,,5/15/2006,,20775-bb44038646-0-2.tgz,document-source,MONDAYMAY15_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 118, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb1059125q,Object,20775-bb1059125q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,10/5/1989,,5-Oct-89,,10/5/1989,,20775-bb1059125q-0-2.tgz,document-source,VOLUME68_ISSUE5_THURSDAYOCTOBER5_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 68, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb38236513,Object,20775-bb38236513-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/27/1973,,27-Apr-73,,4/27/1973,,20775-bb38236513-0-2.tgz,document-source,VOLUME19_ISSUE8_FRIDAYAPRIL27_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 19, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb61786214,Object,20775-bb61786214-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/10/1999,,10-May-99,,5/10/1999,,20775-bb61786214-0-2.tgz,document-source,VOLUME97_ISSUE13_MONDAYMAY10_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 97, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb7577952q,Object,20775-bb7577952q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/19/1987,,19-Feb-87,,2/19/1987,,,,VOLUME58_ISSUE34_THURSDAYFEBRUARY19_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 34",, +http://library.ucsd.edu/ark:/20775/bb81240284,Object,20775-bb81240284-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/18/1996,,18-Nov-96,,11/18/1996,,20775-bb81240284-0-2.tgz,document-source,VOLUME89_ISSUE16_MONDAYNOVEMBER18_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 89, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb7202515s,Object,20775-bb7202515s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/7/2000,,7-Feb-00,,2/7/2000,,20775-bb7202515s-0-2.tgz,document-source,VOLUME99_ISSUE7_MONDAYFEBRUARY7_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 99, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb89431500,Object,20775-bb89431500-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,The Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,10/2/1978,,2-Oct-78,,10/2/1978,,20775-bb89431500-0-2.tgz,document-source,VOLUME35_ISSUE5_MONDAYOCTOBER2_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 35, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb7612205q,Object,20775-bb7612205q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/13/2008,,13-Nov-08,,11/13/2008,,,,11_13_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb8533588m,Object,20775-bb8533588m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,10/19/1981,,19-Oct-81,,10/19/1981,,20775-bb8533588m-0-2.tgz,document-source,VOLUME44_ISSUE10_MONDAYOCTOBER19_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 44, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb6179106x,Object,2013-11-12.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/7/2013,,12-Nov-13,,11/7/2013,,,,2013-11-12.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 14",,Newspaper +http://library.ucsd.edu/ark:/20775/bb5154721v,Object,20775-bb5154721v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,4/9/1992,,9-Apr-92,,4/9/1992,,20775-bb5154721v-0-2.tgz,document-source,VOLUME76_ISSUE4_THURSDAYAPRIL9_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 76, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb58373230,Object,20775-bb58373230-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,12/7/1976,,7-Dec-76,,12/7/1976,,20775-bb58373230-0-2.tgz,document-source,VOLUME29_ISSUE31_TUESDAYDECEMBER7_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 29, Issue 31",, +http://library.ucsd.edu/ark:/20775/bb7646210d,Object,20775-bb7646210d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,2/20/1992,,20-Feb-92,,2/20/1992,,20775-bb7646210d-0-2.tgz,document-source,VOLUME75_ISSUE14_THURSDAYFEBRUARY20_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 75, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb0649557c,Object,20775-bb0649557c-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/28/1980,,28-Jan-80,,1/28/1980,,20775-bb0649557c-0-2.tgz,document-source,VOLUME39_ISSUE16_MONDAYJANUARY28_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb74756877,Object,20775-bb74756877-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/28/2011,,28-Nov-11,,11/28/2011,,,,11_28_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb97281383,Object,20775-bb97281383-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,3/2/1989,,2-Mar-89,,3/2/1989,,20775-bb97281383-0-2.tgz,document-source,VOLUME66_ISSUE17_THURSDAYMARCH2_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 66, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb0376682j,Object,20775-bb0376682j-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,2/23/2012,,23-Feb-12,,2/23/2012,,,,2012-02-23.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 34",, +http://library.ucsd.edu/ark:/20775/bb07519494,Object,20775-bb07519494-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,3/7/2005,,7-Mar-05,,3/7/2005,,20775-bb07519494-0-2.tgz,document-source,VOLUME114_ISSUE19_MONDAYMARCH7_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 114, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb2799750h,Object,20775-bb2799750h-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,1/23/1980,,23-Jan-80,,1/23/1980,,20775-bb2799750h-0-2.tgz,document-source,VOLUME39_ISSUE13_WEDNESDAYJANUARY23_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb1093255n,Object,20775-bb1093255n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/23/2004,,23-Feb-04,,2/23/2004,,20775-bb1093255n-0-2.tgz,document-source,VOLUME111_ISSUE15_MONDAYFEBRUARY23_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 111, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb27998761,Object,20775-bb27998761-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/2/2008,,2-Oct-08,,10/2/2008,,,,10_02_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb9728137k,Object,20775-bb9728137k-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,1/31/1969,,31-Jan-69,,1/31/1969,,20775-bb9728137k-0-2.tgz,document-source,VOLUME6_ISSUE3_JANUARY31_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 6, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb4403863p,Object,20775-bb4403863p-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/10/2005,,10-Oct-05,,10/10/2005,,20775-bb4403863p-0-2.tgz,document-source,VOLUME116_ISSUE6_MONDAYOCTOBER10_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 116, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb27997511,Object,20775-bb27997511-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,1/8/1996,,8-Jan-96,,1/8/1996,,20775-bb27997511-0-2.tgz,document-source,VOLUME87_ISSUE1_MONDAYJANUARY8_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 87, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb4847674b,Object,20775-bb4847674b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/19/2010,,19-Apr-10,,4/19/2010,,,,04_19_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 47",, +http://library.ucsd.edu/ark:/20775/bb5837321z,Object,20775-bb5837321z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/11/1991,,11-Feb-91,,2/11/1991,,20775-bb5837321z-0-2.tgz,document-source,VOLUME72_ISSUE11_MONDAYFEBRUARY11_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 72, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb3823650k,Object,20775-bb3823650k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/9/1990,,9-Nov-90,,11/9/1990,,20775-bb3823650k-0-2.tgz,document-source,VOLUME71_ISSUE20_FRIDAYNOVEMBER9_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 71, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb84658165,Object,2014-11-17.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/17/2014,,17-Nov-14,,11/17/2014,,,,2014-11-17.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 48, Issue 14",,Newspaper +http://library.ucsd.edu/ark:/20775/bb14004207,Object,20775-bb14004207-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,3/6/1980,,6-Mar-80,,3/6/1980,,20775-bb14004207-0-2.tgz,document-source,VOLUME39_ISSUE43_THURSDAYMARCH6_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 43",, +http://library.ucsd.edu/ark:/20775/bb5837322g,Object,20775-bb5837322g-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,4/12/1974,,12-Apr-74,,4/12/1974,,20775-bb5837322g-0-2.tgz,document-source,VOLUME22_ISSUE4_FRIDAYAPRIL12_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 22, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb3687619j,Object,2014-03-06.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/6/2014,,6-Mar-14,,3/6/2014,,,,2014-03-06.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 38",,Newspaper +http://library.ucsd.edu/ark:/20775/bb3312189x,Object,2014-12-04.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,12/4/2014,,4-Dec-14,,12/4/2014,,,,2014-12-04.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 18",,Newspaper +http://library.ucsd.edu/ark:/20775/bb2356062r,Object,20775-bb2356062r-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/28/1988,,28-Jan-88,,1/28/1988,,20775-bb2356062r-0-2.tgz,document-source,VOLUME59_ISSUE28_THURSDAYJANUARY28_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 59, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb43015944,Object,20775-bb43015944-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/6/2010,,6-May-10,,5/6/2010,,,,05_06_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 52",, +http://library.ucsd.edu/ark:/20775/bb8362939j,Object,20775-bb8362939j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/20/1987,,20-Jan-87,,1/20/1987,,,,VOLUME58_ISSUE25_TUESDAYJANUARY20_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb3789518r,Object,20775-bb3789518r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,2/27/1996,,27-Feb-96,,2/27/1996,,20775-bb3789518r-0-2.tgz,document-source,VOLUME90_ISSUE16_THURSDAYFEBRUARY27_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 90, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb7202517t,Object,20775-bb7202517t-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,1/26/1977,,26-Jan-77,,1/26/1977,,20775-bb7202517t-0-2.tgz,document-source,VOLUME30_ISSUE8_WEDNESDAYJANUARY26_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 30, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb2253674c,Object,20775-bb2253674c-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,10/6/1976,,6-Oct-76,,10/6/1976,,20775-bb2253674c-0-2.tgz,document-source,VOLUME29_ISSUE6_WEDNESDAYOCTOBER6_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 29, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb94897190,Object,2014-04-28.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/28/2014,,28-Apr-14,,4/28/2014,,,,2014-04-28.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 49",,Newspaper +http://library.ucsd.edu/ark:/20775/bb3243602w,Object,20775-bb3243602w-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,4/5/2012,,5-Apr-12,,4/5/2012,,,,2012-04-05.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 42",, +http://library.ucsd.edu/ark:/20775/bb14345472,Object,20775-bb14345472-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,UCSD Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/20/1979,,20-Apr-79,,4/20/1979,,20775-bb14345472-0-2.tgz,document-source,VOLUME37_ISSUE9_FRIDAYAPRIL20_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb9864661c,Object,20775-bb9864661c-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,11/4/2002,,4-Nov-02,,11/4/2002,,20775-bb9864661c-0-2.tgz,document-source,VOLUME107_ISSUE12_MONDAYNOVEMBER4_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 107, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb1059123p,Object,20775-bb1059123p-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/11/1982,,11-Jan-82,,1/11/1982,,20775-bb1059123p-0-2.tgz,document-source,VOLUME45_ISSUE3_MONDAYJANUARY11_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb02058753,Object,20775-bb02058753-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,10/31/1983,,31-Oct-83,,10/31/1983,,20775-bb02058753-0-2.tgz,document-source,VOLUME50_ISSUE12_MONDAYOCTOBER31_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 50, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb92844505,Object,20775-bb92844505-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,11/13/1980,,13-Nov-80,,11/13/1980,,20775-bb92844505-0-2.tgz,document-source,VOLUME41_ISSUE40_THURSDAYNOVEMBER13_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 40",, +http://library.ucsd.edu/ark:/20775/bb1434546j,Object,20775-bb1434546j-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,10/20/1975,,20-Oct-75,,10/20/1975,,20775-bb1434546j-0-2.tgz,document-source,VOLUME26_ISSUE13_MONDAYOCTOBER20_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb2253673v,Object,20775-bb2253673v-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,1/15/1975,,15-Jan-75,,1/15/1975,,20775-bb2253673v-0-2.tgz,document-source,VOLUME24_ISSUE5_WEDNESDAYJANUARY15_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 24, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb3857781s,Object,20775-bb3857781s-0-1.pdf,document-service,text,,The Guardian,,,,Triton Times,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,1/12/1981,,12-Jan-81,,1/12/1981,,20775-bb3857781s-0-2.tgz,document-source,VOLUME42_ISSUE3_MONDAYJANUARY12_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb70318752,Object,20775-bb70318752-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/16/2001,,16-Jan-01,,1/16/2001,,20775-bb70318752-0-2.tgz,document-source,VOLUME102_ISSUE3_TUESDAYJANUARY16_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 102, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb1502810q,Object,20775-bb1502810q-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,4/9/1976,,9-Apr-76,,4/9/1976,,20775-bb1502810q-0-2.tgz,document-source,VOLUME28_ISSUE6_FRIDAYAPRIL9_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 28, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb82946813,Object,20775-bb82946813-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,4/1/1996,,1-Apr-96,,4/1/1996,,20775-bb82946813-0-2.tgz,document-source,VOLUME88_ISSUE1_MONDAYAPRIL1_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 88, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb6792963s,Object,20775-bb6792963s-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,11/5/1976,,5-Nov-76,,11/5/1976,,20775-bb6792963s-0-2.tgz,document-source,VOLUME29_ISSUE19_FRIDAYNOVEMBER5_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 29, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb2390316s,Object,20775-bb2390316s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guaridan,Daily Guardian,The Guardian,,,,,,,,,,,,,8/5/1991,,5-Aug-91,,8/5/1991,,,,,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 74, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb3448220s,Object,20775-bb3448220s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,3/4/1999,,4-Mar-99,,3/4/1999,,20775-bb3448220s-0-2.tgz,document-source,VOLUME96_ISSUE18_THURSDAYMARCH4_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 96, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb2970884p,Object,2013-05-30.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/30/2013,,30-May-13,,5/30/2013,,,,2013-05-30.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 58",,Newspaper +http://library.ucsd.edu/ark:/20775/bb7236647h,Object,20775-bb7236647h-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,Daily Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,1/12/1979,,12-Jan-79,,1/12/1979,,20775-bb7236647h-0-2.tgz,document-source,VOLUME35_ISSUE33_FRIDAYJANUARY12_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 35, Issue 33",, +http://library.ucsd.edu/ark:/20775/bb9864660v,Object,20775-bb9864660v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,1/23/1995,,23-Jan-95,,1/23/1995,,20775-bb9864660v-0-2.tgz,document-source,VOLUME84_ISSUE5_MONDAYJANUARY23_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 84, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb37895198,Object,20775-bb37895198-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,10/23/2000,,23-Oct-00,,10/23/2000,,20775-bb37895198-0-2.tgz,document-source,VOLUME101_ISSUE10_MONDAYOCTOBER23_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 101, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb0717821j,Object,20775-bb0717821j-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,10/18/1982,,18-Oct-82,,10/18/1982,,20775-bb0717821j-0-2.tgz,document-source,VOLUME47_ISSUE8_OCTOBER18_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb7339167t,Object,20775-bb7339167t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/28/2008,,28-Apr-08,,4/28/2008,,,,04_28_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb0205872j,Object,20775-bb0205872j-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/12/1987,,12-Jan-87,,1/12/1987,,,,VOLUME58_ISSUE23_MONDAYJANUARY12_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb04107744,Object,20775-bb04107744-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/8/2010,,8-Apr-10,,4/8/2010,,,,04_08_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 44",, +http://library.ucsd.edu/ark:/20775/bb34482219,Object,20775-bb34482219-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,2/1/1980,,1-Feb-80,,2/1/1980,,20775-bb34482219-0-2.tgz,document-source,VOLUME39_ISSUE20_FRIDAYFEBRUARY1_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb3346312m,Object,2012-2013ssg.pdf,document-service,text,eng - English,UCSD Guardian,,Student Survival Guide 2012-13,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/28/2012,,28-Sep-12,,9/28/2012,,,,2012-2013ssg.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,,Newspaper +http://library.ucsd.edu/ark:/20775/bb22195381,Object,20775-bb22195381-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/14/1983,,14-Feb-83,,2/14/1983,,20775-bb22195381-0-2.tgz,document-source,VOLUME48_ISSUE13_MONDAYFEBRUARY14_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 48, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb8772497x,Object,20775-bb8772497x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,6/6/1985,,6-Jun-85,,6/6/1985,,20775-bb8772497x-0-2.tgz,document-source,VOLUME55_ISSUE20_THURSDAYJUNE6_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 55, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb4028431v,Object,20775-bb4028431v-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,2/16/1971,,16-Feb-71,,2/16/1971,,20775-bb4028431v-0-2.tgz,document-source,VOLUME12_ISSUE13_TUESDAYFEBRUARY16_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 12, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb93187030,Object,20775-bb93187030-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,12/1/2008,,1-Dec-08,,12/1/2008,,,,12_01_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb1263905x,Object,20775-bb1263905x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/10/1984,,10-May-84,,5/10/1984,,20775-bb1263905x-0-2.tgz,document-source,VOLUME52_ISSUE12_THURSDAYMAY10_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 52, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb8772498f,Object,20775-bb8772498f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/22/1982,,22-Nov-82,,11/22/1982,,20775-bb8772498f-0-2.tgz,document-source,VOLUME47_ISSUE18_MONDAYNOVEMBER22_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb6315142j,Object,20775-bb6315142j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/9/1984,,9-Jan-84,,1/9/1984,,20775-bb6315142j-0-2.tgz,document-source,VOLUME51_ISSUE1_MONDAYJANUARY9_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 51, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb7031874j,Object,20775-bb7031874j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/28/2000,,28-Feb-00,,2/28/2000,,20775-bb7031874j-0-2.tgz,document-source,VOLUME99_ISSUE15_MONDAYFEBRUARY28_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 99, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb4028432c,Object,20775-bb4028432c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/20/1996,,20-May-96,,5/20/1996,,20775-bb4028432c-0-2.tgz,document-source,VOLUME88_ISSUE15_MONDAYMAY20_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 88, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb0274129v,Object,20775-bb0274129v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/17/1993,,17-May-93,,5/17/1993,,20775-bb0274129v-0-2.tgz,document-source,VOLUME79_ISSUE15_MONDAYMAY17_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 79, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb9591747t,Object,20775-bb9591747t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/10/2008,,10-Jan-08,,1/10/2008,,,,01_10_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb81922877,Object,20775-bb81922877-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/30/1971,,30-Mar-71,,3/30/1971,,20775-bb81922877-0-2.tgz,document-source,VOLUME13_ISSUE1_TUESDAYMARCH30_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 13, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb15028117,Object,20775-bb15028117-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/8/2000,,8-May-00,,5/8/2000,,20775-bb15028117-0-2.tgz,document-source,VOLUME100_ISSUE11_MONDAYMAY8_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 100, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb7202518b,Object,20775-bb7202518b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,1/4/1989,,4-Jan-89,,1/4/1989,,20775-bb7202518b-0-2.tgz,document-source,VOLUME66_ISSUE1_WEDNESDAYJANUARY4_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 66, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb68953515,Object,20775-bb68953515-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,1/21/1980,,21-Jan-80,,1/21/1980,,20775-bb68953515-0-2.tgz,document-source,VOLUME39_ISSUE11_MONDAYJANUARY21_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb2219537h,Object,20775-bb2219537h-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,4/14/1980,,14-Apr-80,,4/14/1980,,20775-bb2219537h-0-2.tgz,document-source,VOLUME40_ISSUE11_MONDAYAPRIL14_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb75438174,Object,20775-bb75438174-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,1/21/1988,,21-Jan-88,,1/21/1988,,20775-bb75438174-0-2.tgz,document-source,VOLUME59_ISSUE26_THURSDAYJANUARY21_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 59, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb3857784b,Object,20775-bb3857784b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/19/1984,,19-Jan-84,,1/19/1984,,20775-bb3857784b-0-2.tgz,document-source,VOLUME51_ISSUE4_THURSDAYJANUARY19_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 51, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb2253672b,Object,20775-bb2253672b-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/9/1995,,9-Feb-95,,2/9/1995,,20775-bb2253672b-0-2.tgz,document-source,VOLUME84_ISSUE10_THURSDAYFEBRUARY9_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 84, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb7202519v,Object,20775-bb7202519v-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,10/2/1973,,2-Oct-73,,10/2/1973,,20775-bb7202519v-0-2.tgz,document-source,VOLUME20_ISSUE3_TUESDAYOCTOBER2_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 20, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb41308202,Object,20775-bb41308202-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,10/9/2003,,9-Oct-03,,10/9/2003,,20775-bb41308202-0-2.tgz,document-source,VOLUME110_ISSUE5_THURSDAYOCTOBER9_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 110, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb7816863m,Object,20775-bb7816863m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,2/15/1990,,15-Feb-90,,2/15/1990,,20775-bb7816863m-0-2.tgz,document-source,VOLUME69_ISSUE13_THURSDAYFEBRUARY15_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 69, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb67929628,Object,20775-bb67929628-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/7/2002,,7-Oct-02,,10/7/2002,,20775-bb67929628-0-2.tgz,document-source,VOLUME107_ISSUE4_TUESDAYOCTOBER7_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 107, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb9045547z,Object,20775-bb9045547z-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/23/1977,,23-May-77,,5/23/1977,,20775-bb9045547z-0-2.tgz,document-source,VOLUME31_ISSUE22_MONDAYMAY23_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 31, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb1059121n,Object,20775-bb1059121n-0-1.pdf,document-service,text,,The Guardian,,,,UCSD Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,1/15/1981,,15-Jan-81,,1/15/1981,,20775-bb1059121n-0-2.tgz,document-source,VOLUME42_ISSUE4_THURSDAYJANUARY15_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb1332284x,Object,20775-bb1332284x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/4/2010,,4-Mar-10,,3/4/2010,,,,03_04_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 38",, +http://library.ucsd.edu/ark:/20775/bb70318773,Object,20775-bb70318773-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,1/30/1970,,30-Jan-70,,1/30/1970,,20775-bb70318773-0-2.tgz,document-source,VOLUME9_ISSUE4_JANUARY30_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 9, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb63151432,Object,20775-bb63151432-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/21/1997,,21-Apr-97,,4/21/1997,,20775-bb63151432-0-2.tgz,document-source,VOLUME91_ISSUE7_MONDAYAPRIL21_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 91, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb82946834,Object,20775-bb82946834-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,2/28/1980,,28-Feb-80,,2/28/1980,,20775-bb82946834-0-2.tgz,document-source,VOLUME39_ISSUE38_THURSDAYFEBRUARY28_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 38",, +http://library.ucsd.edu/ark:/20775/bb6792961r,Object,20775-bb6792961r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,11/3/1986,,3-Nov-86,,11/3/1986,,,,VOLUME58_ISSUE12_MONDAYNOVEMBER3_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb2253671t,Object,20775-bb2253671t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,12/2/1993,,2-Dec-93,,12/2/1993,,20775-bb2253671t-0-2.tgz,document-source,VOLUME80_ISSUE20_THURSDAYDECEMBER2_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 80, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb6281016c,Object,20775-bb6281016c-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,4/9/1979,,9-Apr-79,,4/9/1979,,20775-bb6281016c-0-2.tgz,document-source,VOLUME37_ISSUE4_MONDAYAPRIL9_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 37, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb3857783t,Object,20775-bb3857783t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/25/1982,,25-Oct-82,,10/25/1982,,20775-bb3857783t-0-2.tgz,document-source,VOLUME47_ISSUE10_MONDAYOCTOBER25_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb6895350n,Object,20775-bb6895350n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,12/3/1987,,3-Dec-87,,12/3/1987,,20775-bb6895350n-0-2.tgz,document-source,VOLUME59_ISSUE20_THURSDAYDECEMBER3_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 59, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb7236649j,Object,20775-bb7236649j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,4/10/1986,,10-Apr-86,,4/10/1986,,,,VOLUME58_ISSUE4_THURSDAYAPRIL10_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb1809979n,Object,20775-bb1809979n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,5/16/2005,,16-May-05,,5/16/2005,,20775-bb1809979n-0-2.tgz,document-source,VOLUME115_ISSUE15_MONDAYMAY16_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 115, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb37895177,Object,20775-bb37895177-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,2/20/1976,,20-Feb-76,,2/20/1976,,20775-bb37895177-0-2.tgz,document-source,VOLUME27_ISSUE20_FRIDAYFEBRUARY20_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb1332285f,Object,20775-bb1332285f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/27/2011,,27-Jan-11,,1/27/2011,,,,01_27_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb7543816m,Object,20775-bb7543816m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/16/1998,,16-Apr-98,,4/16/1998,,20775-bb7543816m-0-2.tgz,document-source,VOLUME94_ISSUE6_THURSDAYAPRIL16_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 94, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb3277695k,Object,20775-bb3277695k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/29/2011,,29-Sep-11,,9/29/2011,,,,09_29_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb10591246,Object,20775-bb10591246-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,11/16/1995,,16-Nov-95,,11/16/1995,,20775-bb10591246-0-2.tgz,document-source,VOLUME86_ISSUE17_THURSDAYNOVEMBER16_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 86, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb0717823k,Object,20775-bb0717823k-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/25/1976,,25-Oct-76,,10/25/1976,,20775-bb0717823k-0-2.tgz,document-source,VOLUME29_ISSUE14_MONDAYOCTOBER25_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 29, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb0205874k,Object,20775-bb0205874k-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Triton Times,Guardian,UCSD Guardian,,,,,,,,,,,,,3/10/1980,,10-Mar-80,,3/10/1980,,20775-bb0205874k-0-2.tgz,document-source,VOLUME39_ISSUE45_MONDAYMARCH10_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 45",, +http://library.ucsd.edu/ark:/20775/bb02400000,Object,20775-bb02400000-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,10/28/1977,,28-Oct-77,,10/28/1977,,20775-bb02400000-0-2.tgz,document-source,VOLUME32_ISSUE16_FRIDAYOCTOBER28_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 32, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb12640258,Object,20775-bb12640258-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/10/2008,,10-Mar-08,,3/10/2008,,,,03_10_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb7031876k,Object,20775-bb7031876k-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,1/23/1973,,23-Jan-73,,1/23/1973,,20775-bb7031876k-0-2.tgz,document-source,VOLUME18_ISSUE5_TUESDAYJANUARY23_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 18, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb7646213z,Object,20775-bb7646213z-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/9/1980,,9-Oct-80,,10/9/1980,,20775-bb7646213z-0-2.tgz,document-source,VOLUME41_ISSUE15_THURSDAYOCTOBER9_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb8124029n,Object,20775-bb8124029n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,9/21/2004,,21-Sep-04,,9/21/2004,,20775-bb8124029n-0-2.tgz,document-source,VOLUME113_ISSUE1_TUESDAYSEPTEMBER21_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 113, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb6281015v,Object,20775-bb6281015v-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,10/18/1974,,18-Oct-74,,10/18/1974,,20775-bb6281015v-0-2.tgz,document-source,VOLUME23_ISSUE12_FRIDAYOCTOBER18_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 23, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb4028433w,Object,20775-bb4028433w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/26/1995,,26-Oct-95,,10/26/1995,,20775-bb4028433w-0-2.tgz,document-source,VOLUME86_ISSUE11_THURSDAYOCTOBER26_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 86, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb78168644,Object,20775-bb78168644-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,11/5/1992,,5-Nov-92,,11/5/1992,,20775-bb78168644-0-2.tgz,document-source,VOLUME77_ISSUE13_THURSDAYNOVEMBER5_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 77, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb83970700,Object,20775-bb83970700-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/17/2004,,17-Feb-04,,2/17/2004,,20775-bb83970700-0-2.tgz,document-source,VOLUME111_ISSUE13_TUESDAYFEBRUARY17_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 111, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb68953536,Object,20775-bb68953536-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/14/1992,,14-May-92,,5/14/1992,,20775-bb68953536-0-2.tgz,document-source,VOLUME76_ISSUE14_THURSDAYMAY14_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 76, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb0274127t,Object,20775-bb0274127t-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/20/1969,,20-Feb-69,,2/20/1969,,20775-bb0274127t-0-2.tgz,document-source,VOLUME9_ISSUE7_FEBRUARY20_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 9, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb4028434d,Object,20775-bb4028434d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,3/9/1995,,9-Mar-95,,3/9/1995,,20775-bb4028434d-0-2.tgz,document-source,VOLUME84_ISSUE18_THURSDAYMARCH9_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 84, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb8021764j,Object,20775-bb8021764j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/23/2008,,23-Oct-08,,10/23/2008,,,,10_23_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb6315140h,Object,20775-bb6315140h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/23/1996,,23-May-96,,5/23/1996,,20775-bb6315140h-0-2.tgz,document-source,VOLUME88_ISSUE16_THURSDAYMAY23_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 88, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb5086585j,Object,20775-bb5086585j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/27/2008,,27-Oct-08,,10/27/2008,,,,10_27_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb7646214g,Object,20775-bb7646214g-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/3/1980,,3-Apr-80,,4/3/1980,,20775-bb7646214g-0-2.tgz,document-source,VOLUME40_ISSUE4_THURSDAYAPRIL3_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb2936395d,Object,20775-bb2936395d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/8/2010,,8-Nov-10,,11/8/2010,,,,11_08_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb8294680k,Object,20775-bb8294680k-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,2/9/1968,,9-Feb-68,,2/9/1968,,20775-bb8294680k-0-2.tgz,document-source,VOLUME3_ISSUE3_FEBRUARY9_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 3, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb7782858c,Object,20775-bb7782858c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/27/2010,,27-May-10,,5/27/2010,,,,05_27_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 58",, +http://library.ucsd.edu/ark:/20775/bb75438195,Object,20775-bb75438195-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,9/29/1972,,29-Sep-72,,9/29/1972,,20775-bb75438195-0-2.tgz,document-source,VOLUME17_ISSUE2_SEPTEMBER29_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 17, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb81922898,Object,20775-bb81922898-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/9/1990,,9-Apr-90,,4/9/1990,,20775-bb81922898-0-2.tgz,document-source,VOLUME70_ISSUE3_MONDAYAPRIL9_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 70, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb0274128b,Object,20775-bb0274128b-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,3/31/2003,,31-Mar-03,,3/31/2003,,20775-bb0274128b-0-2.tgz,document-source,VOLUME109_ISSUE1_MONDAYMARCH31_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 109, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb48134205,Object,20775-bb48134205-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/30/1975,,30-Apr-75,,4/30/1975,,20775-bb48134205-0-2.tgz,document-source,VOLUME25_ISSUE14_WEDNESDAYAPRIL30_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 25, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb02058711,Object,20775-bb02058711-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,10/21/1974,,21-Oct-74,,10/21/1974,,20775-bb02058711-0-2.tgz,document-source,VOLUME23_ISSUE13_MONDAYOCTOBER21_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 23, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb9045545x,Object,20775-bb9045545x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,5/12/2005,,12-May-05,,5/12/2005,,20775-bb9045545x-0-2.tgz,document-source,VOLUME115_ISSUE14_THURSDAYMAY12_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 115, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb1912368s,Object,20775-bb1912368s-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,10/4/1974,,4-Oct-74,,10/4/1974,,20775-bb1912368s-0-2.tgz,document-source,VOLUME23_ISSUE6_FRIDAYOCTOBER4_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 23, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb2936396x,Object,20775-bb2936396x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/24/2011,,24-Feb-11,,2/24/2011,,,,02_24_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 36",, +http://library.ucsd.edu/ark:/20775/bb23219324,Object,20775-bb23219324-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,3/13/1978,,13-Mar-78,,3/13/1978,,20775-bb23219324-0-2.tgz,document-source,VOLUME33_ISSUE27_MONDAYMARCH13_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 33, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb07178201,Object,20775-bb07178201-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,2/28/1972,,28-Feb-72,,2/28/1972,,20775-bb07178201-0-2.tgz,document-source,VOLUME15_ISSUE17_TUESDAYFEBRUARY28_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 15, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb92844547,Object,20775-bb92844547-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/26/1990,,26-Apr-90,,4/26/1990,,20775-bb92844547-0-2.tgz,document-source,VOLUME70_ISSUE8_THURSDAYAPRIL26_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 70, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb7304906s,Object,20775-bb7304906s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/30/2002,,30-May-02,,5/30/2002,,20775-bb7304906s-0-2.tgz,document-source,VOLUME106_ISSUE18_THURSDAYMAY30_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 106, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb67929607,Object,20775-bb67929607-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/7/1985,,7-Feb-85,,2/7/1985,,20775-bb67929607-0-2.tgz,document-source,VOLUME54_ISSUE10_THURSDAYFEBRUARY7_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 54, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb5905579s,Object,20775-bb5905579s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,10/23/2003,,23-Oct-03,,10/23/2003,,20775-bb5905579s-0-2.tgz,document-source,VOLUME110_ISSUE9_THURSDAYOCTOBER23_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 110, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb3891914w,Object,20775-bb3891914w-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,4/26/1999,,26-Apr-99,,4/26/1999,,20775-bb3891914w-0-2.tgz,document-source,VOLUME97_ISSUE9_MONDAYAPRIL26_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 97, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb8260553f,Object,20775-bb8260553f-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,9/28/1971,,28-Sep-71,,9/28/1971,,20775-bb8260553f-0-2.tgz,document-source,VOLUME14_ISSUE1_TUESDAYSEPTEMBER28_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 14, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb18783644,Object,20775-bb18783644-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/3/2008,,3-Mar-08,,3/3/2008,,,,03_03_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb7816861k,Object,20775-bb7816861k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/8/2001,,8-Jan-01,,1/8/2001,,20775-bb7816861k-0-2.tgz,document-source,VOLUME102_ISSUE1_MONDAYJANUARY8_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 102, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb32776942,Object,20775-bb32776942-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/12/2010,,12-Apr-10,,4/12/2010,,,,04_12_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 45",, +http://library.ucsd.edu/ark:/20775/bb39944257,Object,20775-bb39944257-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/12/2009,,12-Oct-09,,10/12/2009,,,,10_12_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb1263902c,Object,20775-bb1263902c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/22/2001,,22-Jan-01,,1/22/2001,,20775-bb1263902c-0-2.tgz,document-source,VOLUME102_ISSUE5_MONDAYJANUARY22_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 102, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb9557489d,Object,20775-bb9557489d-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,10/23/1970,,23-Oct-70,,10/23/1970,,20775-bb9557489d-0-2.tgz,document-source,VOLUME11_ISSUE8_FRIDAYOCTOBER23_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 11, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb3209317k,Object,20775-bb3209317k-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,10/19/1979,,19-Oct-79,,10/19/1979,,20775-bb3209317k-0-2.tgz,document-source,VOLUME38_ISSUE21_FRIDAYOCTOBER19_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb3857905w,Object,20775-bb3857905w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/22/2007,,22-Oct-07,,10/22/2007,,,,10_22_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb63151411,Object,20775-bb63151411-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/31/2000,,31-Jan-00,,1/31/2000,,20775-bb63151411-0-2.tgz,document-source,VOLUME99_ISSUE7_MONDAYJANUARY31_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 99, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb6929483f,Object,20775-bb6929483f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/5/1987,,5-Oct-87,,10/5/1987,,20775-bb6929483f-0-2.tgz,document-source,VOLUME59_ISSUE4_MONDAYOCTOBER5_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 59, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb4472247b,Object,20775-bb4472247b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/31/2008,,31-Mar-08,,3/31/2008,,,,03_31_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb7782730t,Object,20775-bb7782730t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,11/7/2002,,7-Nov-02,,11/7/2002,,20775-bb7782730t-0-2.tgz,document-source,VOLUME107_ISSUE13_THURSDAYNOVEMBER7_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 107, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb6281014b,Object,20775-bb6281014b-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,1/31/1975,,31-Jan-75,,1/31/1975,,20775-bb6281014b-0-2.tgz,document-source,VOLUME24_ISSUE12_FRIDAYJANUARY31_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 24, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb9557488w,Object,20775-bb9557488w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/3/1983,,3-Jan-83,,1/3/1983,,20775-bb9557488w-0-2.tgz,document-source,VOLUME48_ISSUE1_MONDAYJANUARY3_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb02741269,Object,20775-bb02741269-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,11/1/1974,,1-Nov-74,,11/1/1974,,20775-bb02741269-0-2.tgz,document-source,VOLUME23_ISSUE18_FRIDAYNOVEMBER1_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 23, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb8192288r,Object,20775-bb8192288r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,11/7/1991,,7-Nov-91,,11/7/1991,,20775-bb8192288r-0-2.tgz,document-source,VOLUME74_ISSUE13_THURSDAYNOVEMBER7_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 74, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb82946855,Object,20775-bb82946855-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,2/5/2001,,5-Feb-01,,2/5/2001,,20775-bb82946855-0-2.tgz,document-source,VOLUME102_ISSUE9_MONDAYFEBRUARY5_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 102, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb6895352p,Object,20775-bb6895352p-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,6/4/1974,,4-Jun-74,,6/4/1974,,20775-bb6895352p-0-2.tgz,document-source,VOLUME22_ISSUE19_TUESDAYJUNE4_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 22, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb2321931m,Object,20775-bb2321931m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/16/1991,,16-May-91,,5/16/1991,,20775-bb2321931m-0-2.tgz,document-source,VOLUME73_ISSUE14_THURSDAYMAY16_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 73, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb45745119,Object,20775-bb45745119-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,4/29/1993,,29-Apr-93,,4/29/1993,,20775-bb45745119-0-2.tgz,document-source,VOLUME79_ISSUE10_THURSDAYAPRIL29_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 79, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb8328814h,Object,20775-bb8328814h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,11/5/1987,,5-Nov-87,,11/5/1987,,20775-bb8328814h-0-2.tgz,document-source,VOLUME59_ISSUE13_THURSDAYNOVEMBER5_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 59, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb3857785v,Object,20775-bb3857785v-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,3/3/1988,,3-Mar-88,,3/3/1988,,20775-bb3857785v-0-2.tgz,document-source,VOLUME60_ISSUE38_THURSDAYMARCH3_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 60, Issue 38",, +http://library.ucsd.edu/ark:/20775/bb2185408s,Object,20775-bb2185408s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,11/16/1992,,16-Nov-92,,11/16/1992,,20775-bb2185408s-0-2.tgz,document-source,VOLUME77_ISSUE16_MONDAYNOVEMBER16_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 77, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb3073279j,Object,2014-01-09.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/9/2014,,9-Jan-14,,1/9/2014,,,,2014-01-09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 22",,Newspaper +http://library.ucsd.edu/ark:/20775/bb2151286x,Object,20775-bb2151286x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,10/25/1984,,18-Oct-84,,10/25/1984,,20775-bb2151286x-0-2.tgz,document-source,VOLUME53_ISSUE12_THURSDAYOCTOBER25_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 53, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb4096688m,Object,20775-bb4096688m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,3/9/2000,,9-Mar-00,,3/9/2000,,20775-bb4096688m-0-2.tgz,document-source,VOLUME99_ISSUE18_THURSDAYMARCH9_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 99, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb9284453q,Object,20775-bb9284453q-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,6/3/1977,,3-Jun-77,,6/3/1977,,20775-bb9284453q-0-2.tgz,document-source,VOLUME31_ISSUE26_FRIDAYJUNE3_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 31, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb78168623,Object,20775-bb78168623-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,UCSD Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/30/1978,,30-Oct-78,,10/30/1978,,20775-bb78168623-0-2.tgz,document-source,VOLUME35_ISSUE17_MONDAYOCTOBER30_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 35, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb73049079,Object,20775-bb73049079-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/23/1992,,23-Jan-92,,1/23/1992,,20775-bb73049079-0-2.tgz,document-source,VOLUME75_ISSUE6_THURSDAYJANUARY23_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 75, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb30045365,Object,20775-bb30045365-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,3/1/1993,,1-Mar-93,,3/1/1993,,20775-bb30045365-0-2.tgz,document-source,VOLUME78_ISSUE17_MONDAYMARCH1_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 78, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb16051985,Object,20775-bb16051985-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,3/5/1984,,5-Mar-84,,3/5/1984,,20775-bb16051985-0-2.tgz,document-source,VOLUME51_ISSUE17_MONDAYMARCH5_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 51, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb0581304c,Object,20775-bb0581304c-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,11/10/1978,,10-Nov-78,,11/10/1978,,20775-bb0581304c-0-2.tgz,document-source,VOLUME35_ISSUE22_FRIDAYNOVEMBER10_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 35, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb6281013t,Object,20775-bb6281013t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/16/2000,,16-Nov-00,,11/16/2000,,20775-bb6281013t-0-2.tgz,document-source,VOLUME101_ISSUE17_THURSDAYNOVEMBER16_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 101, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb1741722k,Object,20775-bb1741722k-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,5/11/1977,,11-May-77,,5/11/1977,,20775-bb1741722k-0-2.tgz,document-source,VOLUME31_ISSUE17_WEDNESDAYMAY11_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 31, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb0581303v,Object,20775-bb0581303v-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,1/31/1979,,31-Jan-79,,1/31/1979,,20775-bb0581303v-0-2.tgz,document-source,VOLUME36_ISSUE11_WEDNESDAYJANUARY31_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 36, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb10591225,Object,20775-bb10591225-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/22/1996,,22-Jan-96,,1/22/1996,,20775-bb10591225-0-2.tgz,document-source,VOLUME87_ISSUE5_MONDAYJANUARY22_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 87, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb6929482x,Object,20775-bb6929482x-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/22/1988,,22-Feb-88,,2/22/1988,,20775-bb6929482x-0-2.tgz,document-source,VOLUME60_ISSUE35_MONDAYFEBRUARY22_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 60, Issue 35",, +http://library.ucsd.edu/ark:/20775/bb83288151,Object,20775-bb83288151-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/23/1986,,23-Jan-86,,1/23/1986,,20775-bb83288151-0-2.tgz,document-source,VOLUME57_ISSUE6_THURSDAYJANUARY23_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 57, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb2663357c,Object,20775-bb2663357c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/22/2010,,22-Apr-10,,4/22/2010,,,,04_22_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 48",, +http://library.ucsd.edu/ark:/20775/bb48134226,Object,20775-bb48134226-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,6/5/2000,,5-Jun-00,,6/5/2000,,20775-bb48134226-0-2.tgz,document-source,VOLUME100_ISSUE19_MONDAYJUNE5_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 100, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb21854099,Object,20775-bb21854099-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,3/10/1976,,10-Mar-76,,3/10/1976,,20775-bb21854099-0-2.tgz,document-source,VOLUME27_ISSUE28_WEDNESDAYMARCH10_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb4199079j,Object,20775-bb4199079j-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,10/4/1976,,4-Oct-76,,10/4/1976,,20775-bb4199079j-0-2.tgz,document-source,VOLUME29_ISSUE5_MONDAYOCTOBER4_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 29, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb8294682m,Object,20775-bb8294682m-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,1/21/1977,,21-Jan-77,,1/21/1977,,20775-bb8294682m-0-2.tgz,document-source,VOLUME30_ISSUE6_FRIDAYJANUARY21_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 30, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb9045546f,Object,20775-bb9045546f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,3/30/1992,,30-Mar-92,,3/30/1992,,20775-bb9045546f-0-2.tgz,document-source,VOLUME76_ISSUE1_MONDAYMARCH30_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 76, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb0342555d,Object,20775-bb0342555d-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,5/31/2012,,31-May-12,,5/31/2012,,,,2012-05-31.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 58",, +http://library.ucsd.edu/ark:/20775/bb19123699,Object,20775-bb19123699-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/16/1977,,16-Nov-77,,11/16/1977,,20775-bb19123699-0-2.tgz,document-source,VOLUME32_ISSUE24_WEDNESDAYNOVEMBER16_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 32, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb1263901v,Object,20775-bb1263901v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/17/2006,,17-Apr-06,,4/17/2006,,20775-bb1263901v-0-2.tgz,document-source,MONDAYAPRIL17_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 118, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb3004535n,Object,20775-bb3004535n-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,9/30/1980,,30-Sep-80,,9/30/1980,,20775-bb3004535n-0-2.tgz,document-source,VOLUME41_ISSUE8_SEPTEMBER30_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb8260552x,Object,20775-bb8260552x-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/7/1980,,7-May-80,,5/7/1980,,20775-bb8260552x-0-2.tgz,document-source,VOLUME40_ISSUE28_WEDNESDAYMAY7_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb1468684p,Object,20775-bb1468684p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,10/23/1989,,23-Oct-89,,10/23/1989,,20775-bb1468684p-0-2.tgz,document-source,VOLUME68_ISSUE10_MONDAYOCTOBER23_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 68, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb58033147,Object,20775-bb58033147-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/8/2007,,8-Oct-07,,10/8/2007,,,,10_08_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb17417233,Object,20775-bb17417233-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/8/1982,,8-Apr-82,,4/8/1982,,20775-bb17417233-0-2.tgz,document-source,VOLUME46_ISSUE4_THURSDAYAPRIL8_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb5905577r,Object,20775-bb5905577r-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,3/13/1995,,13-Mar-95,,3/13/1995,,20775-bb5905577r-0-2.tgz,document-source,VOLUME84_ISSUE19_MONDAYMARCH13_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 84, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb07178222,Object,20775-bb07178222-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,11/10/2003,,10-Nov-03,,11/10/2003,,20775-bb07178222-0-2.tgz,document-source,VOLUME110_ISSUE13_MONDAYNOVEMBER10_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 110, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb92844526,Object,20775-bb92844526-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/12/1987,,12-Oct-87,,10/12/1987,,20775-bb92844526-0-2.tgz,document-source,VOLUME59_ISSUE6_MONDAYOCTOBER12_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 59, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb3448223b,Object,20775-bb3448223b-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/18/1980,,18-Jan-80,,1/18/1980,,20775-bb3448223b-0-2.tgz,document-source,VOLUME39_ISSUE10_FRIDAYJANUARY18_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb9045543w,Object,20775-bb9045543w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,11/1/1984,,1-Nov-84,,11/1/1984,,20775-bb9045543w-0-2.tgz,document-source,VOLUME53_ISSUE14_THURSDAYNOVEMBER1_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 53, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb9864663d,Object,20775-bb9864663d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/21/1985,,21-Oct-85,,10/21/1985,,20775-bb9864663d-0-2.tgz,document-source,VOLUME56_ISSUE8_MONDAYOCTOBER21_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 56, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb23219303,Object,20775-bb23219303-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/28/1980,,28-Oct-80,,10/28/1980,,20775-bb23219303-0-2.tgz,document-source,VOLUME41_ISSUE28_TUESDAYOCTOBER28_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb14345493,Object,20775-bb14345493-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,5/30/1975,,30-May-75,,5/30/1975,,20775-bb14345493-0-2.tgz,document-source,VOLUME25_ISSUE26_FRIDAYMAY30_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 25, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb02058732,Object,20775-bb02058732-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/25/1975,,25-Apr-75,,4/25/1975,,20775-bb02058732-0-2.tgz,document-source,VOLUME25_ISSUE12_FRIDAYAPRIL25_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 25, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb9489715x,Object,2012-10-08.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/8/2012,,8-Oct-12,,10/8/2012,,,,2012-10-08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 4",,Newspaper +http://library.ucsd.edu/ark:/20775/bb7509690f,Object,20775-bb7509690f-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/30/1977,,30-Nov-77,,11/30/1977,,20775-bb7509690f-0-2.tgz,document-source,VOLUME32_ISSUE29_WEDNESDAYNOVEMBER30_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb40966894,Object,20775-bb40966894-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/3/1994,,3-Oct-94,,10/3/1994,,20775-bb40966894-0-2.tgz,document-source,VOLUME83_ISSUE4_MONDAYOCTOBER3_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 83, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb1263904d,Object,20775-bb1263904d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,11/19/1990,,19-Nov-90,,11/19/1990,,20775-bb1263904d-0-2.tgz,document-source,VOLUME71_ISSUE24_MONDAYNOVEMBER19_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 71, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb9557487c,Object,20775-bb9557487c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,6/8/1989,,8-Jun-89,,6/8/1989,,20775-bb9557487c-0-2.tgz,document-source,VOLUME67_ISSUE20_THURSDAYJUNE8_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 67, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb3209315j,Object,20775-bb3209315j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,2/28/2002,,28-Feb-02,,2/28/2002,,20775-bb3209315j-0-2.tgz,document-source,VOLUME105_ISSUE16_THURSDAYFEBRUARY28_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 105, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb3106919q,Object,20775-bb3106919q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,9/25/2006,,25-Sep-06,,9/25/2006,,20775-bb3106919q-0-2.tgz,document-source,MONDAYSEPTEMBER25_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 119, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb3755516x,Object,20775-bb3755516x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/2/2009,,2-Nov-09,,11/2/2009,,,,11_02_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb1946498g,Object,20775-bb1946498g-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,4/16/1971,,16-Apr-71,,4/16/1971,,20775-bb1946498g-0-2.tgz,document-source,VOLUME13_ISSUE6_FRIDAYAPRIL16_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 13, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb3891912v,Object,20775-bb3891912v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,11/9/1998,,9-Nov-98,,11/9/1998,,20775-bb3891912v-0-2.tgz,document-source,VOLUME95_ISSUE14_MONDAYNOVEMBER9_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 95, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb3448222t,Object,20775-bb3448222t-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,4/28/1986,,28-Apr-86,,4/28/1986,,,,VOLUME58_ISSUE9_MONDAYAPRIL28_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb7782732v,Object,20775-bb7782732v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/16/1997,,16-Jan-97,,1/16/1997,,20775-bb7782732v-0-2.tgz,document-source,VOLUME90_ISSUE4_THURSDAYJANUARY16_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 90, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb9864662w,Object,20775-bb9864662w-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,3/6/1978,,6-Mar-78,,3/6/1978,,20775-bb9864662w-0-2.tgz,document-source,VOLUME33_ISSUE24_MONDAYMARCH6_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 33, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb32093162,Object,20775-bb32093162-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,1/16/1996,,16-Jan-96,,1/16/1996,,20775-bb32093162-0-2.tgz,document-source,VOLUME87_ISSUE3_TUESDAYJANUARY16_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 87, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb14686835,Object,20775-bb14686835-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/2/1989,,2-Nov-89,,11/2/1989,,20775-bb14686835-0-2.tgz,document-source,VOLUME68_ISSUE13_THURSDAYNOVEMBER2_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 68, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb6929485g,Object,20775-bb6929485g-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,2/13/1978,,13-Feb-78,,2/13/1978,,20775-bb6929485g-0-2.tgz,document-source,VOLUME33_ISSUE16_MONDAYFEBRUARY13_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 33, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb2185406r,Object,20775-bb2185406r-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,1/26/1973,,26-Jan-73,,1/26/1973,,20775-bb2185406r-0-2.tgz,document-source,VOLUME18_ISSUE6_FRIDAYJANUARY26_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 18, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb1434548k,Object,20775-bb1434548k-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,12/3/1976,,3-Dec-76,,12/3/1976,,20775-bb1434548k-0-2.tgz,document-source,VOLUME29_ISSUE30_FRIDAYDECEMBER3_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 29, Issue 30",, +http://library.ucsd.edu/ark:/20775/bb4813421p,Object,20775-bb4813421p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,1/24/1994,,24-Jan-94,,1/24/1994,,20775-bb4813421p-0-2.tgz,document-source,VOLUME81_ISSUE7_MONDAYJANUARY24_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 81, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb30045344,Object,20775-bb30045344-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/23/1976,,23-Jan-76,,1/23/1976,,20775-bb30045344-0-2.tgz,document-source,VOLUME27_ISSUE9_FRIDAYJANUARY23_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 27, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb0581302b,Object,20775-bb0581302b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/19/1999,,19-Jan-99,,1/19/1999,,20775-bb0581302b-0-2.tgz,document-source,VOLUME96_ISSUE5_TUESDAYJANUARY19_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 96, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb1741720j,Object,20775-bb1741720j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,1/22/1998,,22-Jan-98,,1/22/1998,,20775-bb1741720j-0-2.tgz,document-source,VOLUME93_ISSUE6_THURSDAYJANUARY22_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 93, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb4096686k,Object,20775-bb4096686k-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,1/17/1989,,17-Jan-89,,1/17/1989,,20775-bb4096686k-0-2.tgz,document-source,VOLUME66_ISSUE4_TUESDAYJANUARY17_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 66, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb6281011s,Object,20775-bb6281011s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/20/1995,,20-Nov-95,,11/20/1995,,20775-bb6281011s-0-2.tgz,document-source,VOLUME86_ISSUE18_MONDAYNOVEMBER20_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 86, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb73049058,Object,20775-bb73049058-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,2/22/2005,,22-Feb-05,,2/22/2005,,20775-bb73049058-0-2.tgz,document-source,VOLUME114_ISSUE15_TUESDAYFEBRUARY22_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 114, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb78168602,Object,20775-bb78168602-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,11/14/1994,,14-Nov-94,,11/14/1994,,20775-bb78168602-0-2.tgz,document-source,VOLUME83_ISSUE16_MONDAYNOVEMBER14_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 83, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb19464990,Object,20775-bb19464990-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,2/16/1982,,16-Feb-82,,2/16/1982,,20775-bb19464990-0-2.tgz,document-source,VOLUME45_ISSUE13_TUESDAYFEBRUARY16_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb59055788,Object,20775-bb59055788-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/29/1990,,29-Oct-90,,10/29/1990,,20775-bb59055788-0-2.tgz,document-source,VOLUME71_ISSUE15_MONDAYOCTOBER29_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 71, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb7782731b,Object,20775-bb7782731b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,1/6/2003,,6-Jan-03,,1/6/2003,,20775-bb7782731b-0-2.tgz,document-source,VOLUME108_ISSUE1_MONDAYJANUARY6_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 108, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb9284451p,Object,20775-bb9284451p-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,1/25/1972,,25-Jan-72,,1/25/1972,,20775-bb9284451p-0-2.tgz,document-source,VOLUME15_ISSUE7_TUESDAYJANUARY25_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 15, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb8772499z,Object,20775-bb8772499z-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,2/18/1999,,18-Feb-99,,2/18/1999,,20775-bb8772499z-0-2.tgz,document-source,VOLUME96_ISSUE14_THURSDAYFEBRUARY18_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 96, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb6929484z,Object,20775-bb6929484z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/18/1993,,18-Feb-93,,2/18/1993,,20775-bb6929484z-0-2.tgz,document-source,VOLUME78_ISSUE14_TUESDAYFEBRUARY18_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 78, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb10591204,Object,20775-bb10591204-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,10/15/1971,,15-Oct-71,,10/15/1971,,20775-bb10591204-0-2.tgz,document-source,VOLUME14_ISSUE6_OCTOBER15_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 14, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb1980633x,Object,20775-bb1980633x-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,2/16/1973,,16-Feb-73,,2/16/1973,,20775-bb1980633x-0-2.tgz,document-source,VOLUME18_ISSUE12_FRIDAYFEBRUARY16_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 18, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb0581301t,Object,20775-bb0581301t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,1/31/1983,,31-Jan-83,,1/31/1983,,20775-bb0581301t-0-2.tgz,document-source,VOLUME48_ISSUE9_MONDAYJANUARY31_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 48, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb0205870h,Object,20775-bb0205870h-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,10/16/1970,,16-Oct-70,,10/16/1970,,20775-bb0205870h-0-2.tgz,document-source,VOLUME11_ISSUE6_FRIDAYOCTOBER16_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 11, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb49840706,Object,20775-bb49840706-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,10/13/1983,,13-Oct-83,,10/13/1983,,20775-bb49840706-0-2.tgz,document-source,VOLUME50_ISSUE7_THURSDAYOCTOBER13_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 50, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb21854078,Object,20775-bb21854078-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,11/10/1967,,10-Nov-67,,11/10/1967,,20775-bb21854078-0-2.tgz,document-source,VOLUME2_ISSUE4_NOVEMBER10_1967.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 2, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb48134247,Object,20775-bb48134247-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,2/4/1976,,4-Feb-76,,2/4/1976,,20775-bb48134247-0-2.tgz,document-source,VOLUME27_ISSUE14_WEDNESDAYFEBRUARY4_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb2219539j,Object,20775-bb2219539j-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/25/1971,,25-May-71,,5/25/1971,,20775-bb2219539j-0-2.tgz,document-source,VOLUME13_ISSUE17_TUESDAYMAY25_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 13, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb8294684n,Object,20775-bb8294684n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/13/1992,,13-Feb-92,,2/13/1992,,20775-bb8294684n-0-2.tgz,document-source,VOLUME75_ISSUE12_THURSDAYFEBRUARY13_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 75, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb9045544d,Object,20775-bb9045544d-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,Triton Times,The Guardian,UCSD Guardian,,,,,,,,,,,,,2/22/1980,,22-Feb-80,,2/22/1980,,20775-bb9045544d-0-2.tgz,document-source,VOLUME39_ISSUE34_FRIDAYFEBRUARY22_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 34",, +http://library.ucsd.edu/ark:/20775/bb22536709,Object,20775-bb22536709-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,10/12/1973,,12-Oct-73,,10/12/1973,,20775-bb22536709-0-2.tgz,document-source,VOLUME20_ISSUE6_FRIDAYOCTOBER12_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 20, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb9080154j,Object,2013-09-30.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/30/2013,,30-Sep-13,,9/30/2013,,,,2013-09-30.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 2",,Newspaper +http://library.ucsd.edu/ark:/20775/bb3243566d,Object,20775-bb3243566d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/29/2007,,29-Oct-07,,10/29/2007,,,,10_29_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb3891913c,Object,20775-bb3891913c-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,6/1/1995,,1-Jun-95,,6/1/1995,,20775-bb3891913c-0-2.tgz,document-source,VOLUME85_ISSUE18_THURSDAYJUNE1_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 85, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb4028430b,Object,20775-bb4028430b-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/18/1991,,18-Nov-91,,11/18/1991,,20775-bb4028430b-0-2.tgz,document-source,VOLUME74_ISSUE16_MONDAYNOVEMBER18_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 74, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb75784381,Object,2014-02-24.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/24/2014,,24-Feb-14,,2/24/2014,,,,2014-02-24.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 35",,Newspaper +http://library.ucsd.edu/ark:/20775/bb62810129,Object,20775-bb62810129-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/30/1970,,30-Oct-70,,10/30/1970,,20775-bb62810129-0-2.tgz,document-source,VOLUME11_ISSUE10_FRIDAYOCTOBER30_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 11, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb1980634f,Object,20775-bb1980634f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,2/28/2005,,28-Feb-05,,2/28/2005,,20775-bb1980634f-0-2.tgz,document-source,VOLUME114_ISSUE17_MONDAYFEBRUARY28_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 114, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb1468682n,Object,20775-bb1468682n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,10/17/2005,,17-Oct-05,,10/17/2005,,20775-bb1468682n-0-2.tgz,document-source,VOLUME116_ISSUE8_MONDAYOCTOBER17_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 116, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb17417212,Object,20775-bb17417212-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/6/1999,,6-May-99,,5/6/1999,,20775-bb17417212-0-2.tgz,document-source,VOLUME97_ISSUE12_THURSDAYMAY6_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 97, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb4574510s,Object,20775-bb4574510s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,3/8/1982,,8-Mar-82,,3/8/1982,,20775-bb4574510s-0-2.tgz,document-source,VOLUME45_ISSUE19_MONDAYMARCH8_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb72366481,Object,20775-bb72366481-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,9/29/2005,,29-Sep-05,,9/29/2005,,20775-bb72366481-0-2.tgz,document-source,VOLUME116_ISSUE3_THURSDAYSEPTEMBER29_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 116, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb1946497z,Object,20775-bb1946497z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,11/27/2006,,27-Nov-06,,11/27/2006,,20775-bb1946497z-0-2.tgz,document-source,MONDAYNOVEMBER27_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 119, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb19123678,Object,20775-bb19123678-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,3/6/1989,,6-Mar-89,,3/6/1989,,20775-bb19123678-0-2.tgz,document-source,VOLUME66_ISSUE18_MONDAYMARCH6_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 66, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb1263903w,Object,20775-bb1263903w-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/30/1974,,30-Oct-74,,10/30/1974,,20775-bb1263903w-0-2.tgz,document-source,VOLUME23_ISSUE17_WEDNESDAYOCTOBER30_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 23, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb69294860,Object,20775-bb69294860-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,9/30/2004,,30-Sep-04,,9/30/2004,,20775-bb69294860-0-2.tgz,document-source,VOLUME113_ISSUE3_THURSDAYSEPTEMBER30_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 113, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb3004533m,Object,20775-bb3004533m-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/8/1979,,8-Nov-79,,11/8/1979,,20775-bb3004533m-0-2.tgz,document-source,VOLUME38_ISSUE35_THURSDAYNOVEMBER8_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 35",, +http://library.ucsd.edu/ark:/20775/bb4233334z,Object,20775-bb4233334z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/19/2010,,19-Jan-10,,1/19/2010,,,,01_19_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb1673457w,Object,20775-bb1673457w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,9/26/1988,,26-Sep-88,,9/26/1988,,20775-bb1673457w-0-2.tgz,document-source,VOLUME65_ISSUE2_MONDAYSEPTEMBER26_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 65, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb1024993f,Object,20775-bb1024993f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,1/16/1986,,16-Jan-86,,1/16/1986,,20775-bb1024993f-0-2.tgz,document-source,VOLUME57_ISSUE4_THURSDAYJANUARY16_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 57, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb1809984j,Object,20775-bb1809984j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/18/1992,,18-Feb-92,,2/18/1992,,20775-bb1809984j-0-2.tgz,document-source,VOLUME75_ISSUE13_TUESDAYFEBRUARY18_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 75, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb47111566,Object,20775-bb47111566-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/1/2009,,1-Oct-09,,10/1/2009,,,,10_01_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb33117016,Object,20775-bb33117016-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/17/1974,,17-May-74,,5/17/1974,,20775-bb33117016-0-2.tgz,document-source,VOLUME22_ISSUE14_MAY17_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 22, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb0444780b,Object,20775-bb0444780b-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,Triton Times,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,11/3/1978,,3-Nov-78,,11/3/1978,,20775-bb0444780b-0-2.tgz,document-source,VOLUME35_ISSUE19_FRIDAYNOVEMBER3_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 35, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb4199075g,Object,20775-bb4199075g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,6/3/2004,,3-Jun-04,,6/3/2004,,20775-bb4199075g-0-2.tgz,document-source,VOLUME112_ISSUE20_THURSDAYJUNE3_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 112, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb7236652d,Object,20775-bb7236652d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,1/17/1985,,17-Jan-85,,1/17/1985,,20775-bb7236652d-0-2.tgz,document-source,VOLUME54_ISSUE4_THURSDAYJANUARY17_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 54, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb1571069f,Object,20775-bb1571069f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,2/8/1990,,8-Feb-90,,2/8/1990,,20775-bb1571069f-0-2.tgz,document-source,VOLUME69_ISSUE11_THURSDAYFEBRUARY8_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 69, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb4881685c,Object,20775-bb4881685c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/17/1988,,17-Oct-88,,10/17/1988,,20775-bb4881685c-0-2.tgz,document-source,VOLUME65_ISSUE8_MONDAYOCTOBER17_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 65, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb1571068x,Object,20775-bb1571068x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/29/2004,,29-Jan-04,,1/29/2004,,20775-bb1571068x-0-2.tgz,document-source,VOLUME111_ISSUE8_THURSDAYJANUARY29_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 111, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb41990760,Object,20775-bb41990760-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/20/1998,,20-Jan-98,,1/20/1998,,20775-bb41990760-0-2.tgz,document-source,VOLUME93_ISSUE5_TUESDAYJANUARY20_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 93, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb33116997,Object,20775-bb33116997-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,1/22/1980,,22-Jan-80,,1/22/1980,,20775-bb33116997-0-2.tgz,document-source,VOLUME39_ISSUE12_TUESDAYJANUARY22_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb1024992x,Object,20775-bb1024992x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,2/17/1987,,17-Feb-87,,2/17/1987,,,,VOLUME58_ISSUE33_TUESDAYFEBRUARY17_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 33",, +http://library.ucsd.edu/ark:/20775/bb8601848d,Object,20775-bb8601848d-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,2/14/1969,,14-Feb-69,,2/14/1969,,20775-bb8601848d-0-2.tgz,document-source,VOLUME6_ISSUE5_FEBRUARY14_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 6, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb08202116,Object,20775-bb08202116-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/25/1999,,25-Oct-99,,10/25/1999,,20775-bb08202116-0-2.tgz,document-source,VOLUME98_ISSUE8_MONDAYOCTOBER25_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 98, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb1673458d,Object,20775-bb1673458d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/15/2001,,15-Feb-01,,2/15/2001,,20775-bb1673458d-0-2.tgz,document-source,VOLUME102_ISSUE12_THURSDAYFEBRUARY15_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 102, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb3311700p,Object,20775-bb3311700p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,12/5/1991,,5-Dec-91,,12/5/1991,,20775-bb3311700p-0-2.tgz,document-source,VOLUME74_ISSUE20_THURSDAYDECEMBER5_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 74, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb4881684v,Object,20775-bb4881684v-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,4/2/1980,,2-Apr-80,,4/2/1980,,20775-bb4881684v-0-2.tgz,document-source,VOLUME40_ISSUE3_WEDNESDAYAPRIL2_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb6315139p,Object,20775-bb6315139p-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,3/31/1986,,31-Mar-86,,3/31/1986,,,,VOLUME58_ISSUE1_MONDAYMARCH31_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb77828947,Object,20775-bb77828947-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,3/8/2012,,8-Mar-12,,3/8/2012,,,,2012-03-08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 38",, +http://library.ucsd.edu/ark:/20775/bb4233335g,Object,20775-bb4233335g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/23/2011,,23-May-11,,5/23/2011,,,,05_23_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 44, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb7919247m,Object,20775-bb7919247m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,1/28/1993,,28-Jan-93,,1/28/1993,,20775-bb7919247m-0-2.tgz,document-source,VOLUME78_ISSUE8_MONDAYJANUARY28_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 78, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb7782733c,Object,20775-bb7782733c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/25/1999,,25-Feb-99,,2/25/1999,,20775-bb7782733c-0-2.tgz,document-source,VOLUME96_ISSUE16_THURSDAYFEBRUARY25_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 96, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb5940199d,Object,2014-04-10.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/10/2014,,10-Apr-14,,4/10/2014,,,,2014-04-10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 44",,Newspaper +http://library.ucsd.edu/ark:/20775/bb3721256q,Object,20775-bb3721256q-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,11/24/1980,,24-Nov-80,,11/24/1980,,20775-bb3721256q-0-2.tgz,document-source,VOLUME41_ISSUE47_MONDAYNOVEMBER24_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 47",, +http://library.ucsd.edu/ark:/20775/bb9864656g,Object,20775-bb9864656g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,1/13/1997,,13-Jan-97,,1/13/1997,,20775-bb9864656g-0-2.tgz,document-source,VOLUME90_ISSUE3_MONDAYJANUARY13_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 90, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb4130825n,Object,20775-bb4130825n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/5/1988,,5-May-88,,5/5/1988,,20775-bb4130825n-0-2.tgz,document-source,VOLUME64_ISSUE10_THURSDAYMAY5_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 64, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb7236651w,Object,20775-bb7236651w-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/25/1973,,25-May-73,,5/25/1973,,20775-bb7236651w-0-2.tgz,document-source,VOLUME19_ISSUE16_FRIDAYMAY25_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 19, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb5837484v,Object,20775-bb5837484v-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,6/4/2012,,4-Jun-12,,6/4/2012,,,,2012-06-04.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 59",, +http://library.ucsd.edu/ark:/20775/bb8601847w,Object,20775-bb8601847w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/6/1995,,6-Feb-95,,2/6/1995,,20775-bb8601847w-0-2.tgz,document-source,VOLUME84_ISSUE9_MONDAYFEBRUARY6_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 84, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb5700802c,Object,20775-bb5700802c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/27/1994,,27-Jan-94,,1/27/1994,,20775-bb5700802c-0-2.tgz,document-source,VOLUME81_ISSUE8_THURSDAYJANUARY27_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 81, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb0274132q,Object,20775-bb0274132q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,5/21/1990,,21-May-90,,5/21/1990,,20775-bb0274132q-0-2.tgz,document-source,VOLUME70_ISSUE15_MONDAYMAY21_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 70, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb7782734w,Object,20775-bb7782734w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,11/19/1984,,19-Nov-84,,11/19/1984,,20775-bb7782734w-0-2.tgz,document-source,VOLUME53_ISSUE19_MONDAYNOVEMBER19_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 53, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb5700801v,Object,20775-bb5700801v-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,5/23/1994,,23-May-94,,5/23/1994,,20775-bb5700801v-0-2.tgz,document-source,VOLUME82_ISSUE17_MONDAYMAY23_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 82, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb2151282v,Object,20775-bb2151282v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,10/8/1981,,8-Oct-81,,10/8/1981,,20775-bb2151282v-0-2.tgz,document-source,VOLUME44_ISSUE7_THURSDAYOCTOBER8_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 44, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb40966873,Object,20775-bb40966873-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/3/1983,,3-Oct-83,,10/3/1983,,20775-bb40966873-0-2.tgz,document-source,VOLUME50_ISSUE4_MONDAYOCTOBER3_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 50, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb37212577,Object,20775-bb37212577-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/11/1984,,11-Oct-84,,10/11/1984,,20775-bb37212577-0-2.tgz,document-source,VOLUME53_ISSUE8_THURSDAYOCTOBER11_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 53, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb2151283c,Object,20775-bb2151283c-0-1.pdf,document-service,text,,The Guardian,,,,UCSD Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,2/23/1981,,23-Feb-81,,2/23/1981,,20775-bb2151283c-0-2.tgz,document-source,VOLUME42_ISSUE15_MONDAYFEBRUARY23_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb79192484,Object,20775-bb79192484-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,11/1/1968,,1-Nov-68,,11/1/1968,,20775-bb79192484-0-2.tgz,document-source,VOLUME5_ISSUE5_NOVEMBER1_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 5, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb98646591,Object,20775-bb98646591-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/23/1971,,23-Apr-71,,4/23/1971,,20775-bb98646591-0-2.tgz,document-source,VOLUME13_ISSUE8_FRIDAYAPRIL23_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 13, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb9352874c,Object,20775-bb9352874c-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,2/16/2012,,16-Feb-12,,2/16/2012,,,,2012-02-16.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 32",, +http://library.ucsd.edu/ark:/20775/bb98306555,Object,20775-bb98306555-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/23/2009,,23-Feb-09,,2/23/2009,,,,02_23_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb53594967,Object,20775-bb53594967-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/21/1991,,21-Feb-91,,2/21/1991,,20775-bb53594967-0-2.tgz,document-source,VOLUME72_ISSUE14_THURSDAYFEBRUARY21_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 72, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb1809982h,Object,20775-bb1809982h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/19/2004,,19-Apr-04,,4/19/2004,,20775-bb1809982h-0-2.tgz,document-source,VOLUME112_ISSUE7_MONDAYAPRIL19_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 112, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb33117037,Object,20775-bb33117037-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/21/1976,,21-Apr-76,,4/21/1976,,20775-bb33117037-0-2.tgz,document-source,VOLUME28_ISSUE11_WEDNESDAYAPRIL21_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 28, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb63151385,Object,20775-bb63151385-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,9/20/2005,,20-Sep-05,,9/20/2005,,20775-bb63151385-0-2.tgz,document-source,VOLUME116_ISSUE1_TUESDAYSEPTEMBER20_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 116, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb23219345,Object,20775-bb23219345-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Triton Times,UCSD Guardian,Guardian,,,,,,,,,,,,,3/5/1980,,5-Mar-80,,3/5/1980,,20775-bb23219345-0-2.tgz,document-source,VOLUME39_ISSUE42_WEDNESDAYMARCH5_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 42",, +http://library.ucsd.edu/ark:/20775/bb9694009c,Object,20775-bb9694009c-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,1/8/1974,1/8/1974,8-Jan-74,8-Jan-74,1/8/1974,1/8/1974,20775-bb9694009c-0-2.tgz,document-source,VOLUME21_ISSUE1_TUESDAYJANUARY8_1974.pdf,VOLUME21_ISSUE1_TUESDAYJANUARY8_1974.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 21, Issue 1","Volume 21, Issue 1", +http://library.ucsd.edu/ark:/20775/bb4881683b,Object,20775-bb4881683b-0-1.pdf,document-service,text,,The Guardian,,,,Daily Guardian,Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,5/18/1981,,18-May-81,,5/18/1981,,20775-bb4881683b-0-2.tgz,document-source,VOLUME43_ISSUE16_MONDAYMAY18_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb63493935,Object,20775-bb63493935-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/25/2008,,25-Feb-08,,2/25/2008,,,,02_25_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb0444782c,Object,20775-bb0444782c-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,11/16/1973,,16-Nov-73,,11/16/1973,,20775-bb0444782c-0-2.tgz,document-source,VOLUME20_ISSUE16_FRIDAYNOVEMBER16_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 20, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb7236654f,Object,20775-bb7236654f-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/1/1980,,1-Apr-80,,4/1/1980,,20775-bb7236654f-0-2.tgz,document-source,VOLUME40_ISSUE2_TUESDAYAPRIL1_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb4199077h,Object,20775-bb4199077h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,10/20/1988,,20-Oct-88,,10/20/1988,,20775-bb4199077h-0-2.tgz,document-source,VOLUME65_ISSUE9_THURSDAYOCTOBER20_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 65, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb02741337,Object,20775-bb02741337-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,1/26/1968,,26-Jan-68,,1/26/1968,,20775-bb02741337-0-2.tgz,document-source,VOLUME3_ISSUE2_JANUARY26_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 3, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb31069186,Object,20775-bb31069186-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/4/1989,,4-May-89,,5/4/1989,,20775-bb31069186-0-2.tgz,document-source,VOLUME67_ISSUE10_THURSDAYMAY4_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 67, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb08202137,Object,20775-bb08202137-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/19/1993,,19-Apr-93,,4/19/1993,,20775-bb08202137-0-2.tgz,document-source,VOLUME79_ISSUE7_MONDAYAPRIL19_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 79, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb1673456c,Object,20775-bb1673456c-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,4/28/1978,,28-Apr-78,,4/28/1978,,20775-bb1673456c-0-2.tgz,document-source,VOLUME34_ISSUE12_FRIDAYAPRIL28_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 34, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb5359497r,Object,20775-bb5359497r-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,2/25/1977,,25-Feb-77,,2/25/1977,,20775-bb5359497r-0-2.tgz,document-source,VOLUME30_ISSUE20_FRIDAYFEBRUARY25_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 30, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb6929480w,Object,20775-bb6929480w-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/20/1980,,20-Oct-80,,10/20/1980,,20775-bb6929480w-0-2.tgz,document-source,VOLUME41_ISSUE22_MONDAYOCTOBER20_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb1024994z,Object,20775-bb1024994z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,3/30/1998,,30-Mar-98,,3/30/1998,,20775-bb1024994z-0-2.tgz,document-source,VOLUME94_ISSUE1_MONDAYMARCH30_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 94, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb41990781,Object,20775-bb41990781-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,1/10/1975,,10-Jan-75,,1/10/1975,,20775-bb41990781-0-2.tgz,document-source,VOLUME24_ISSUE3_FRIDAYJANUARY10_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 24, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb33116976,Object,20775-bb33116976-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,10/16/1973,,16-Oct-73,,10/16/1973,,20775-bb33116976-0-2.tgz,document-source,VOLUME20_ISSUE7_TUESDAYOCTOBER16_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 20, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb0444781v,Object,20775-bb0444781v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/26/1983,,26-May-83,,5/26/1983,,20775-bb0444781v-0-2.tgz,document-source,VOLUME49_ISSUE16_THURSDAYMAY26_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 49, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb7919249n,Object,20775-bb7919249n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,11/5/1981,,5-Nov-81,,11/5/1981,,20775-bb7919249n-0-2.tgz,document-source,VOLUME44_ISSUE15_THURSDAYNOVEMBER5_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 44, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb7236653x,Object,20775-bb7236653x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/10/1997,,10-Apr-97,,4/10/1997,,20775-bb7236653x-0-2.tgz,document-source,VOLUME91_ISSUE4_THURSDAYAPRIL10_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 91, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb7782735d,Object,20775-bb7782735d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,11/13/2003,,13-Nov-03,,11/13/2003,,20775-bb7782735d-0-2.tgz,document-source,VOLUME110_ISSUE14_THURSDAYNOVEMBER13_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 110, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb1946627g,Object,20775-bb1946627g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/25/2007,,25-Sep-07,,9/25/2007,,,,09_25_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb4881682t,Object,20775-bb4881682t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,6/7/2001,,7-Jun-01,,6/7/2001,,20775-bb4881682t-0-2.tgz,document-source,VOLUME103_ISSUE20_THURSDAYJUNE7_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 103, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb3311702q,Object,20775-bb3311702q-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,Triton Times,The Guardian,UCSD Guardian,,,,,,,,,,,,,11/17/1978,,17-Nov-78,,11/17/1978,,20775-bb3311702q-0-2.tgz,document-source,VOLUME35_ISSUE25_FRIDAYNOVEMBER17_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 35, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb6315137n,Object,20775-bb6315137n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,5/28/1985,,28-May-85,,5/28/1985,,20775-bb6315137n-0-2.tgz,document-source,VOLUME55_ISSUE17_TUESDAYMAY28_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 55, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb1502816t,Object,20775-bb1502816t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,11/26/1990,,26-Nov-90,,11/26/1990,,20775-bb1502816t-0-2.tgz,document-source,VOLUME71_ISSUE25_MONDAYNOVEMBER26_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 71, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb0274130p,Object,20775-bb0274130p-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/6/1987,,6-Apr-87,,4/6/1987,,20775-bb0274130p-0-2.tgz,document-source,VOLUME58_ISSUE43_MONDAYAPRIL6_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 43",, +http://library.ucsd.edu/ark:/20775/bb2321933n,Object,20775-bb2321933n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/21/1988,,21-Apr-88,,4/21/1988,,20775-bb2321933n-0-2.tgz,document-source,VOLUME64_ISSUE6_THURSDAYAPRIL21_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 64, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb8431205p,Object,20775-bb8431205p-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,4/21/1983,,21-Apr-83,,4/21/1983,,20775-bb8431205p-0-2.tgz,document-source,VOLUME49_ISSUE6_THURSDAYAPRIL21_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 49, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb1059604g,Object,2013-02-28.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/28/2013,,28-Feb-13,,2/28/2013,,,,2013-02-28.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 36",,Newspaper +http://library.ucsd.edu/ark:/20775/bb8909023m,Object,20775-bb8909023m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/17/1990,,17-Oct-90,,10/17/1990,,20775-bb8909023m-0-2.tgz,document-source,VOLUME71_ISSUE10_WEDNESDAYOCTOBER17_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 71, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb9420973p,Object,20775-bb9420973p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/30/1984,,30-Apr-84,,4/30/1984,,20775-bb9420973p-0-2.tgz,document-source,VOLUME52_ISSUE9_MONDAYAPRIL30_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 52, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb6929481d,Object,20775-bb6929481d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/9/2000,,9-Oct-00,,10/9/2000,,20775-bb6929481d-0-2.tgz,document-source,VOLUME101_ISSUE6_MONDAYOCTOBER9_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 101, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb9523360j,Object,20775-bb9523360j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,10/10/1990,,10-Oct-90,,10/10/1990,,20775-bb9523360j-0-2.tgz,document-source,VOLUME71_ISSUE7_WEDNESDAYOCTOBER10_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 71, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb2151284w,Object,20775-bb2151284w-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,2/19/1971,,19-Feb-71,,2/19/1971,,20775-bb2151284w-0-2.tgz,document-source,VOLUME12_ISSUE14_FRIDAYFEBRUARY19_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 12, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb4199204g,Object,20775-bb4199204g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,12/3/2007,,3-Dec-07,,12/3/2007,,,,12_03_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb7782736x,Object,20775-bb7782736x-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/28/1977,,28-Sep-77,,9/28/1977,,20775-bb7782736x-0-2.tgz,document-source,VOLUME32_ISSUE3_WEDNESDAYSEPTEMBER28_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 32, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb98646570,Object,20775-bb98646570-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,1/23/1970,,23-Jan-70,,1/23/1970,,20775-bb98646570-0-2.tgz,document-source,VOLUME9_ISSUE3_JANUARY23_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 9, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb95233612,Object,20775-bb95233612-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,3/13/1970,,13-Mar-70,,3/13/1970,,20775-bb95233612-0-2.tgz,document-source,VOLUME9_ISSUE10_MARCH6_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 9, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb2151285d,Object,20775-bb2151285d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,10/5/1998,,5-Oct-98,,10/5/1998,,20775-bb2151285d-0-2.tgz,document-source,VOLUME95_ISSUE4_MONDAYOCTOBER5_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 95, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb0820210p,Object,20775-bb0820210p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,10/13/2005,,13-Oct-05,,10/13/2005,,20775-bb0820210p-0-2.tgz,document-source,VOLUME116_ISSUE7_THURSDAYOCTOBER13_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 116, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb6451822x,Object,20775-bb6451822x-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,2/2/2012,,2-Feb-12,,2/2/2012,,,,2012-02-02.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb5700800b,Object,20775-bb5700800b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,2/18/1997,,18-Feb-97,,2/18/1997,,20775-bb5700800b-0-2.tgz,document-source,VOLUME90_ISSUE13_TUESDAYFEBRUARY18_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 90, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb18099852,Object,20775-bb18099852-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,6/4/1990,,4-Jun-90,,6/4/1990,,20775-bb18099852-0-2.tgz,document-source,VOLUME70_ISSUE19_MONDAYJUNE4_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 70, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb53594988,Object,20775-bb53594988-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/18/1982,,18-Feb-82,,2/18/1982,,20775-bb53594988-0-2.tgz,document-source,VOLUME45_ISSUE14_THURSDAYFEBRUARY18_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb8124514t,Object,2013-05-09.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/9/2013,,9-May-13,,5/9/2013,,,,2013-05-09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 52",,Newspaper +http://library.ucsd.edu/ark:/20775/bb2663236f,Object,20775-bb2663236f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/9/1984,,9-Apr-84,,4/9/1984,,20775-bb2663236f-0-2.tgz,document-source,VOLUME52_ISSUE3_MONDAYAPRIL9_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 52, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb02741316,Object,20775-bb02741316-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/17/1977,,17-Jan-77,,1/17/1977,,20775-bb02741316-0-2.tgz,document-source,VOLUME30_ISSUE4_MONDAYJANUARY17_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 30, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb0444784d,Object,20775-bb0444784d-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,Triton Times,The Guardian,UCSD Guardian,,,,,,,,,,,,,10/18/1978,,18-Oct-78,,10/18/1978,,20775-bb0444784d-0-2.tgz,document-source,VOLUME35_ISSUE12_WEDNESDAYOCTOBER18_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 35, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb2185411n,Object,20775-bb2185411n-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,5/4/1968,,4-May-68,,5/4/1968,,20775-bb2185411n-0-2.tgz,document-source,VOLUME4_ISSUE5_MAY4_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 4, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb8465453r,Object,20775-bb8465453r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/10/2010,,10-May-10,,5/10/2010,,,,05_10_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 53",, +http://library.ucsd.edu/ark:/20775/bb84312045,Object,20775-bb84312045-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/9/1998,,9-Apr-98,,4/9/1998,,20775-bb84312045-0-2.tgz,document-source,VOLUME94_ISSUE4_THURSDAYAPRIL9_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 94, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb15028159,Object,20775-bb15028159-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/6/1977,,6-Apr-77,,4/6/1977,,20775-bb15028159-0-2.tgz,document-source,VOLUME31_ISSUE2_WEDNESDAYAPRIL6_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 31, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb63151364,Object,20775-bb63151364-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/16/1997,,16-Oct-97,,10/16/1997,,20775-bb63151364-0-2.tgz,document-source,VOLUME92_ISSUE7_THURSDAYOCTOBER16_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 92, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb73049105,Object,20775-bb73049105-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,3/31/1975,,31-Mar-75,,3/31/1975,,,,VOLUME25_ISSUE1_MONDAYMARCH31_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 25, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb6281009f,Object,20775-bb6281009f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/11/1982,,11-Oct-82,,10/11/1982,,20775-bb6281009f-0-2.tgz,document-source,VOLUME47_ISSUE6_MONDAYOCTOBER11_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb33117058,Object,20775-bb33117058-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,2/1/2001,,1-Feb-01,,2/1/2001,,20775-bb33117058-0-2.tgz,document-source,VOLUME102_ISSUE8_THURSDAYFEBRUARY1_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 102, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb2424320h,Object,20775-bb2424320h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,5/25/2006,,25-May-06,,5/25/2006,,20775-bb2424320h-0-2.tgz,document-source,THURSDAYMAY25_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 118, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb89090223,Object,20775-bb89090223-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/14/1993,,14-Oct-93,,10/14/1993,,20775-bb89090223-0-2.tgz,document-source,VOLUME80_ISSUE7_THURSDAYOCTOBER14_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 80, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb4881680s,Object,20775-bb4881680s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,9/27/1993,,27-Sep-93,,9/27/1993,,20775-bb4881680s-0-2.tgz,document-source,VOLUME80_ISSUE2_MONDAYSEPTEMBER27_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 80, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb4915814q,Object,20775-bb4915814q-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,2/19/1975,,19-Feb-75,,2/19/1975,,20775-bb4915814q-0-2.tgz,document-source,VOLUME24_ISSUE19_WEDNESDAYFEBRUARY19_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 24, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb4130821k,Object,20775-bb4130821k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,11/3/2005,,3-Nov-05,,11/3/2005,,20775-bb4130821k-0-2.tgz,document-source,VOLUME116_ISSUE13_THURSDAYNOVEMBER3_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 116, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb0444783w,Object,20775-bb0444783w-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/12/1978,,12-Apr-78,,4/12/1978,,20775-bb0444783w-0-2.tgz,document-source,VOLUME34_ISSUE5_WEDNESDAYAPRIL12_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 34, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb5052326g,Object,20775-bb5052326g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/25/2001,,25-Oct-01,,10/25/2001,,20775-bb5052326g-0-2.tgz,document-source,VOLUME104_ISSUE11_THURSDAYOCTOBER25_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 104, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb3311704r,Object,20775-bb3311704r-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,11/16/2006,,16-Nov-06,,11/16/2006,,20775-bb3311704r-0-2.tgz,document-source,THURSDAYNOVEMBER16_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 119, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb24243211,Object,20775-bb24243211-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,9/30/2002,,30-Sep-02,,9/30/2002,,20775-bb24243211-0-2.tgz,document-source,VOLUME107_ISSUE2_MONDAYSEPTEMBER30_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 107, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb5052325z,Object,20775-bb5052325z-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,10/26/1973,,26-Oct-73,,10/26/1973,,20775-bb5052325z-0-2.tgz,document-source,VOLUME20_ISSUE10_FRIDAYOCTOBER26_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 20, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb84654548,Object,20775-bb84654548-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/26/2011,,26-Sep-11,,9/26/2011,,,,09_26_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb21854125,Object,20775-bb21854125-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/20/1982,,20-May-82,,5/20/1982,,20775-bb21854125-0-2.tgz,document-source,VOLUME46_ISSUE16_THURSDAYMAY20_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb2663235x,Object,20775-bb2663235x-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,10/8/1976,,8-Oct-76,,10/8/1976,,20775-bb2663235x-0-2.tgz,document-source,VOLUME29_ISSUE7_FRIDAYOCTOBER8_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 29, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb7441430h,Object,20775-bb7441430h-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,11/28/1979,,28-Nov-79,,11/28/1979,,20775-bb7441430h-0-2.tgz,document-source,VOLUME38_ISSUE49_WEDNESDAYNOVEMBER28_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 49",, +http://library.ucsd.edu/ark:/20775/bb7543818n,Object,20775-bb7543818n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/29/1993,,29-Nov-93,,11/29/1993,,20775-bb7543818n-0-2.tgz,document-source,VOLUME80_ISSUE19_MONDAYNOVEMBER29_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 80, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb9523362k,Object,20775-bb9523362k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/4/1985,,4-Apr-85,,4/4/1985,,20775-bb9523362k-0-2.tgz,document-source,VOLUME55_ISSUE2_THURSDAYAPRIL4_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 55, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb5666667c,Object,20775-bb5666667c-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/27/2006,,27-Apr-06,,4/27/2006,,20775-bb5666667c-0-2.tgz,document-source,THURSDAYAPRIL27_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 118, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb8909021k,Object,20775-bb8909021k-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/29/1975,,29-Sep-75,,9/29/1975,,20775-bb8909021k-0-2.tgz,document-source,VOLUME26_ISSUE4_MONDAYSEPTEMBER29_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 26, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb5803188s,Object,20775-bb5803188s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,9/15/1981,,15-Sep-81,,9/15/1981,,20775-bb5803188s-0-2.tgz,document-source,VOLUME44_ISSUE1_TUESDAYSEPTEMBER15_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 44, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb50523291,Object,20775-bb50523291-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/11/1983,,11-Nov-83,,11/11/1983,,20775-bb50523291-0-2.tgz,document-source,VOLUME50_ISSUE15_THURSDAYNOVEMBER11_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 50, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb4335597g,Object,20775-bb4335597g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,6/1/2000,,1-Jun-00,,6/1/2000,,20775-bb4335597g-0-2.tgz,document-source,VOLUME100_ISSUE18_THURSDAYJUNE1_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 100, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb1502814s,Object,20775-bb1502814s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,4/5/1990,,5-Apr-90,,4/5/1990,,20775-bb1502814s-0-2.tgz,document-source,VOLUME70_ISSUE2_THURSDAYAPRIL5_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 70, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb8431203n,Object,20775-bb8431203n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/26/2001,,26-Apr-01,,4/26/2001,,20775-bb8431203n-0-2.tgz,document-source,VOLUME103_ISSUE8_THURSDAYAPRIL26_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 103, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb43355980,Object,20775-bb43355980-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,5/26/1967,,26-May-67,,5/26/1967,,20775-bb43355980-0-2.tgz,document-source,VOLUME1_ISSUE1.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 1, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb74414332,Object,20775-bb74414332-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,5/15/1986,,15-May-86,,5/15/1986,,,,VOLUME58_ISSUE14_THURSDAYMAY15_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb49158157,Object,20775-bb49158157-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,10/17/1969,,17-Oct-69,,10/17/1969,,20775-bb49158157-0-2.tgz,document-source,VOLUME8_ISSUE3_FRIDAYOCTOBER17_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 8, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb41308223,Object,20775-bb41308223-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/1/2002,,1-Apr-02,,4/1/2002,,20775-bb41308223-0-2.tgz,document-source,VOLUME106_ISSUE1_MONDAYAPRIL1_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 106, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb95233633,Object,20775-bb95233633-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/22/1990,,22-Feb-90,,2/22/1990,,20775-bb95233633-0-2.tgz,document-source,VOLUME69_ISSUE15_THURSDAYFEBRUARY22_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 69, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb4335596z,Object,20775-bb4335596z-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/2/1970,,2-Oct-70,,10/2/1970,,20775-bb4335596z-0-2.tgz,document-source,VOLUME11_ISSUE2_FRIDAYOCTOBER2_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 11, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb7236650c,Object,20775-bb7236650c-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,6/4/1975,,4-Jun-75,,6/4/1975,,20775-bb7236650c-0-2.tgz,document-source,VOLUME25_ISSUE29_WEDNESDAYJUNE4_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 25, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb84312024,Object,20775-bb84312024-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,9/26/1975,,26-Sep-75,,9/26/1975,,20775-bb84312024-0-2.tgz,document-source,VOLUME26_ISSUE3_FRIDAYSEPTEMBER26_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb10596092,Object,2014-11-10.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/10/2014,,10-Nov-14,,11/10/2014,,,,2014-11-10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 48, Issue 12",,Newspaper +http://library.ucsd.edu/ark:/20775/bb1571067d,Object,20775-bb1571067d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,3/6/1995,,6-Mar-95,,3/6/1995,,20775-bb1571067d-0-2.tgz,document-source,VOLUME84_ISSUE17_MONDAYMARCH6_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 84, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb15028138,Object,20775-bb15028138-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,1/18/2000,,18-Jan-00,,1/18/2000,,20775-bb15028138-0-2.tgz,document-source,VOLUME99_ISSUE3_TUESDAYJANUARY18_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 99, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb0444786f,Object,20775-bb0444786f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/21/2005,,21-Apr-05,,4/21/2005,,20775-bb0444786f-0-2.tgz,document-source,VOLUME115_ISSUE8_THURSDAYAPRIL21_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 115, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb2663238g,Object,20775-bb2663238g-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,3/3/1975,,3-Mar-75,,3/3/1975,,20775-bb2663238g-0-2.tgz,document-source,VOLUME24_ISSUE24_MONDAYMARCH3_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 24, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb9352836g,Object,20775-bb9352836g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/1/2007,,1-Oct-07,,10/1/2007,,,,10_01_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb1809986k,Object,20775-bb1809986k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,1/17/2006,,17-Jan-06,,1/17/2006,,20775-bb1809986k-0-2.tgz,document-source,TUESDAYJANUARY17_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 117, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb2424322j,Object,20775-bb2424322j-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,1/17/2002,,17-Jan-02,,1/17/2002,,20775-bb2424322j-0-2.tgz,document-source,VOLUME105_ISSUE4_THURSDAYJANUARY17_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 105, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb1673459x,Object,20775-bb1673459x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/2/1997,,2-Oct-97,,10/2/1997,,20775-bb1673459x-0-2.tgz,document-source,VOLUME92_ISSUE3_THURSDAYOCTOBER2_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 92, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb1024991d,Object,20775-bb1024991d-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,1/19/1993,,19-Jan-93,,1/19/1993,,20775-bb1024991d-0-2.tgz,document-source,VOLUME78_ISSUE5_TUESDAYJANUARY19_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 78, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb07862056,Object,20775-bb07862056-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/6/2009,,6-Apr-09,,4/6/2009,,,,04_06_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb4130823m,Object,20775-bb4130823m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,10/9/2006,,9-Oct-06,,10/9/2006,,20775-bb4130823m-0-2.tgz,document-source,MONDAYOCTOBER9_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 119, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb58031899,Object,20775-bb58031899-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,6/3/1980,,3-Jun-80,,6/3/1980,,20775-bb58031899-0-2.tgz,document-source,VOLUME40_ISSUE46_TUESDAYJUNE3_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 46",, +http://library.ucsd.edu/ark:/20775/bb3721258r,Object,20775-bb3721258r-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,1/26/1979,,26-Jan-79,,1/26/1979,,20775-bb3721258r-0-2.tgz,document-source,VOLUME36_ISSUE9_FRIDAYJANUARY26_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 36, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb9864658h,Object,20775-bb9864658h-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Triton Times,Daily Guardian,The Guardian,Guardian,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,4/3/2003,4/3/2003,3-Apr-03,3-Apr-03,4/3/2003,4/3/2003,20775-bb9864658h-0-2.tgz,document-source,VOLUME109_ISSUE2_THURSDAYAPRIL3_2003.pdf,VOLUME109_ISSUE2_THURSDAYAPRIL3_2003.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 109, Issue 2","Volume 109, Issue 2", +http://library.ucsd.edu/ark:/20775/bb3311706s,Object,20775-bb3311706s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,2/23/2006,,23-Feb-06,,2/23/2006,,20775-bb3311706s-0-2.tgz,document-source,THURSDAYFEBRUARY23_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 117, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb0444785x,Object,20775-bb0444785x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/21/1988,,21-Nov-88,,11/21/1988,,20775-bb0444785x-0-2.tgz,document-source,VOLUME65_ISSUE18_MONDAYNOVEMBER21_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 65, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb4915816r,Object,20775-bb4915816r-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/2/1977,,2-May-77,,5/2/1977,,20775-bb4915816r-0-2.tgz,document-source,VOLUME31_ISSUE13_MONDAYMAY2_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 31, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb89090202,Object,20775-bb89090202-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,9/30/1985,,30-Sep-85,,9/30/1985,,20775-bb89090202-0-2.tgz,document-source,VOLUME56_ISSUE2_MONDAYSEPTEMBER30_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 56, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb2663237z,Object,20775-bb2663237z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/7/2003,,7-Apr-03,,4/7/2003,,20775-bb2663237z-0-2.tgz,document-source,VOLUME109_ISSUE3_MONDAYAPRIL7_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 109, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb21854104,Object,20775-bb21854104-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/17/1982,,17-May-82,,5/17/1982,,20775-bb21854104-0-2.tgz,document-source,VOLUME46_ISSUE15_MONDAYMAY17_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb1024990w,Object,20775-bb1024990w-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,Triton Times,UCSD Guardian,The Guardian,,,,,,,,,,,,,11/5/1979,,5-Nov-79,,11/5/1979,,20775-bb1024990w-0-2.tgz,document-source,VOLUME38_ISSUE32_MONDAYNOVEMBER5_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 32",, +http://library.ucsd.edu/ark:/20775/bb1571066w,Object,20775-bb1571066w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/3/1999,,3-May-99,,5/3/1999,,20775-bb1571066w-0-2.tgz,document-source,VOLUME97_ISSUE11_MONDAYMAY3_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 97, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb35848656,Object,20775-bb35848656-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/9/2011,,9-May-11,,5/9/2011,,,,05_09_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 53",, +http://library.ucsd.edu/ark:/20775/bb13326417,Object,2013-10-28.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/28/2013,,28-Oct-13,,10/28/2013,,,,2013-10-28.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 10",,Newspaper +http://library.ucsd.edu/ark:/20775/bb5700803w,Object,20775-bb5700803w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,10/12/1989,,12-Oct-89,,10/12/1989,,20775-bb5700803w-0-2.tgz,document-source,VOLUME68_ISSUE7_THURSDAYOCTOBER12_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 68, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb5666669d,Object,20775-bb5666669d-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,1/30/1976,,30-Jan-76,,1/30/1976,,20775-bb5666669d-0-2.tgz,document-source,VOLUME27_ISSUE12_FRIDAYJANUARY30_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb2151280t,Object,20775-bb2151280t-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,2/11/1972,,11-Feb-72,,2/11/1972,,20775-bb2151280t-0-2.tgz,document-source,VOLUME15_ISSUE12_FRIDAYFEBRUARY11_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 15, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb8431201m,Object,20775-bb8431201m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/14/1991,,14-Nov-91,,11/14/1991,,20775-bb8431201m-0-2.tgz,document-source,VOLUME74_ISSUE15_THURSDAYNOVEMBER14_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 74, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb2253675w,Object,20775-bb2253675w-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,10/16/1978,,16-Oct-78,,10/16/1978,,20775-bb2253675w-0-2.tgz,document-source,VOLUME35_ISSUE11_MONDAYOCTOBER16_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 35, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb50523270,Object,20775-bb50523270-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/19/1976,,19-Nov-76,,11/19/1976,,20775-bb50523270-0-2.tgz,document-source,VOLUME29_ISSUE25_FRIDAYNOVEMBER19_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 29, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb1502812r,Object,20775-bb1502812r-0-1.pdf,document-service,text,,The Guardian,,,,Triton Times,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,1/22/1981,,22-Jan-81,,1/22/1981,,20775-bb1502812r-0-2.tgz,document-source,VOLUME42_ISSUE6_THURSDAYJANUARY22_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb4335599h,Object,20775-bb4335599h-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/15/2001,,15-Oct-01,,10/15/2001,,20775-bb4335599h-0-2.tgz,document-source,VOLUME104_ISSUE8_MONDAYOCTOBER15_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 104, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb5803186r,Object,20775-bb5803186r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,5/20/1991,,20-May-91,,5/20/1991,,20775-bb5803186r-0-2.tgz,document-source,VOLUME73_ISSUE15_MONDAYMAY20_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 73, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb74414311,Object,20775-bb74414311-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,10/25/2004,,25-Oct-04,,10/25/2004,,20775-bb74414311-0-2.tgz,document-source,VOLUME113_ISSUE10_MONDAYOCTOBER25_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 113, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb6281008x,Object,20775-bb6281008x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,11/16/1987,,16-Nov-87,,11/16/1987,,20775-bb6281008x-0-2.tgz,document-source,VOLUME59_ISSUE16_MONDAYNOVEMBER16_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 59, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb5666668w,Object,20775-bb5666668w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,6/4/1984,,4-Jun-84,,6/4/1984,,20775-bb5666668w-0-2.tgz,document-source,VOLUME52_ISSUE19_MONDAYJUNE4_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 52, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb03766455,Object,20775-bb03766455-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/21/2010,,21-Oct-10,,10/21/2010,,,,10_21_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb41308244,Object,20775-bb41308244-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/8/1987,,8-Jan-87,,1/8/1987,,,,VOLUME58_ISSUE22_THURSDAYJANUARY8_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb48816819,Object,20775-bb48816819-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,4/29/2002,,29-Apr-02,,4/29/2002,,20775-bb48816819-0-2.tgz,document-source,VOLUME106_ISSUE9_MONDAYAPRIL29_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 106, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb3311698q,Object,20775-bb3311698q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,1/23/1997,,23-Jan-97,,1/23/1997,,20775-bb3311698q-0-2.tgz,document-source,VOLUME90_ISSUE6_THURSDAYJANUARY23_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 90, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb2253676d,Object,20775-bb2253676d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/16/1994,,16-May-94,,5/16/1994,,20775-bb2253676d-0-2.tgz,document-source,VOLUME82_ISSUE15_MONDAYMAY16_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 82, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb37212598,Object,20775-bb37212598-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,4/14/1978,,14-Apr-78,,4/14/1978,,20775-bb37212598-0-2.tgz,document-source,VOLUME34_ISSUE6_FRIDAYAPRIL14_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 34, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb3584864p,Object,20775-bb3584864p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/28/2010,,28-Oct-10,,10/28/2010,,,,10_28_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb2151281b,Object,20775-bb2151281b-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/23/1980,,23-Oct-80,,10/23/1980,,20775-bb2151281b-0-2.tgz,document-source,VOLUME41_ISSUE25_THURSDAYOCTOBER23_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb2287800m,Object,20775-bb2287800m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,1/23/1989,,23-Jan-89,,1/23/1989,,20775-bb2287800m-0-2.tgz,document-source,VOLUME66_ISSUE6_MONDAYJANUARY23_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 66, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb6042097z,Object,20775-bb6042097z-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/6/1994,,6-Oct-94,,10/6/1994,,20775-bb6042097z-0-2.tgz,document-source,VOLUME83_ISSUE5_THURSDAYOCTOBER6_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 83, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb8533717m,Object,20775-bb8533717m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/16/2009,,16-Nov-09,,11/16/2009,,,,05_04_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb8362937h,Object,20775-bb8362937h-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,10/14/1974,,14-Oct-74,,10/14/1974,,20775-bb8362937h-0-2.tgz,document-source,VOLUME23_ISSUE10_MONDAYOCTOBER14_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 23, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb7441434k,Object,20775-bb7441434k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,2/9/1984,,9-Feb-84,,2/9/1984,,20775-bb7441434k-0-2.tgz,document-source,VOLUME51_ISSUE10_THURSDAYFEBRUARY9_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 51, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb6827094g,Object,20775-bb6827094g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/16/2003,,16-Oct-03,,10/16/2003,,20775-bb6827094g-0-2.tgz,document-source,VOLUME110_ISSUE7_THURSDAYOCTOBER16_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 110, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb2663231v,Object,20775-bb2663231v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/1/1987,,1-Oct-87,,10/1/1987,,20775-bb2663231v-0-2.tgz,document-source,VOLUME59_ISSUE3_THURSDAYOCTOBER1_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 59, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb0649558w,Object,20775-bb0649558w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/29/1988,,29-Feb-88,,2/29/1988,,20775-bb0649558w-0-2.tgz,document-source,VOLUME60_ISSUE37_MONDAYFEBRUARY29_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 60, Issue 37",, +http://library.ucsd.edu/ark:/20775/bb6758833v,Object,20775-bb6758833v-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Triton Times,Guardian,UCSD Guardian,,,,,,,,,,,,,5/15/1980,,15-May-80,,5/15/1980,,20775-bb6758833v-0-2.tgz,document-source,VOLUME40_ISSUE34_THURSDAYMAY15_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 34",, +http://library.ucsd.edu/ark:/20775/bb58031878,Object,20775-bb58031878-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,9/30/1991,,30-Sep-91,,9/30/1991,,20775-bb58031878-0-2.tgz,document-source,VOLUME74_ISSUE2_MONDAYSEPTEMBER30_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 74, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb4574509z,Object,20775-bb4574509z-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,Triton Times,The Guardian,UCSD Guardian,,,,,,,,,,,,,1/25/1980,,25-Jan-80,,1/25/1980,,20775-bb4574509z-0-2.tgz,document-source,VOLUME39_ISSUE15_FRIDAYJANUARY25_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb27997532,Object,20775-bb27997532-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/14/1975,,14-May-75,,5/14/1975,,20775-bb27997532-0-2.tgz,document-source,VOLUME25_ISSUE20_WEDNESDAYMAY14_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 25, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb4915810n,Object,20775-bb4915810n-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,11/9/1973,,9-Nov-73,,11/9/1973,,20775-bb4915810n-0-2.tgz,document-source,VOLUME20_ISSUE14_FRIDAYNOVEMBER9_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 20, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb17758528,Object,20775-bb17758528-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,4/2/1984,,2-Apr-84,,4/2/1984,,20775-bb17758528-0-2.tgz,document-source,VOLUME52_ISSUE1_MONDAYAPRIL2_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 52, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb94209704,Object,20775-bb94209704-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/2/1992,,2-Apr-92,,4/2/1992,,20775-bb94209704-0-2.tgz,document-source,VOLUME76_ISSUE2_THURSDAYAPRIL2_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 76, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb2799752j,Object,20775-bb2799752j-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,6/6/1979,,6-Jun-79,,6/6/1979,,20775-bb2799752j-0-2.tgz,document-source,VOLUME37_ISSUE29_WEDNESDAYJUNE6_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb5154723w,Object,20775-bb5154723w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,4/7/1997,,7-Apr-97,,4/7/1997,,20775-bb5154723w-0-2.tgz,document-source,VOLUME91_ISSUE3_MONDAYAPRIL7_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 91, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb6758834c,Object,20775-bb6758834c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,5/19/1983,,19-May-83,,5/19/1983,,20775-bb6758834c-0-2.tgz,document-source,VOLUME49_ISSUE14_THURSDAYMAY19_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 49, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb2663232c,Object,20775-bb2663232c-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,3/17/1978,,17-Mar-78,,3/17/1978,,20775-bb2663232c-0-2.tgz,document-source,VOLUME33_ISSUE29_FRIDAYMARCH17_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 33, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb6042098g,Object,20775-bb6042098g-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,3/13/2000,,13-Mar-00,,3/13/2000,,20775-bb6042098g-0-2.tgz,document-source,VOLUME99_ISSUE19_MONDAYMARCH13_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 99, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb0649559d,Object,20775-bb0649559d-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/11/1977,,11-Feb-77,,2/11/1977,,20775-bb0649559d-0-2.tgz,document-source,VOLUME30_ISSUE15_FRIDAYFEBRUARY11_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 30, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb84312003,Object,20775-bb84312003-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,10/22/1976,,22-Oct-76,,10/22/1976,,20775-bb84312003-0-2.tgz,document-source,VOLUME29_ISSUE13_FRIDAYOCTOBER22_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 29, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb49158115,Object,20775-bb49158115-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/12/1988,,12-May-88,,5/12/1988,,20775-bb49158115-0-2.tgz,document-source,VOLUME64_ISSUE12_THURSDAYMAY12_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 64, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb22878014,Object,20775-bb22878014-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,5/13/1985,,13-May-85,,5/13/1985,,20775-bb22878014-0-2.tgz,document-source,VOLUME55_ISSUE13_MONDAYMAY13_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 55, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb77144666,Object,20775-bb77144666-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,3/4/1976,,4-Mar-76,,3/4/1976,,20775-bb77144666-0-2.tgz,document-source,VOLUME27_ISSUE25_WEDNESDAYMARCH4_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb2902139w,Object,20775-bb2902139w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/4/2002,,4-Apr-02,,4/4/2002,,20775-bb2902139w-0-2.tgz,document-source,VOLUME106_ISSUE2_THURSDAYAPRIL4_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 106, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb20831444,Object,20775-bb20831444-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/30/2009,,30-Mar-09,,3/30/2009,,,,03_30_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb4096815k,Object,20775-bb4096815k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/14/2008,,14-Feb-08,,2/14/2008,,,,02_14_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb1400423s,Object,20775-bb1400423s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,5/30/1989,,30-May-89,,5/30/1989,,20775-bb1400423s-0-2.tgz,document-source,VOLUME67_ISSUE17_TUESDAYMAY30_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 67, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb68270971,Object,20775-bb68270971-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/26/1998,,26-May-98,,5/26/1998,,20775-bb68270971-0-2.tgz,document-source,VOLUME94_ISSUE17_TUESDAYMAY26_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 94, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb83629381,Object,20775-bb83629381-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/2/2000,,2-Nov-00,,11/2/2000,,20775-bb83629381-0-2.tgz,document-source,VOLUME101_ISSUE13_THURSDAYNOVEMBER2_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 101, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb5154722c,Object,20775-bb5154722c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,5/11/1995,,11-May-95,,5/11/1995,,20775-bb5154722c-0-2.tgz,document-source,VOLUME85_ISSUE12_THURSDAYMAY11_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 85, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb19123704,Object,20775-bb19123704-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,12/4/1986,,4-Dec-86,,12/4/1986,,,,VOLUME58_ISSUE20_THURSDAYDECEMBER4_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb60420990,Object,20775-bb60420990-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,11/28/1988,,28-Nov-88,,11/28/1988,,20775-bb60420990-0-2.tgz,document-source,VOLUME65_ISSUE19_MONDAYNOVEMBER28_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 65, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb1775851r,Object,20775-bb1775851r-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,1/9/1997,,9-Jan-97,,1/9/1997,,20775-bb1775851r-0-2.tgz,document-source,VOLUME90_ISSUE2_THURSDAYJANUARY9_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 90, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb8840764n,Object,20775-bb8840764n-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,9/29/1994,,29-Sep-94,,9/29/1994,,20775-bb8840764n-0-2.tgz,document-source,VOLUME83_ISSUE3_THURSDAYSEPTEMBER29_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 83, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb00352170,Object,20775-bb00352170-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,11/9/1977,,9-Nov-77,,11/9/1977,,20775-bb00352170-0-2.tgz,document-source,VOLUME32_ISSUE21_WEDNESDAYNOVEMBER9_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb7441432j,Object,20775-bb7441432j-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,10/13/1980,,13-Oct-80,,10/13/1980,,20775-bb7441432j-0-2.tgz,document-source,VOLUME41_ISSUE17_MONDAYOCTOBER13_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb8362935g,Object,20775-bb8362935g-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,10/27/2003,,27-Oct-03,,10/27/2003,,20775-bb8362935g-0-2.tgz,document-source,VOLUME110_ISSUE10_MONDAYOCTOBER27_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 110, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb14004249,Object,20775-bb14004249-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/12/1970,,12-May-70,,5/12/1970,,20775-bb14004249-0-2.tgz,document-source,VOLUME10_ISSUE11_TUESDAYMAY12_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 10, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb2663233w,Object,20775-bb2663233w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,6/8/2006,,8-Jun-06,,6/8/2006,,20775-bb2663233w-0-2.tgz,document-source,THURSDAYJUNE8_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 118, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb6758831t,Object,20775-bb6758831t-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,5/21/1979,,21-May-79,,5/21/1979,,20775-bb6758831t-0-2.tgz,document-source,VOLUME37_ISSUE22_MONDAYMAY21_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 37, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb7714467q,Object,20775-bb7714467q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/11/2006,,11-May-06,,5/11/2006,,20775-bb7714467q-0-2.tgz,document-source,THURSDAYMAY11_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 118, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb4915812p,Object,20775-bb4915812p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,10/21/1991,,21-Oct-91,,10/21/1991,,20775-bb4915812p-0-2.tgz,document-source,VOLUME74_ISSUE8_MONDAYOCTOBER21_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 74, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb2287802n,Object,20775-bb2287802n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/9/1985,,9-May-85,,5/9/1985,,20775-bb2287802n-0-2.tgz,document-source,VOLUME55_ISSUE12_THURSDAYMAY9_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 55, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb44038578,Object,20775-bb44038578-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,6/1/2004,,1-Jun-04,,6/1/2004,,20775-bb44038578-0-2.tgz,document-source,VOLUME112_ISSUE19_TUESDAYJUNE1_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 112, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb6827092f,Object,20775-bb6827092f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,11/23/1998,,23-Nov-98,,11/23/1998,,20775-bb6827092f-0-2.tgz,document-source,VOLUME95_ISSUE18_MONDAYNOVEMBER23_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 95, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb89431495,Object,20775-bb89431495-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,4/19/1982,,19-Apr-82,,4/19/1982,,20775-bb89431495-0-2.tgz,document-source,VOLUME46_ISSUE7_MONDAYAPRIL19_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb2390192p,Object,20775-bb2390192p-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,10/27/1967,,27-Oct-67,,10/27/1967,,20775-bb2390192p-0-2.tgz,document-source,VOLUME2_ISSUE3_OCTOBER27_1967.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 2, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb5052328h,Object,20775-bb5052328h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,2/5/1998,,5-Feb-98,,2/5/1998,,20775-bb5052328h-0-2.tgz,document-source,VOLUME93_ISSUE10_THURSDAYFEBRUARY5_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 93, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb17758507,Object,20775-bb17758507-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,UCSD Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,12/1/1978,,1-Dec-78,,12/1/1978,,20775-bb17758507-0-2.tgz,document-source,VOLUME35_ISSUE30_FRIDAYDECEMBER1_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 35, Issue 30",, +http://library.ucsd.edu/ark:/20775/bb2799754k,Object,20775-bb2799754k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,5/25/1995,,25-May-95,,5/25/1995,,20775-bb2799754k-0-2.tgz,document-source,VOLUME85_ISSUE16_THURSDAYMAY25_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 85, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb6758832b,Object,20775-bb6758832b-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/14/1994,,14-Apr-94,,4/14/1994,,20775-bb6758832b-0-2.tgz,document-source,VOLUME82_ISSUE6_THURSDAYAPRIL14_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 82, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb64859555,Object,20775-bb64859555-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,4/16/2012,,16-Apr-12,,4/16/2012,,,,2012-04-16.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 45",, +http://library.ucsd.edu/ark:/20775/bb2663234d,Object,20775-bb2663234d-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,11/5/1998,,5-Nov-98,,11/5/1998,,20775-bb2663234d-0-2.tgz,document-source,VOLUME95_ISSUE13_THURSDAYNOVEMBER5_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 95, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb2902137v,Object,20775-bb2902137v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,2/27/1984,,27-Feb-84,,2/27/1984,,20775-bb2902137v-0-2.tgz,document-source,VOLUME51_ISSUE15_MONDAYFEBRUARY27_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 51, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb77144687,Object,20775-bb77144687-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/18/1983,,18-Apr-83,,4/18/1983,,20775-bb77144687-0-2.tgz,document-source,VOLUME49_ISSUE5_MONDAYAPRIL18_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 49, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb22878035,Object,20775-bb22878035-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/14/1976,,14-Apr-76,,4/14/1976,,20775-bb22878035-0-2.tgz,document-source,VOLUME28_ISSUE8_WEDNESDAYAPRIL14_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 28, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb49158136,Object,20775-bb49158136-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,4/16/1976,,16-Apr-76,,4/16/1976,,20775-bb49158136-0-2.tgz,document-source,VOLUME28_ISSUE9_FRIDAYAPRIL16_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 28, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb52913645,Object,20775-bb52913645-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/29/2009,,29-Jan-09,,1/29/2009,,,,01_29_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb68270950,Object,20775-bb68270950-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,11/21/1980,,21-Nov-80,,11/21/1980,,20775-bb68270950-0-2.tgz,document-source,VOLUME41_ISSUE46_FRIDAYNOVEMBER21_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 46",, +http://library.ucsd.edu/ark:/20775/bb28340041,Object,20775-bb28340041-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/12/2008,,12-May-08,,5/12/2008,,,,05_12_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb6656438g,Object,20775-bb6656438g-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,11/14/1975,,14-Nov-75,,11/14/1975,,20775-bb6656438g-0-2.tgz,document-source,VOLUME26_ISSUE24_FRIDAYNOVEMBER14_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb83629360,Object,20775-bb83629360-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,10/13/1975,,13-Oct-75,,10/13/1975,,20775-bb83629360-0-2.tgz,document-source,VOLUME26_ISSUE10_MONDAYOCTOBER13_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb1400421r,Object,20775-bb1400421r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,3/13/1986,,13-Mar-86,,3/13/1986,,,,VOLUME57_ISSUE20_THURSDAYMARCH13_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 57, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb74414353,Object,20775-bb74414353-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,11/6/1980,,6-Nov-80,,11/6/1980,,20775-bb74414353-0-2.tgz,document-source,VOLUME41_ISSUE35_THURSDAYNOVEMBER6_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 35",, +http://library.ucsd.edu/ark:/20775/bb1741719q,Object,20775-bb1741719q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/14/1996,,14-Oct-96,,10/14/1996,,20775-bb1741719q-0-2.tgz,document-source,VOLUME89_ISSUE6_MONDAYOCTOBER14_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 89, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb2902138c,Object,20775-bb2902138c-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,5/26/1970,,26-May-70,,5/26/1970,,20775-bb2902138c-0-2.tgz,document-source,VOLUME10_ISSUE15_TUESDAYMAY26_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 10, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb63833999,Object,20775-bb63833999-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,11/24/1997,,24-Nov-97,,11/24/1997,,20775-bb63833999-0-2.tgz,document-source,VOLUME92_ISSUE18_MONDAYNOVEMBER24_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 92, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb57349296,Object,20775-bb57349296-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,3/10/2003,,10-Mar-03,,3/10/2003,,20775-bb57349296-0-2.tgz,document-source,VOLUME108_ISSUE19_MONDAYMARCH10_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 108, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb6656437z,Object,20775-bb6656437z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/13/1986,,13-Nov-86,,11/13/1986,,,,VOLUME58_ISSUE15_THURSDAYNOVEMBER13_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb6827093z,Object,20775-bb6827093z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,2/7/1983,,7-Feb-83,,2/7/1983,,20775-bb6827093z-0-2.tgz,document-source,VOLUME48_ISSUE11_MONDAYFEBRUARY7_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb2390190n,Object,20775-bb2390190n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,10/23/1997,,23-Oct-97,,10/23/1997,,20775-bb2390190n-0-2.tgz,document-source,VOLUME92_ISSUE9_THURSDAYOCTOBER23_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 92, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb44038599,Object,20775-bb44038599-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,3/11/1982,,11-Mar-82,,3/11/1982,,20775-bb44038599-0-2.tgz,document-source,VOLUME45_ISSUE20_THURSDAYMARCH11_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb47792897,Object,20775-bb47792897-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,3/28/2005,,28-Mar-05,,3/28/2005,,20775-bb47792897-0-2.tgz,document-source,VOLUME115_ISSUE1_MONDAYMARCH28_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 115, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb6178624p,Object,20775-bb6178624p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,1/27/1992,,27-Jan-92,,1/27/1992,,20775-bb6178624p-0-2.tgz,document-source,VOLUME75_ISSUE7_MONDAYJANUARY27_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 75, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb90114115,Object,20775-bb90114115-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/22/1998,,22-Oct-98,,10/22/1998,,20775-bb90114115-0-2.tgz,document-source,VOLUME95_ISSUE9_THURSDAYOCTOBER22_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 95, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb7714469r,Object,20775-bb7714469r-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/17/1998,,17-Feb-98,,2/17/1998,,20775-bb7714469r-0-2.tgz,document-source,VOLUME93_ISSUE13_TUESDAYFEBRUARY17_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 93, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb9932922p,Object,20775-bb9932922p-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Daily Guardian,Guardian,The Guardian,Triton Times,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,9/24/2001,9/24/2001,24-Sep-01,24-Sep-01,9/24/2001,9/24/2001,20775-bb9932922p-0-2.tgz,document-source,VOLUME104_ISSUE2_MONDAYSEPTEMBER24_2001.pdf,VOLUME104_ISSUE2_MONDAYSEPTEMBER24_2001.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 104, Issue 2","Volume 104, Issue 2", +http://library.ucsd.edu/ark:/20775/bb66564390,Object,20775-bb66564390-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/10/2006,,10-Apr-06,,4/10/2006,,20775-bb66564390-0-2.tgz,document-source,MONDAYAPRIL10_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 118, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb1946663b,Object,20775-bb1946663b-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,2/13/2012,,13-Feb-12,,2/13/2012,,,,2012-02-13.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 31",, +http://library.ucsd.edu/ark:/20775/bb4403858s,Object,20775-bb4403858s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/8/1984,,8-Nov-84,,11/8/1984,,20775-bb4403858s-0-2.tgz,document-source,VOLUME53_ISSUE16_THURSDAYNOVEMBER8_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 53, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb1809980g,Object,20775-bb1809980g-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,5/22/1970,,22-May-70,,5/22/1970,,20775-bb1809980g-0-2.tgz,document-source,VOLUME10_ISSUE14_FRIDAYMAY22_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 10, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb83970695,Object,20775-bb83970695-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,3/14/1980,,14-Mar-80,,3/14/1980,,20775-bb83970695-0-2.tgz,document-source,VOLUME39_ISSUE49_FRIDAYMARCH14_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 49",, +http://library.ucsd.edu/ark:/20775/bb8021641k,Object,20775-bb8021641k-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,3/3/1978,,3-Mar-78,,3/3/1978,,20775-bb8021641k-0-2.tgz,document-source,VOLUME33_ISSUE23_FRIDAYMARCH3_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 33, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb0035218h,Object,20775-bb0035218h-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,4/24/1978,,24-Apr-78,,4/24/1978,,20775-bb0035218h-0-2.tgz,document-source,VOLUME34_ISSUE10_MONDAYAPRIL24_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 34, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb39601693,Object,20775-bb39601693-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,10/21/1996,,21-Oct-96,,10/21/1996,,20775-bb39601693-0-2.tgz,document-source,VOLUME89_ISSUE8_MONDAYOCTOBER21_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 89, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb6656436f,Object,20775-bb6656436f-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,4/27/1992,,27-Apr-92,,4/27/1992,,20775-bb6656436f-0-2.tgz,document-source,VOLUME76_ISSUE9_MONDAYAPRIL27_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 76, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb18099831,Object,20775-bb18099831-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,4/28/1972,,28-Apr-72,,4/28/1972,,20775-bb18099831-0-2.tgz,document-source,VOLUME16_ISSUE10_FRIDAYAPRIL28_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 16, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb61786277,Object,20775-bb61786277-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Triton Times,UCSD Guardian,Guardian,,,,,,,,,,,,,9/25/1979,,25-Sep-79,,9/25/1979,,20775-bb61786277-0-2.tgz,document-source,VOLUME38_ISSUE3_TUESDAYSEPTEMBER25_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb4779288q,Object,20775-bb4779288q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/28/1985,,28-Oct-85,,10/28/1985,,20775-bb4779288q-0-2.tgz,document-source,VOLUME56_ISSUE10_MONDAYOCTOBER28_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 56, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb1537065b,Object,20775-bb1537065b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/14/2008,,14-Jan-08,,1/14/2008,,,,01_14_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb12980294,Object,20775-bb12980294-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/17/1986,,17-Apr-86,,4/17/1986,,,,VOLUME58_ISSUE6_THURSDAYAPRIL17_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb23901936,Object,20775-bb23901936-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,2/7/1977,,7-Feb-77,,2/7/1977,,20775-bb23901936-0-2.tgz,document-source,VOLUME30_ISSUE13_MONDAYFEBRUARY7_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 30, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb0069473h,Object,20775-bb0069473h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/4/2010,,4-Oct-10,,10/4/2010,,,,10_04_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb0820212q,Object,20775-bb0820212q-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/21/1971,,21-May-71,,5/21/1971,,20775-bb0820212q-0-2.tgz,document-source,VOLUME13_ISSUE16_FRIDAYMAY21_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 13, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb9011410n,Object,20775-bb9011410n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/25/1991,,25-Feb-91,,2/25/1991,,20775-bb9011410n-0-2.tgz,document-source,VOLUME72_ISSUE15_MONDAYFEBRUARY25_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 72, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb8738498d,Object,20775-bb8738498d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/29/2010,,29-Nov-10,,11/29/2010,,,,11_29_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb8124032h,Object,20775-bb8124032h-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,11/20/1973,,20-Nov-73,,11/20/1973,,20775-bb8124032h-0-2.tgz,document-source,VOLUME20_ISSUE17_TUESDAYNOVEMBER20_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 20, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb00694741,Object,20775-bb00694741-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/13/2011,,13-Oct-11,,10/13/2011,,,,10_13_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb4335725z,Object,20775-bb4335725z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/14/2009,,14-Jan-09,,1/14/2009,,,,01_14_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb1298194c,Object,20775-bb1298194c-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,1/30/2012,,30-Jan-12,,1/30/2012,,,,2012-01-30.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb81240331,Object,20775-bb81240331-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,UCSD Guardian,Triton Times,Guardian,,,,,,,,,,,,,2/15/1980,,15-Feb-80,,2/15/1980,,20775-bb81240331-0-2.tgz,document-source,VOLUME39_ISSUE30_FRIDAYFEBRUARY15_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 30",, +http://library.ucsd.edu/ark:/20775/bb2902136b,Object,20775-bb2902136b-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/13/1970,,13-Oct-70,,10/13/1970,,20775-bb2902136b-0-2.tgz,document-source,VOLUME11_ISSUE5_TUESDAYOCTOBER13_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 11, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb9420971n,Object,20775-bb9420971n-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,10/10/1996,,10-Oct-96,,10/10/1996,,20775-bb9420971n-0-2.tgz,document-source,VOLUME89_ISSUE5_THURSDAYOCTOBER10_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 89, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb3960168k,Object,20775-bb3960168k-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,11/18/1985,,18-Nov-85,,11/18/1985,,20775-bb3960168k-0-2.tgz,document-source,VOLUME56_ISSUE16_MONDAYNOVEMBER18_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 56, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb1298028m,Object,20775-bb1298028m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,1/13/2000,,13-Jan-00,,1/13/2000,,20775-bb1298028m-0-2.tgz,document-source,VOLUME99_ISSUE2_THURSDAYJANUARY13_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 99, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb90114136,Object,20775-bb90114136-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,4/20/1998,,20-Apr-98,,4/20/1998,,20775-bb90114136-0-2.tgz,document-source,VOLUME94_ISSUE7_MONDAYAPRIL20_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 94, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb78173429,Object,2013-10-03.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/3/2013,,3-Oct-13,,10/3/2013,,,,2013-10-03.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 3",,Newspaper +http://library.ucsd.edu/ark:/20775/bb6178626q,Object,20775-bb6178626q-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,11/17/1997,,17-Nov-97,,11/17/1997,,20775-bb6178626q-0-2.tgz,document-source,VOLUME92_ISSUE16_MONDAYNOVEMBER17_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 92, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb6827096h,Object,20775-bb6827096h-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,9/26/1972,,26-Sep-72,,9/26/1972,,20775-bb6827096h-0-2.tgz,document-source,VOLUME17_ISSUE1_TUESDAYSEPTEMBER26_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 17, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb7202520p,Object,20775-bb7202520p-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,6/1/1977,,1-Jun-77,,6/1/1977,,20775-bb7202520p-0-2.tgz,document-source,VOLUME31_ISSUE25_WEDNESDAYJUNE1_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 31, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb9932924q,Object,20775-bb9932924q-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Triton Times,Daily Guardian,The Guardian,Guardian,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,3/29/1999,,29-Mar-99,,3/29/1999,,20775-bb9932924q-0-2.tgz,document-source,VOLUME97_ISSUE1_MONDAYMARCH29_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 97, Issue 1","Volume 97, Issue 1", +http://library.ucsd.edu/ark:/20775/bb72025216,Object,20775-bb72025216-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,11/17/1976,,17-Nov-76,,11/17/1976,,20775-bb72025216-0-2.tgz,document-source,VOLUME29_ISSUE24_WEDNESDAYNOVEMBER17_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 29, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb91484211,Object,2014-05-29.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/29/2014,,29-May-14,,5/29/2014,,,,2014-05-29.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 58",,Newspaper +http://library.ucsd.edu/ark:/20775/bb2663230b,Object,20775-bb2663230b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/4/1988,,4-Feb-88,,2/4/1988,,20775-bb2663230b-0-2.tgz,document-source,VOLUME59_ISSUE30_THURSDAYFEBRUARY4_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 59, Issue 30",, +http://library.ucsd.edu/ark:/20775/bb29704041,Object,20775-bb29704041-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,5/11/1973,,11-May-73,,5/11/1973,,20775-bb29704041-0-2.tgz,document-source,VOLUME19_ISSUE12_FRIDAYMAY11_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 19, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb7953504h,Object,20775-bb7953504h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/2/2008,,2-Jun-08,,6/2/2008,,,,06_02_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb94209725,Object,20775-bb94209725-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,Daily Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,10/11/1978,,11-Oct-78,,10/11/1978,,20775-bb94209725-0-2.tgz,document-source,VOLUME35_ISSUE9_WEDNESDAYOCTOBER11_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 35, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb8021643m,Object,20775-bb8021643m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,11/28/1994,,28-Nov-94,,11/28/1994,,20775-bb8021643m-0-2.tgz,document-source,VOLUME83_ISSUE19_MONDAYNOVEMBER28_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 83, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb7134426z,Object,20775-bb7134426z-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,5/24/2012,,24-May-12,,5/24/2012,,,,2012-05-24.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 56",, +http://library.ucsd.edu/ark:/20775/bb39601672,Object,20775-bb39601672-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/18/1986,,18-Feb-86,,2/18/1986,,20775-bb39601672-0-2.tgz,document-source,VOLUME57_ISSUE13_TUESDAYFEBRUARY18_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 57, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb91138004,Object,20775-bb91138004-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/30/2003,,30-Jan-03,,1/30/2003,,20775-bb91138004-0-2.tgz,document-source,VOLUME108_ISSUE8_THURSDAYJANUARY30_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 108, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb18099810,Object,20775-bb18099810-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,11/3/1970,,3-Nov-70,,11/3/1970,,20775-bb18099810-0-2.tgz,document-source,VOLUME11_ISSUE11_TUESDAYNOVEMBER3_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 11, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb5154882q,Object,20775-bb5154882q-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,5/7/2012,,7-May-12,,5/7/2012,,,,2012-05-07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 51",, +http://library.ucsd.edu/ark:/20775/bb1400425t,Object,20775-bb1400425t-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,UCSD Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/24/1980,,24-Apr-80,,4/24/1980,,20775-bb1400425t-0-2.tgz,document-source,VOLUME40_ISSUE19_THURSDAYAPRIL24_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb5325860p,Object,2014-02-03.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/3/2014,,3-Feb-14,,2/3/2014,,,,2014-02-03.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 29",,Newspaper +http://library.ucsd.edu/ark:/20775/bb67588309,Object,20775-bb67588309-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,11/18/1975,,18-Nov-75,,11/18/1975,,20775-bb67588309-0-2.tgz,document-source,VOLUME26_ISSUE26_WEDNESDAYNOVEMBER18_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb79192463,Object,20775-bb79192463-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,12/3/1992,,3-Dec-92,,12/3/1992,,20775-bb79192463-0-2.tgz,document-source,VOLUME77_ISSUE20_THURSDAYDECEMBER3_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 77, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb8124030g,Object,20775-bb8124030g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,2/17/1994,,17-Feb-94,,2/17/1994,,20775-bb8124030g-0-2.tgz,document-source,VOLUME81_ISSUE14_THURSDAYFEBRUARY17_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 81, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb23901915,Object,20775-bb23901915-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,11/3/1988,,3-Nov-88,,11/3/1988,,20775-bb23901915-0-2.tgz,document-source,VOLUME65_ISSUE13_THURSDAYNOVEMBER3_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 65, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb9011412p,Object,20775-bb9011412p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,3/10/1986,,10-Mar-86,,3/10/1986,,,,VOLUME57_ISSUE19_MONDAYMARCH10_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 57, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb00352191,Object,20775-bb00352191-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/4/1991,,4-Nov-91,,11/4/1991,,20775-bb00352191-0-2.tgz,document-source,VOLUME74_ISSUE12_MONDAYNOVEMBER4_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 74, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb81240310,Object,20775-bb81240310-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,UCSD Guardian,The Guardian,Triton Times,,,,,,,,,,,,,6/4/1980,,4-Jun-80,,6/4/1980,,20775-bb81240310-0-2.tgz,document-source,VOLUME40_ISSUE47_WEDNESDAYJUNE4_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 47",, +http://library.ucsd.edu/ark:/20775/bb2970403h,Object,20775-bb2970403h-0-1.pdf,document-service,text,,The Guardian,,,,Daily Guardian,Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,6/4/1981,,4-Jun-81,,6/4/1981,,20775-bb2970403h-0-2.tgz,document-source,VOLUME43_ISSUE22_THURSDAYJUNE4_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb3482473p,Object,20775-bb3482473p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/29/2008,,29-Sep-08,,9/29/2008,,,,09_29_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb3960166j,Object,20775-bb3960166j-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/10/1997,,10-Nov-97,,11/10/1997,,20775-bb3960166j-0-2.tgz,document-source,VOLUME92_ISSUE14_MONDAYNOVEMBER10_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 92, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb8397068n,Object,20775-bb8397068n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/11/1992,,11-May-92,,5/11/1992,,20775-bb8397068n-0-2.tgz,document-source,VOLUME76_ISSUE13_MONDAYMAY11_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 76, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb7509814j,Object,20775-bb7509814j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/29/2010,,29-Mar-10,,3/29/2010,,,,03_29_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 41",, +http://library.ucsd.edu/ark:/20775/bb3141047j,Object,20775-bb3141047j-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,4/13/1977,,13-Apr-77,,4/13/1977,,20775-bb3141047j-0-2.tgz,document-source,VOLUME31_ISSUE5_WEDNESDAYAPRIL13_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 31, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb4472124c,Object,20775-bb4472124c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,3/4/2002,,4-Mar-02,,3/4/2002,,20775-bb4472124c-0-2.tgz,document-source,VOLUME105_ISSUE17_MONDAYMARCH4_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 105, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb2219540c,Object,20775-bb2219540c-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/14/1976,,14-Jan-76,,1/14/1976,,20775-bb2219540c-0-2.tgz,document-source,VOLUME27_ISSUE5_WEDNESDAYJANUARY14_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 27, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb5223108m,Object,20775-bb5223108m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/6/2011,,6-Jan-11,,1/6/2011,,,,01_06_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb7065999b,Object,20775-bb7065999b-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,6/6/1983,,6-Jun-83,,6/6/1983,,20775-bb7065999b-0-2.tgz,document-source,VOLUME49_ISSUE19_MONDAYJUNE6_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 49, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb80216423,Object,20775-bb80216423-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,4/3/1973,,3-Apr-73,,4/3/1973,,20775-bb80216423-0-2.tgz,document-source,VOLUME19_ISSUE1_TUESDAYAPRIL3_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 19, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb81922924,Object,20775-bb81922924-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/26/1988,,26-May-88,,5/26/1988,,20775-bb81922924-0-2.tgz,document-source,VOLUME64_ISSUE16_THURSDAYMAY26_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 64, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb4472123v,Object,20775-bb4472123v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/20/2006,,20-Nov-06,,11/20/2006,,20775-bb4472123v-0-2.tgz,document-source,MONDAYNOVEMBER20_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 119, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb1605201n,Object,20775-bb1605201n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/21/1992,,21-May-92,,5/21/1992,,20775-bb1605201n-0-2.tgz,document-source,VOLUME76_ISSUE16_THURSDAYMAY21_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 76, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb6451663g,Object,20775-bb6451663g-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,1/10/1980,,10-Jan-80,,1/10/1980,,20775-bb6451663g-0-2.tgz,document-source,VOLUME39_ISSUE4_THURSDAYJANUARY10_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb3482350q,Object,20775-bb3482350q-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,11/22/1967,,22-Nov-67,,11/22/1967,,20775-bb3482350q-0-2.tgz,document-source,VOLUME2_ISSUE5_NOVEMBER22_1967.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 2, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb6383406v,Object,20775-bb6383406v-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,2/16/1977,,16-Feb-77,,2/16/1977,,20775-bb6383406v-0-2.tgz,document-source,VOLUME30_ISSUE17_WEDNESDAYFEBRUARY16_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 30, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb0376519b,Object,20775-bb0376519b-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,4/30/1992,,30-Apr-92,,4/30/1992,,20775-bb0376519b-0-2.tgz,document-source,VOLUME76_ISSUE10_THURSDAYAPRIL30_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 76, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb80898983,Object,20775-bb80898983-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,6/6/2002,,6-Jun-02,,6/6/2002,,20775-bb80898983-0-2.tgz,document-source,VOLUME106_ISSUE20_THURSDAYJUNE6_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 106, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb91138046,Object,20775-bb91138046-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/5/1980,,5-May-80,,5/5/1980,,20775-bb91138046-0-2.tgz,document-source,VOLUME40_ISSUE26_MONDAYMAY5_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb7168390k,Object,20775-bb7168390k-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,5/23/2005,,23-May-05,,5/23/2005,,20775-bb7168390k-0-2.tgz,document-source,VOLUME115_ISSUE17_MONDAYMAY23_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 115, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb75098152,Object,20775-bb75098152-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/2/2009,,2-Apr-09,,4/2/2009,,,,04_02_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb7748597d,Object,20775-bb7748597d-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,Triton Times,UCSD Guardian,The Guardian,,,,,,,,,,,,,3/12/1980,,12-Mar-80,,3/12/1980,,20775-bb7748597d-0-2.tgz,document-source,VOLUME39_ISSUE47_WEDNESDAYMARCH12_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 47",, +http://library.ucsd.edu/ark:/20775/bb6724706q,Object,20775-bb6724706q-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,10/1/1979,,1-Oct-79,,10/1/1979,,20775-bb6724706q-0-2.tgz,document-source,VOLUME38_ISSUE7_MONDAYOCTOBER1_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb6451662z,Object,20775-bb6451662z-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,11/15/1968,,15-Nov-68,,11/15/1968,,20775-bb6451662z-0-2.tgz,document-source,VOLUME5_ISSUE7_NOVEMBER15_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 5, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb99329236,Object,20775-bb99329236-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,11/7/1985,,7-Nov-85,,11/7/1985,,20775-bb99329236-0-2.tgz,document-source,VOLUME56_ISSUE13_THURSDAYNOVEMBER7_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 56, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb3584743r,Object,20775-bb3584743r-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,3/14/2002,,14-Mar-02,,3/14/2002,,20775-bb3584743r-0-2.tgz,document-source,VOLUME105_ISSUE19_THURSDAYMARCH14_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 105, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb6622436n,Object,20775-bb6622436n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/30/2009,,30-Apr-09,,4/30/2009,,,,04_30_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb99329215,Object,20775-bb99329215-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,10/18/1999,,18-Oct-99,,10/18/1999,,20775-bb99329215-0-2.tgz,document-source,VOLUME98_ISSUE6_MONDAYOCTOBER18_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 98, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb8192291m,Object,20775-bb8192291m-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,11/22/1978,,22-Nov-78,,11/22/1978,,20775-bb8192291m-0-2.tgz,document-source,VOLUME35_ISSUE27_WEDNESDAYNOVEMBER22_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 35, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb0137614d,Object,20775-bb0137614d-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/14/1969,,14-Nov-69,,11/14/1969,,20775-bb0137614d-0-2.tgz,document-source,VOLUME8_ISSUE7_NOVEMBER14_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 8, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb65541739,Object,20775-bb65541739-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/22/2010,,22-Nov-10,,11/22/2010,,,,11_22_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb33800836,Object,20775-bb33800836-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/9/2009,,9-Nov-09,,11/9/2009,,,,11_09_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb2731614m,Object,20775-bb2731614m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/12/2009,,12-Nov-09,,11/12/2009,,,,11_12_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb8807119h,Object,2014-10-20.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/20/2014,,20-Oct-14,,10/20/2014,,,,2014-10-20.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 6",,Newspaper +http://library.ucsd.edu/ark:/20775/bb34823538,Object,20775-bb34823538-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/18/1994,,18-Jan-94,,1/18/1994,,20775-bb34823538-0-2.tgz,document-source,VOLUME81_ISSUE5_TUESDAYJANUARY18_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 81, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb31410482,Object,20775-bb31410482-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,4/8/1996,,8-Apr-96,,4/8/1996,,20775-bb31410482-0-2.tgz,document-source,VOLUME88_ISSUE3_MONDAYAPRIL8_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 88, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb99671737,Object,20775-bb99671737-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/20/2008,,20-Oct-08,,10/20/2008,,,,10_20_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb3038659x,Object,20775-bb3038659x-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/20/1995,,20-Apr-95,,4/20/1995,,20775-bb3038659x-0-2.tgz,document-source,VOLUME85_ISSUE6_THURSDAYAPRIL20_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 85, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb16052046,Object,20775-bb16052046-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/25/1993,,25-Feb-93,,2/25/1993,,20775-bb16052046-0-2.tgz,document-source,VOLUME78_ISSUE16_THURSDAYFEBRUARY25_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 78, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb82946787,Object,20775-bb82946787-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/12/1984,,12-Jan-84,,1/12/1984,,20775-bb82946787-0-2.tgz,document-source,VOLUME51_ISSUE2_THURSDAYJANUARY12_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 51, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb37895203,Object,20775-bb37895203-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/26/1979,,26-Oct-79,,10/26/1979,,20775-bb37895203-0-2.tgz,document-source,VOLUME38_ISSUE26_FRIDAYOCTOBER26_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb0751955j,Object,20775-bb0751955j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,2/19/1998,,19-Feb-98,,2/19/1998,,20775-bb0751955j-0-2.tgz,document-source,VOLUME93_ISSUE14_THURSDAYFEBRUARY19_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 93, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb33799602,Object,20775-bb33799602-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,11/26/1975,,26-Nov-75,,11/26/1975,,20775-bb33799602-0-2.tgz,document-source,VOLUME26_ISSUE29_WEDNESDAYNOVEMBER26_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb38920368,Object,20775-bb38920368-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/11/2010,,11-Feb-10,,2/11/2010,,,,02_11_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 32",, +http://library.ucsd.edu/ark:/20775/bb1912373p,Object,20775-bb1912373p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/16/1984,,16-Feb-84,,2/16/1984,,20775-bb1912373p-0-2.tgz,document-source,VOLUME51_ISSUE12_FEBRUARY16_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 51, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb5461889h,Object,20775-bb5461889h-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,11/14/1990,,14-Nov-90,,11/14/1990,,20775-bb5461889h-0-2.tgz,document-source,VOLUME71_ISSUE22_WEDNESDAYNOVEMBER14_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 71, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb71683934,Object,20775-bb71683934-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,10/24/1972,,24-Oct-72,,10/24/1972,,20775-bb71683934-0-2.tgz,document-source,VOLUME17_ISSUE9_TUESDAYOCTOBER24_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 17, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb6383405b,Object,20775-bb6383405b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,11/3/2003,,3-Nov-03,,11/3/2003,,20775-bb6383405b-0-2.tgz,document-source,VOLUME110_ISSUE11_MONDAYNOVEMBER3_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 110, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb6485789s,Object,20775-bb6485789s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,1/30/1984,,30-Jan-84,,1/30/1984,,20775-bb6485789s-0-2.tgz,document-source,VOLUME51_ISSUE7_MONDAYJANUARY30_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 51, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb5666796r,Object,20775-bb5666796r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/22/2009,,22-Jan-09,,1/22/2009,,,,01_22_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb78856100,Object,2014-01-23.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/23/2014,,23-Jan-14,,1/23/2014,,,,2014-01-22.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 26",,Newspaper +http://library.ucsd.edu/ark:/20775/bb9932920n,Object,20775-bb9932920n-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,9/27/1974,9/27/1974,27-Sep-74,27-Sep-74,9/27/1974,9/27/1974,20775-bb9932920n-0-2.tgz,document-source,VOLUME23_ISSUE3_FRIDAYSEPTEMBER27_1974.pdf,VOLUME23_ISSUE3_FRIDAYSEPTEMBER27_1974.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 23, Issue 3","Volume 23, Issue 3", +http://library.ucsd.edu/ark:/20775/bb7816858q,Object,20775-bb7816858q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,3/7/1985,,7-Mar-85,,3/7/1985,,20775-bb7816858q-0-2.tgz,document-source,VOLUME54_ISSUE18_THURSDAYMARCH7_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 54, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb9113801n,Object,20775-bb9113801n-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,2/15/1972,,15-Feb-72,,2/15/1972,,20775-bb9113801n-0-2.tgz,document-source,VOLUME15_ISSUE13_TUESDAYFEBRUARY15_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 15, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb0137613w,Object,20775-bb0137613w-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/4/1972,,4-Apr-72,,4/4/1972,,20775-bb0137613w-0-2.tgz,document-source,VOLUME16_ISSUE3_TUESDAYAPRIL4_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 16, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb6144486x,Object,20775-bb6144486x-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/1/1978,,1-Mar-78,,3/1/1978,,20775-bb6144486x-0-2.tgz,document-source,VOLUME33_ISSUE22_WEDNESDAYMARCH1_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 33, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb35847427,Object,20775-bb35847427-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,2/26/1987,,26-Feb-87,,2/26/1987,,,,VOLUME58_ISSUE36_THURSDAYFEBRUARY26_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 36",, +http://library.ucsd.edu/ark:/20775/bb4472126d,Object,20775-bb4472126d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/13/1999,,13-May-99,,5/13/1999,,20775-bb4472126d-0-2.tgz,document-source,VOLUME97_ISSUE14_THURSDAYMAY13_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 97, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb3789521m,Object,20775-bb3789521m-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,9/29/1976,,29-Sep-76,,9/29/1976,,20775-bb3789521m-0-2.tgz,document-source,VOLUME29_ISSUE3_WEDNESDAYSEPTEMBER29_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 29, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb2219542d,Object,20775-bb2219542d-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,1/17/1980,,17-Jan-80,,1/17/1980,,20775-bb2219542d-0-2.tgz,document-source,VOLUME39_ISSUE9_THURSDAYJANUARY17_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb80216402,Object,20775-bb80216402-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/7/1972,,7-Nov-72,,11/7/1972,,20775-bb80216402-0-2.tgz,document-source,VOLUME17_ISSUE13_TUESDAYNOVEMBER7_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 17, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb3141049k,Object,20775-bb3141049k-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,5/6/1970,,6-May-70,,5/6/1970,,20775-bb3141049k-0-2.tgz,document-source,VOLUME10_ISSUE10a_MAY6_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 10, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb4881845b,Object,20775-bb4881845b-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,4/26/2012,,26-Apr-12,,4/26/2012,,,,2012-04-26.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 48",, +http://library.ucsd.edu/ark:/20775/bb3482352r,Object,20775-bb3482352r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,3/4/1982,,4-Mar-82,,3/4/1982,,20775-bb3482352r-0-2.tgz,document-source,VOLUME45_ISSUE18_THURSDAYMARCH4_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb63492706,Object,20775-bb63492706-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,10/31/1996,,31-Oct-96,,10/31/1996,,20775-bb63492706-0-2.tgz,document-source,VOLUME89_ISSUE11_THURSDAYOCTOBER31_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 89, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb4472125w,Object,20775-bb4472125w-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,3/9/1977,,9-Mar-77,,3/9/1977,,20775-bb4472125w-0-2.tgz,document-source,VOLUME30_ISSUE25_WEDNESDAYMARCH9_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 30, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb2219541w,Object,20775-bb2219541w-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,UCSD Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/16/1979,,16-Apr-79,,4/16/1979,,20775-bb2219541w-0-2.tgz,document-source,VOLUME37_ISSUE7_MONDAYAPRIL16_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb6451661f,Object,20775-bb6451661f-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,3/9/1987,,9-Mar-87,,3/9/1987,,20775-bb6451661f-0-2.tgz,document-source,VOLUME58_ISSUE39_MONDAYMARCH9_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 39",, +http://library.ucsd.edu/ark:/20775/bb91138025,Object,20775-bb91138025-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/27/1997,,27-May-97,,5/27/1997,,20775-bb91138025-0-2.tgz,document-source,VOLUME91_ISSUE17_TUESDAYMAY27_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 91, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb3892037s,Object,20775-bb3892037s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/18/2011,,18-Jan-11,,1/18/2011,,,,01_18_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb7168392m,Object,20775-bb7168392m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,11/30/1998,,30-Nov-98,,11/30/1998,,20775-bb7168392m-0-2.tgz,document-source,VOLUME95_ISSUE19_MONDAYNOVEMBER30_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 95, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb96257501,Object,20775-bb96257501-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/6/1970,,6-Oct-70,,10/6/1970,,20775-bb96257501-0-2.tgz,document-source,VOLUME11_ISSUE3_OCTOBER6_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 11, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb7031869n,Object,20775-bb7031869n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/5/1987,,5-Feb-87,,2/5/1987,,,,VOLUME58_ISSUE30_THURSDAYFEBRUARY5_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 30",, +http://library.ucsd.edu/ark:/20775/bb6144487f,Object,20775-bb6144487f-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,5/30/2006,,30-May-06,,5/30/2006,,20775-bb6144487f-0-2.tgz,document-source,TUESDAYMAY30_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 118, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb7407298m,Object,20775-bb7407298m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/24/2000,,24-Jan-00,,1/24/2000,,20775-bb7407298m-0-2.tgz,document-source,VOLUME99_ISSUE5_MONDAYJANUARY24_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 99, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb0205869p,Object,20775-bb0205869p-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,5/20/2002,,20-May-02,,5/20/2002,,20775-bb0205869p-0-2.tgz,document-source,VOLUME106_ISSUE15_MONDAYMAY20_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 106, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb3584741q,Object,20775-bb3584741q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,3/16/2000,,16-Mar-00,,3/16/2000,,20775-bb3584741q-0-2.tgz,document-source,VOLUME99_ISSUE20_THURSDAYMARCH16_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 99, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb6451660x,Object,20775-bb6451660x-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Triton Times,UCSD Guardian,Guardian,,,,,,,,,,,,,4/9/1980,,9-Apr-80,,4/9/1980,,20775-bb6451660x-0-2.tgz,document-source,VOLUME40_ISSUE8_WEDNESDAYAPRIL9_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb27314864,Object,20775-bb27314864-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,10/6/2005,,6-Oct-05,,10/6/2005,,20775-bb27314864-0-2.tgz,document-source,VOLUME116_ISSUE5_THURSDAYOCTOBER6_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 116, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb0376518t,Object,20775-bb0376518t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/6/2003,,6-Oct-03,,10/6/2003,,20775-bb0376518t-0-2.tgz,document-source,VOLUME110_ISSUE4_MONDAYOCTOBER6_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 110, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb03082572,Object,20775-bb03082572-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/10/1988,,10-Mar-88,,3/10/1988,,20775-bb03082572-0-2.tgz,document-source,VOLUME60_ISSUE40_THURSDAYMARCH10_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 60, Issue 40",, +http://library.ucsd.edu/ark:/20775/bb16052025,Object,20775-bb16052025-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/2/1973,,2-Feb-73,,2/2/1973,,20775-bb16052025-0-2.tgz,document-source,VOLUME18_ISSUE8_FRIDAYFEBRUARY2_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 18, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb37895224,Object,20775-bb37895224-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/28/1982,,28-Jan-82,,1/28/1982,,20775-bb37895224-0-2.tgz,document-source,VOLUME45_ISSUE8_THURSDAYJANUARY28_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb4267826j,Object,2013-05-28.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/28/2013,,28-May-13,,5/28/2013,,,,2013-05-28.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 57",,Newspaper +http://library.ucsd.edu/ark:/20775/bb3004656k,Object,20775-bb3004656k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/14/2010,,14-Oct-10,,10/14/2010,,,,10_14_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb4267339b,Object,20775-bb4267339b-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,1/9/1970,,9-Jan-70,,1/9/1970,,20775-bb4267339b-0-2.tgz,document-source,VOLUME9_ISSUE1_JANUARY9_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 9, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb74072994,Object,20775-bb74072994-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,6/7/1990,,7-Jun-90,,6/7/1990,,20775-bb74072994-0-2.tgz,document-source,VOLUME70_ISSUE20_THURSDAYJUNE7_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 70, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb6383407c,Object,20775-bb6383407c-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,1/12/1977,,12-Jan-77,,1/12/1977,,20775-bb6383407c-0-2.tgz,document-source,VOLUME30_ISSUE2_WEDNESDAYJANUARY12_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 30, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb1912375q,Object,20775-bb1912375q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/4/2002,,4-Feb-02,,2/4/2002,,20775-bb1912375q-0-2.tgz,document-source,VOLUME105_ISSUE9_MONDAYFEBRUARY4_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 105, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb9489228q,Object,20775-bb9489228q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/12/1999,,12-Apr-99,,4/12/1999,,20775-bb9489228q-0-2.tgz,document-source,VOLUME97_ISSUE5_MONDAYAPRIL12_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 97, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb35506085,Object,20775-bb35506085-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,10/8/1984,,8-Oct-84,,10/8/1984,,20775-bb35506085-0-2.tgz,document-source,VOLUME53_ISSUE7_MONDAYOCTOBER8_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 53, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb81922903,Object,20775-bb81922903-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/21/1972,,21-Nov-72,,11/21/1972,,20775-bb81922903-0-2.tgz,document-source,VOLUME17_ISSUE17_TUESDAYNOVEMBER21_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 17, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb19123725,Object,20775-bb19123725-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/23/1981,,23-Nov-81,,11/23/1981,,20775-bb19123725-0-2.tgz,document-source,VOLUME44_ISSUE20_MONDAYNOVEMBER23_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 44, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb2219543x,Object,20775-bb2219543x-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/6/1971,,6-Apr-71,,4/6/1971,,20775-bb2219543x-0-2.tgz,document-source,VOLUME13_ISSUE3_TUESDAYAPRIL6_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 13, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb4472127x,Object,20775-bb4472127x-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,Triton Times,The Guardian,UCSD Guardian,,,,,,,,,,,,,11/26/1979,,26-Nov-79,,11/26/1979,,20775-bb4472127x-0-2.tgz,document-source,VOLUME38_ISSUE45_MONDAYNOVEMBER26_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 45",, +http://library.ucsd.edu/ark:/20775/bb50182040,Object,20775-bb50182040-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,9/24/2002,,24-Sep-02,,9/24/2002,,20775-bb50182040-0-2.tgz,document-source,VOLUME107_ISSUE1_TUESDAYSEPTEMBER24_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 107, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb6383402s,Object,20775-bb6383402s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,5/10/1990,,10-May-90,,5/10/1990,,20775-bb6383402s-0-2.tgz,document-source,VOLUME70_ISSUE12_THURSDAYMAY10_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 70, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb8670234d,Object,20775-bb8670234d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/9/2008,,9-Oct-08,,10/9/2008,,,,10_09_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb9625751j,Object,20775-bb9625751j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/6/1989,,6-Feb-89,,2/6/1989,,20775-bb9625751j-0-2.tgz,document-source,VOLUME66_ISSUE10_MONDAYFEBRUARY6_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 66, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb4437992v,Object,20775-bb4437992v-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,2/27/1976,,27-Feb-76,,2/27/1976,,20775-bb4437992v-0-2.tgz,document-source,VOLUME27_ISSUE23_FRIDAYFEBRUARY27_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb5018202z,Object,20775-bb5018202z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/17/2005,,17-Feb-05,,2/17/2005,,20775-bb5018202z-0-2.tgz,document-source,VOLUME114_ISSUE14_THURSDAYFEBRUARY17_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 114, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb9045539h,Object,20775-bb9045539h-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,Triton Times,UCSD Guardian,The Guardian,,,,,,,,,,,,,5/8/1980,,8-May-80,,5/8/1980,,20775-bb9045539h-0-2.tgz,document-source,VOLUME40_ISSUE29_THURSDAYMAY8_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb6554174t,Object,20775-bb6554174t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/27/2009,,27-Apr-09,,4/27/2009,,,,04_27_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb4676903t,Object,20775-bb4676903t-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,5/14/1979,,14-May-79,,5/14/1979,,20775-bb4676903t-0-2.tgz,document-source,VOLUME37_ISSUE19_MONDAYMAY14_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb9659882r,Object,20775-bb9659882r-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Daily Guardian,The Guardian,Guardian,Triton Times,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,3/5/1992,3/5/1992,5-Mar-92,5-Mar-92,3/5/1992,3/5/1992,20775-bb9659882r-0-2.tgz,document-source,VOLUME75_ISSUE18_THURSDAYMARCH5_1992.pdf,VOLUME75_ISSUE18_THURSDAYMARCH5_1992.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 75, Issue 18","Volume 75, Issue 18", +http://library.ucsd.edu/ark:/20775/bb67247035,Object,20775-bb67247035-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,4/6/2000,,6-Apr-00,,4/6/2000,,20775-bb67247035-0-2.tgz,document-source,VOLUME100_ISSUE1_THURSDAYAPRIL6_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 100, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb3789523n,Object,20775-bb3789523n-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,6/1/1998,,1-Jun-98,,6/1/1998,,20775-bb3789523n-0-2.tgz,document-source,VOLUME94_ISSUE19_MONDAYJUNE1_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 94, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb8840762m,Object,20775-bb8840762m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/10/2003,,10-Feb-03,,2/10/2003,,20775-bb8840762m-0-2.tgz,document-source,VOLUME108_ISSUE11_MONDAYFEBRUARY10_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 108, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb35847406,Object,20775-bb35847406-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/25/1989,,25-May-89,,5/25/1989,,20775-bb35847406-0-2.tgz,document-source,VOLUME67_ISSUE16_THURSDAYMAY25_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 67, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb81922966,Object,20775-bb81922966-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/21/2004,,21-Oct-04,,10/21/2004,,20775-bb81922966-0-2.tgz,document-source,VOLUME113_ISSUE9_THURSDAYOCTOBER21_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 113, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb6144488z,Object,20775-bb6144488z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,4/13/1998,,13-Apr-98,,4/13/1998,,20775-bb6144488z-0-2.tgz,document-source,VOLUME94_ISSUE5_MONDAYAPRIL13_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 94, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb0171741s,Object,20775-bb0171741s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,1/28/1999,,28-Jan-99,,1/28/1999,,20775-bb0171741s-0-2.tgz,document-source,VOLUME96_ISSUE8_THURSDAYJANUARY28_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 96, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb3891908g,Object,20775-bb3891908g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,9/26/1994,,26-Sep-94,,9/26/1994,,20775-bb3891908g-0-2.tgz,document-source,VOLUME83_ISSUE2_MONDAYSEPTEMBER26_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 83, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb2219544f,Object,20775-bb2219544f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,5/19/1986,,19-May-86,,5/19/1986,,,,VOLUME58_ISSUE15_MONDAYMAY19_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb78168576,Object,20775-bb78168576-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,5/26/1978,,26-May-78,,5/26/1978,,20775-bb78168576-0-2.tgz,document-source,VOLUME34_ISSUE24_FRIDAYMAY26_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 34, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb01717429,Object,20775-bb01717429-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,6/1/1971,,1-Jun-71,,6/1/1971,,20775-bb01717429-0-2.tgz,document-source,VOLUME13_ISSUE19_TUESDAYJUNE1_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 13, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb94892297,Object,20775-bb94892297-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/29/1990,,29-Jan-90,,1/29/1990,,20775-bb94892297-0-2.tgz,document-source,VOLUME69_ISSUE8_MONDAYJANUARY29_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 69, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb6724702n,Object,20775-bb6724702n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,11/13/1989,,13-Nov-89,,11/13/1989,,20775-bb6724702n-0-2.tgz,document-source,VOLUME68_ISSUE16_MONDAYNOVEMBER13_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 68, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb70659979,Object,20775-bb70659979-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,9/25/2000,,25-Sep-00,,9/25/2000,,20775-bb70659979-0-2.tgz,document-source,VOLUME101_ISSUE2_MONDAYSEPTEMBER25_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 101, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb88407634,Object,20775-bb88407634-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,11/2/1977,,2-Nov-77,,11/2/1977,,20775-bb88407634-0-2.tgz,document-source,VOLUME32_ISSUE18_WEDNESDAYNOVEMBER2_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb6144489g,Object,20775-bb6144489g-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,3/12/1987,,12-Mar-87,,3/12/1987,,20775-bb6144489g-0-2.tgz,document-source,VOLUME58_ISSUE40_THURSDAYMARCH12_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 40",, +http://library.ucsd.edu/ark:/20775/bb4437993c,Object,20775-bb4437993c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/5/2003,,5-May-03,,5/5/2003,,20775-bb4437993c-0-2.tgz,document-source,VOLUME109_ISSUE11_MONDAYMAY5_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 109, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb5018203g,Object,20775-bb5018203g-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,11/4/1974,,4-Nov-74,,11/4/1974,,20775-bb5018203g-0-2.tgz,document-source,VOLUME23_ISSUE19_MONDAYNOVEMBER4_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 23, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb75096883,Object,20775-bb75096883-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/24/1988,,24-Oct-88,,10/24/1988,,20775-bb75096883-0-2.tgz,document-source,VOLUME65_ISSUE10_MONDAYOCTOBER24_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 65, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb96257522,Object,20775-bb96257522-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/18/1975,,18-Apr-75,,4/18/1975,,20775-bb96257522-0-2.tgz,document-source,VOLUME25_ISSUE9_FRIDAYAPRIL18_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 25, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb63834039,Object,20775-bb63834039-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/1/1995,,1-May-95,,5/1/1995,,20775-bb63834039-0-2.tgz,document-source,VOLUME85_ISSUE9_MONDAYMAY1_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 85, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb8874886w,Object,20775-bb8874886w-0-1.pdf,document-service,text,,The Guardian,,,,Guardian,Triton Times,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,5/11/1981,,11-May-81,,5/11/1981,,20775-bb8874886w-0-2.tgz,document-source,VOLUME43_ISSUE14_MONDAYMAY11_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb88407655,Object,20775-bb88407655-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/28/1991,,28-Feb-91,,2/28/1991,,20775-bb88407655-0-2.tgz,document-source,VOLUME72_ISSUE16_THURSDAYFEBRUARY28_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 72, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb8192295p,Object,20775-bb8192295p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,10/12/2000,,12-Oct-00,,10/12/2000,,20775-bb8192295p-0-2.tgz,document-source,VOLUME101_ISSUE7_THURSDAYOCTOBER12_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 101, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb6042101z,Object,20775-bb6042101z-0-1.pdf,document-service,text,,The Guardian,,,,Triton Times,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,2/19/1981,,19-Feb-81,,2/19/1981,,20775-bb6042101z-0-2.tgz,document-source,VOLUME42_ISSUE14_THURSDAYFEBRUARY19_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb0376516s,Object,20775-bb0376516s-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/26/1976,,26-Apr-76,,4/26/1976,,20775-bb0376516s-0-2.tgz,document-source,VOLUME28_ISSUE13_MONDAYAPRIL26_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 28, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb8874887d,Object,20775-bb8874887d-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,2/20/1980,,20-Feb-80,,2/20/1980,,20775-bb8874887d-0-2.tgz,document-source,VOLUME39_ISSUE32_WEDNESDAYFEBRUARY20_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 32",, +http://library.ucsd.edu/ark:/20775/bb02058685,Object,20775-bb02058685-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/7/1985,,7-Jan-85,,1/7/1985,,20775-bb02058685-0-2.tgz,document-source,VOLUME54_ISSUE1_MONDAYJANUARY7_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 54, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb7065996s,Object,20775-bb7065996s-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/9/1973,,9-Oct-73,,10/9/1973,,20775-bb7065996s-0-2.tgz,document-source,VOLUME20_ISSUE5_FRIDAYOCTOBER9_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 20, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb3038656c,Object,20775-bb3038656c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/19/1988,,19-May-88,,5/19/1988,,20775-bb3038656c-0-2.tgz,document-source,VOLUME64_ISSUE14_THURSDAYMAY19_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 64, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb03765179,Object,20775-bb03765179-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,2/9/1971,,9-Feb-71,,2/9/1971,,20775-bb03765179-0-2.tgz,document-source,VOLUME12_ISSUE11_TUESDAYFEBRUARY9_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 12, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb8807114x,Object,2013-01-24.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/24/2013,,24-Jan-13,,1/24/2013,,,,2013-01-24.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 26",,Newspaper +http://library.ucsd.edu/ark:/20775/bb50182061,Object,20775-bb50182061-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/5/1994,,5-May-94,,5/5/1994,,20775-bb50182061-0-2.tgz,document-source,VOLUME82_ISSUE12_THURSDAYMAY5_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 82, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb16052004,Object,20775-bb16052004-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/3/1994,,3-Feb-94,,2/3/1994,,20775-bb16052004-0-2.tgz,document-source,VOLUME81_ISSUE10_THURSDAYFEBRUARY3_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 81, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb6042102g,Object,20775-bb6042102g-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Triton Times,UCSD Guardian,Guardian,,,,,,,,,,,,,11/2/1979,,2-Nov-79,,11/2/1979,,20775-bb6042102g-0-2.tgz,document-source,VOLUME38_ISSUE31_FRIDAYNOVEMBER2_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 31",, +http://library.ucsd.edu/ark:/20775/bb17417186,Object,20775-bb17417186-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,5/2/1969,,2-May-69,,5/2/1969,,20775-bb17417186-0-2.tgz,document-source,VOLUME7_ISSUE5_MAY2_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 7, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb4676904b,Object,20775-bb4676904b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,4/7/1983,,7-Apr-83,,4/7/1983,,20775-bb4676904b-0-2.tgz,document-source,VOLUME49_ISSUE2_THURSDAYAPRIL7_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 49, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb6383404t,Object,20775-bb6383404t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,1/19/1989,,19-Jan-89,,1/19/1989,,20775-bb6383404t-0-2.tgz,document-source,VOLUME66_ISSUE5_THURSDAYJANUARY19_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 66, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb9625753k,Object,20775-bb9625753k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,4/17/2000,,17-Apr-00,,4/17/2000,,20775-bb9625753k-0-2.tgz,document-source,VOLUME100_ISSUE5_MONDAYAPRIL17_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 100, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb19123746,Object,20775-bb19123746-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/10/1994,,10-Jan-94,,1/10/1994,,20775-bb19123746-0-2.tgz,document-source,VOLUME81_ISSUE3_MONDAYJANUARY10_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 81, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb2219545z,Object,20775-bb2219545z-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/12/1971,,12-Oct-71,,10/12/1971,,20775-bb2219545z-0-2.tgz,document-source,VOLUME14_ISSUE5_TUESDAYOCTOBER12_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 14, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb54618880,Object,20775-bb54618880-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/22/1983,,22-Feb-83,,2/22/1983,,20775-bb54618880-0-2.tgz,document-source,VOLUME48_ISSUE15_TUESDAYFEBRUARY22_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 48, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb8840760k,Object,20775-bb8840760k-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,11/30/1979,,30-Nov-79,,11/30/1979,,20775-bb8840760k-0-2.tgz,document-source,VOLUME38_ISSUE51_FRIDAYNOVEMBER30_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 51",, +http://library.ucsd.edu/ark:/20775/bb8294679r,Object,20775-bb8294679r-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,5/12/1975,,12-May-75,,5/12/1975,,20775-bb8294679r-0-2.tgz,document-source,VOLUME25_ISSUE19_MONDAYMAY12_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 25, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb81922945,Object,20775-bb81922945-0-1.pdf,document-service,text,,The Guardian,,,,Daily Guardian,Triton Times,Guardian,UCSD Guardian,,,,,,,,,,,,,4/16/1981,,16-Apr-81,,4/16/1981,,20775-bb81922945-0-2.tgz,document-source,VOLUME43_ISSUE6_THURSDAYAPRIL16_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb67247056,Object,20775-bb67247056-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/15/1989,,15-May-89,,5/15/1989,,20775-bb67247056-0-2.tgz,document-source,VOLUME67_ISSUE13_MONDAYMAY15_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 67, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb4437990t,Object,20775-bb4437990t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/23/1995,,23-Feb-95,,2/23/1995,,20775-bb4437990t-0-2.tgz,document-source,VOLUME84_ISSUE14_THURSDAYFEBRUARY23_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 84, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb9659880q,Object,20775-bb9659880q-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,5/15/1973,5/15/1973,15-May-73,15-May-73,5/15/1973,5/15/1973,20775-bb9659880q-0-2.tgz,document-source,VOLUME19_ISSUE13_TUESDAYMAY15_1973.pdf,VOLUME19_ISSUE13_TUESDAYMAY15_1973.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 19, Issue 13","Volume 19, Issue 13", +http://library.ucsd.edu/ark:/20775/bb4676905v,Object,20775-bb4676905v-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/29/2001,,29-Jan-01,,1/29/2001,,20775-bb4676905v-0-2.tgz,document-source,VOLUME102_ISSUE7_MONDAYJANUARY29_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 102, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb6724704p,Object,20775-bb6724704p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,5/28/1991,,28-May-91,,5/28/1991,,20775-bb6724704p-0-2.tgz,document-source,VOLUME73_ISSUE17_TUESDAYMAY28_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 73, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb88407613,Object,20775-bb88407613-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,11/18/1974,,18-Nov-74,,11/18/1974,,20775-bb88407613-0-2.tgz,document-source,VOLUME23_ISSUE25_MONDAYNOVEMBER18_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 23, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb71001306,Object,20775-bb71001306-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/3/1984,,3-May-84,,5/3/1984,,20775-bb71001306-0-2.tgz,document-source,VOLUME52_ISSUE10_THURSDAYMAY3_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 52, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb9762752p,Object,2013-03-07.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/7/2013,,7-Mar-13,,3/7/2013,,,,2013-03-07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 38",,Newspaper +http://library.ucsd.edu/ark:/20775/bb01717408,Object,20775-bb01717408-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,1/20/1978,,20-Jan-78,,1/20/1978,,20775-bb01717408-0-2.tgz,document-source,VOLUME33_ISSUE6_FRIDAYJANUARY20_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 33, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb60421030,Object,20775-bb60421030-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/17/1984,,17-May-84,,5/17/1984,,20775-bb60421030-0-2.tgz,document-source,VOLUME52_ISSUE14_THURSDAYMAY17_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 52, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb78168597,Object,20775-bb78168597-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/4/1982,,4-Oct-82,,10/4/1982,,20775-bb78168597-0-2.tgz,document-source,VOLUME47_ISSUE4_MONDAYOCTOBER4_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb5018205h,Object,20775-bb5018205h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/9/1983,,9-May-83,,5/9/1983,,20775-bb5018205h-0-2.tgz,document-source,VOLUME49_ISSUE11_MONDAYMAY9_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 49, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb4437991b,Object,20775-bb4437991b-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,4/28/1970,,28-Apr-70,,4/28/1970,,20775-bb4437991b-0-2.tgz,document-source,VOLUME10_ISSUE8_APRIL28_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 10, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb96257543,Object,20775-bb96257543-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/30/1997,,30-Oct-97,,10/30/1997,,20775-bb96257543-0-2.tgz,document-source,VOLUME92_ISSUE11_THURSDAYOCTOBER30_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 92, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb75096862,Object,20775-bb75096862-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,9/21/1976,,21-Sep-76,,9/21/1976,,20775-bb75096862-0-2.tgz,document-source,VOLUME29_ISSUE1_TUESDAYSEPTEMBER21_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 29, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb1741717p,Object,20775-bb1741717p-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/10/1994,,10-Nov-94,,11/10/1994,,20775-bb1741717p-0-2.tgz,document-source,VOLUME83_ISSUE15_THURSDAYNOVEMBER10_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 83, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb3038657w,Object,20775-bb3038657w-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,2/24/1997,,24-Feb-97,,2/24/1997,,20775-bb3038657w-0-2.tgz,document-source,VOLUME90_ISSUE15_MONDAYFEBRUARY24_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 90, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb17077164,Object,20775-bb17077164-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/25/2010,,25-Feb-10,,2/25/2010,,,,02_25_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 36",, +http://library.ucsd.edu/ark:/20775/bb9284449b,Object,20775-bb9284449b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,3/11/1993,,11-Mar-93,,3/11/1993,,20775-bb9284449b-0-2.tgz,document-source,VOLUME78_ISSUE20_THURSDAYMARCH11_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 78, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb8874888x,Object,20775-bb8874888x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/19/1999,,19-Apr-99,,4/19/1999,,20775-bb8874888x-0-2.tgz,document-source,VOLUME97_ISSUE7_MONDAYAPRIL19_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 97, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb31410461,Object,20775-bb31410461-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,11/15/1999,,15-Nov-99,,11/15/1999,,20775-bb31410461-0-2.tgz,document-source,VOLUME98_ISSUE14_MONDAYNOVEMBER15_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 98, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb34823517,Object,20775-bb34823517-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,2/24/1978,,24-Feb-78,,2/24/1978,,20775-bb34823517-0-2.tgz,document-source,VOLUME33_ISSUE20_FRIDAYFEBRUARY24_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 33, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb8874889f,Object,20775-bb8874889f-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Triton Times,Guardian,UCSD Guardian,,,,,,,,,,,,,4/18/1980,,18-Apr-80,,4/18/1980,,20775-bb8874889f-0-2.tgz,document-source,VOLUME40_ISSUE15_FRIDAYAPRIL18_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb4949935f,Object,20775-bb4949935f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/27/2005,,27-Jan-05,,1/27/2005,,20775-bb4949935f-0-2.tgz,document-source,VOLUME114_ISSUE8_THURSDAYJANUARY27_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 114, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb8192293n,Object,20775-bb8192293n-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,2/15/1978,,15-Feb-78,,2/15/1978,,20775-bb8192293n-0-2.tgz,document-source,VOLUME33_ISSUE17_WEDNESDAYFEBRUARY15_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 33, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb9113803p,Object,20775-bb9113803p-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,5/24/1978,,24-May-78,,5/24/1978,,20775-bb9113803p-0-2.tgz,document-source,VOLUME34_ISSUE23_WEDNESDAYMAY24_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 34, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb02742545,Object,20775-bb02742545-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/17/2008,,17-Apr-08,,4/17/2008,,,,04_17_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb3926205j,Object,20775-bb3926205j-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,6/7/2012,,7-Jun-12,,6/7/2012,,,,2012-06-07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 60",, +http://library.ucsd.edu/ark:/20775/bb7065998t,Object,20775-bb7065998t-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/12/1968,,12-Apr-68,,4/12/1968,,20775-bb7065998t-0-2.tgz,document-source,VOLUME4_ISSUE2_APRIL12_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 4, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb45746369,Object,20775-bb45746369-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/11/2010,,11-Oct-10,,10/11/2010,,,,10_11_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb3038658d,Object,20775-bb3038658d-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,4/13/1987,,13-Apr-87,,4/13/1987,,20775-bb3038658d-0-2.tgz,document-source,VOLUME58_ISSUE45_MONDAYAPRIL13_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 45",, +http://library.ucsd.edu/ark:/20775/bb4676906c,Object,20775-bb4676906c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,12/1/1997,,1-Dec-97,,12/1/1997,,20775-bb4676906c-0-2.tgz,document-source,VOLUME92_ISSUE19_MONDAYDECEMBER1_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 92, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb5461887g,Object,20775-bb5461887g-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,2/12/1975,,12-Feb-75,,2/12/1975,,20775-bb5461887g-0-2.tgz,document-source,VOLUME24_ISSUE17_WEDNESDAYFEBRUARY12_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 24, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb1912371n,Object,20775-bb1912371n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,4/28/1994,,28-Apr-94,,4/28/1994,,20775-bb1912371n-0-2.tgz,document-source,VOLUME82_ISSUE10_THURSDAYAPRIL28_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 82, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb92504460,Object,20775-bb92504460-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/24/2008,,24-Jan-08,,1/24/2008,,,,01_24_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb6042100f,Object,20775-bb6042100f-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,11/30/1992,,30-Nov-92,,11/30/1992,,20775-bb6042100f-0-2.tgz,document-source,VOLUME77_ISSUE19_MONDAYNOVEMBER30_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 77, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb4301470n,Object,20775-bb4301470n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,3/9/1989,,9-Mar-89,,3/9/1989,,20775-bb4301470n-0-2.tgz,document-source,VOLUME66_ISSUE19_THURSDAYMARCH9_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 66, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb33458260,Object,20775-bb33458260-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,5/20/1993,,20-May-93,,5/20/1993,,20775-bb33458260-0-2.tgz,document-source,VOLUME79_ISSUE16_THURSDAYMAY20_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 79, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb8226416k,Object,20775-bb8226416k-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,5/11/1971,,11-May-71,,5/11/1971,,20775-bb8226416k-0-2.tgz,document-source,VOLUME13_ISSUE13_TUESDAYMAY11_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 13, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb24243164,Object,20775-bb24243164-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,10/17/1983,,17-Oct-83,,10/17/1983,,20775-bb24243164-0-2.tgz,document-source,VOLUME50_ISSUE8_MONDAYOCTOBER17_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 50, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb3618874h,Object,20775-bb3618874h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/14/1990,,14-May-90,,5/14/1990,,20775-bb3618874h-0-2.tgz,document-source,VOLUME70_ISSUE13_MONDAYMAY14_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 70, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb4881679z,Object,20775-bb4881679z-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/18/1972,,18-Apr-72,,4/18/1972,,20775-bb4881679z-0-2.tgz,document-source,VOLUME16_ISSUE7_TUESDAYAPRIL18_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 16, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb46769008,Object,20775-bb46769008-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,2/5/2004,,5-Feb-04,,2/5/2004,,20775-bb46769008-0-2.tgz,document-source,VOLUME111_ISSUE10_THURSDAYFEBRUARY5_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 111, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb6076237r,Object,20775-bb6076237r-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/2/1984,,2-Feb-84,,2/2/1984,,20775-bb6076237r-0-2.tgz,document-source,VOLUME51_ISSUE8_THURSDAYFEBRUARY2_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 51, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb16053275,Object,20775-bb16053275-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/15/2007,,15-Nov-07,,11/15/2007,,,,11_15_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb7680343w,Object,20775-bb7680343w-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/5/1987,,5-Jan-87,,1/5/1987,,,,VOLUME58_ISSUE21_MONDAYJANUARY5_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb20488926,Object,20775-bb20488926-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,2/4/1972,,4-Feb-72,,2/4/1972,,20775-bb20488926-0-2.tgz,document-source,VOLUME15_ISSUE10_FRIDAYFEBRUARY4_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 15, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb82605492,Object,20775-bb82605492-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/27/2004,,27-May-04,,5/27/2004,,20775-bb82605492-0-2.tgz,document-source,VOLUME112_ISSUE18_THURSDAYMAY27_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 112, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb5939713g,Object,20775-bb5939713g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,2/9/1989,,9-Feb-89,,2/9/1989,,20775-bb5939713g-0-2.tgz,document-source,VOLUME66_ISSUE11_THURSDAYFEBRUARY9_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 66, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb45062486,Object,20775-bb45062486-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,1/26/1995,,26-Jan-95,,1/26/1995,,20775-bb45062486-0-2.tgz,document-source,VOLUME84_ISSUE6_THURSDAYJANUARY26_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 84, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb5939712z,Object,20775-bb5939712z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,2/8/2001,,8-Feb-01,,2/8/2001,,20775-bb5939712z-0-2.tgz,document-source,VOLUME102_ISSUE10_THURSDAYFEBRUARY8_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 102, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb5359503s,Object,20775-bb5359503s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/10/2005,,10-Jan-05,,1/10/2005,,20775-bb5359503s-0-2.tgz,document-source,VOLUME114_ISSUE3_MONDAYJANUARY10_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 114, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb0444779h,Object,20775-bb0444779h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/22/1987,,22-Oct-87,,10/22/1987,,20775-bb0444779h-0-2.tgz,document-source,VOLUME59_ISSUE9_THURSDAYOCTOBER22_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 59, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb0854339j,Object,20775-bb0854339j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/17/1990,,17-May-90,,5/17/1990,,20775-bb0854339j-0-2.tgz,document-source,VOLUME70_ISSUE14_THURSDAYMAY17_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 70, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb7680344d,Object,20775-bb7680344d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,4/24/2000,,24-Apr-00,,4/24/2000,,20775-bb7680344d-0-2.tgz,document-source,VOLUME100_ISSUE7_MONDAYAPRIL24_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 100, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb2424315m,Object,20775-bb2424315m-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/21/1968,,21-Nov-68,,11/21/1968,,20775-bb2424315m-0-2.tgz,document-source,VOLUME5_ISSUE7a_NOVEMBER21_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 5, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb6451658k,Object,20775-bb6451658k-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,2/10/1992,,10-Feb-92,,2/10/1992,,20775-bb6451658k-0-2.tgz,document-source,VOLUME75_ISSUE11_MONDAYFEBRUARY10_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 75, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb1844108m,Object,20775-bb1844108m-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,3/8/1976,,8-Mar-76,,3/8/1976,,20775-bb1844108m-0-2.tgz,document-source,VOLUME27_ISSUE27_MONDAYMARCH8_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb4540377m,Object,20775-bb4540377m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,2/11/1982,,11-Feb-82,,2/11/1982,,20775-bb4540377m-0-2.tgz,document-source,VOLUME45_ISSUE12_THURSDAYFEBRUARY11_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb2731489p,Object,20775-bb2731489p-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,6/5/1970,,5-Jun-70,,6/5/1970,,20775-bb2731489p-0-2.tgz,document-source,VOLUME10_ISSUE17_JUNE5_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 10, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb4949936z,Object,20775-bb4949936z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/7/1996,,7-Nov-96,,11/7/1996,,20775-bb4949936z-0-2.tgz,document-source,VOLUME89_ISSUE13_THURSDAYNOVEMBER7_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 89, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb9694138r,Object,20775-bb9694138r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/16/2010,,16-Feb-10,,2/16/2010,,,,02_16_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA",,"Volume 42, Issue 33",, +http://library.ucsd.edu/ark:/20775/bb3209308m,Object,20775-bb3209308m-0-1.pdf,document-service,text,,The Guardian,,,,Triton Times,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,6/3/1981,,3-Jun-81,,6/3/1981,,20775-bb3209308m-0-2.tgz,document-source,VOLUME43_ISSUE21_WEDNESDAYJUNE3_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb49499380,Object,20775-bb49499380-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,5/1/1980,,1-May-80,,5/1/1980,,20775-bb49499380-0-2.tgz,document-source,VOLUME40_ISSUE24_THURSDAYMAY1_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb43019561,Object,2014-05-14.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/14/2014,,14-May-14,,5/14/2014,,,,2014-05-14.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 53",,Newspaper +http://library.ucsd.edu/ark:/20775/bb90455380,Object,20775-bb90455380-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/5/1976,,5-Apr-76,,4/5/1976,,20775-bb90455380-0-2.tgz,document-source,VOLUME28_ISSUE4_MONDAYAPRIL5_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 28, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb8635982g,Object,20775-bb8635982g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,2/1/1982,,1-Feb-82,,2/1/1982,,20775-bb8635982g-0-2.tgz,document-source,VOLUME45_ISSUE9_MONDAYFEBRUARY1_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb3345825g,Object,20775-bb3345825g-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,2/11/1999,,11-Feb-99,,2/11/1999,,20775-bb3345825g-0-2.tgz,document-source,VOLUME96_ISSUE12_THURSDAYFEBRUARY11_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 96, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb2492581n,Object,20775-bb2492581n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,3/28/1994,,28-Mar-94,,3/28/1994,,20775-bb2492581n-0-2.tgz,document-source,VOLUME82_ISSUE1_MONDAYMARCH28_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 82, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb36188772,Object,20775-bb36188772-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,5/19/2005,,19-May-05,,5/19/2005,,20775-bb36188772-0-2.tgz,document-source,VOLUME115_ISSUE16_THURSDAYMAY19_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 115, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb43014736,Object,20775-bb43014736-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,Triton Times,The Guardian,UCSD Guardian,,,,,,,,,,,,,4/4/1979,,4-Apr-79,,4/4/1979,,20775-bb43014736-0-2.tgz,document-source,VOLUME37_ISSUE2_WEDNESDAYAPRIL4_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb60762388,Object,20775-bb60762388-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,11/6/2006,,6-Nov-06,,11/6/2006,,20775-bb60762388-0-2.tgz,document-source,MONDAYNOVEMBER6_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 119, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb82264173,Object,20775-bb82264173-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,2/2/1971,,2-Feb-71,,2/2/1971,,20775-bb82264173-0-2.tgz,document-source,VOLUME12_ISSUE9_TUESDAYFEBRUARY2_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 12, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb8260546h,Object,20775-bb8260546h-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/3/1975,,3-Nov-75,,11/3/1975,,20775-bb8260546h-0-2.tgz,document-source,VOLUME26_ISSUE19_MONDAYNOVEMBER3_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb4949937g,Object,20775-bb4949937g-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/5/1978,,5-Apr-78,,4/5/1978,,20775-bb4949937g-0-2.tgz,document-source,VOLUME34_ISSUE2_WEDNESDAYAPRIL5_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 34, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb86359830,Object,20775-bb86359830-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/16/2000,,16-Oct-00,,10/16/2000,,20775-bb86359830-0-2.tgz,document-source,VOLUME101_ISSUE8_MONDAYOCTOBER16_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 101, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb32093094,Object,20775-bb32093094-0-1.pdf,document-service,text,,The Guardian,,,,UCSD Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/28/1981,,28-May-81,,5/28/1981,,20775-bb32093094-0-2.tgz,document-source,VOLUME43_ISSUE19_THURSDAYMAY28_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb24925825,Object,20775-bb24925825-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,11/13/2001,,13-Nov-01,,11/13/2001,,20775-bb24925825-0-2.tgz,document-source,VOLUME104_ISSUE16_TUESDAYNOVEMBER13_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 104, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb4506247p,Object,20775-bb4506247p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,1/27/1997,,27-Jan-97,,1/27/1997,,20775-bb4506247p-0-2.tgz,document-source,VOLUME90_ISSUE7_MONDAYJANUARY27_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 90, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb45749993,Object,2014-12-01.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,12/1/2014,,1-Dec-14,,12/1/2014,,,,2014-12-01.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 17",,Newspaper +http://library.ucsd.edu/ark:/20775/bb45403784,Object,20775-bb45403784-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/27/1977,,27-Apr-77,,4/27/1977,,20775-bb45403784-0-2.tgz,document-source,VOLUME31_ISSUE11_WEDNESDAYAPRIL27_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 31, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb18441094,Object,20775-bb18441094-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,2/25/2002,,25-Feb-02,,2/25/2002,,20775-bb18441094-0-2.tgz,document-source,VOLUME105_ISSUE15_MONDAYFEBRUARY25_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 105, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb2048891p,Object,20775-bb2048891p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,10/16/2006,,16-Oct-06,,10/16/2006,,20775-bb2048891p-0-2.tgz,document-source,MONDAYOCTOBER16_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 119, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb8635981z,Object,20775-bb8635981z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/29/1981,,29-Oct-81,,10/29/1981,,20775-bb8635981z-0-2.tgz,document-source,VOLUME44_ISSUE13_THURSDAYOCTOBER29_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 44, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb3618876j,Object,20775-bb3618876j-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,10/22/1971,,22-Oct-71,,10/22/1971,,20775-bb3618876j-0-2.tgz,document-source,VOLUME14_ISSUE8_FRIDAYOCTOBER22_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 14, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb5018201f,Object,20775-bb5018201f-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/28/1977,,28-Feb-77,,2/28/1977,,20775-bb5018201f-0-2.tgz,document-source,VOLUME30_ISSUE21_MONDAYFEBRUARY28_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 30, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb01036065,Object,20775-bb01036065-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/2/2009,,2-Feb-09,,2/2/2009,,,,02_02_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb4301472p,Object,20775-bb4301472p-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,4/5/1974,,5-Apr-74,,4/5/1974,,20775-bb4301472p-0-2.tgz,document-source,VOLUME22_ISSUE2_FRIDAYAPRIL5_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 22, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb9728144h,Object,20775-bb9728144h-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,6/4/1971,6/4/1971,4-Jun-71,4-Jun-71,6/4/1971,6/4/1971,20775-bb9728144h-0-2.tgz,document-source,VOLUME13_ISSUE20_FRIDAYJUNE4_1971.pdf,VOLUME13_ISSUE20_FRIDAYJUNE4_1971.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 13, Issue 20","Volume 13, Issue 20", +http://library.ucsd.edu/ark:/20775/bb8226418m,Object,20775-bb8226418m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,1/20/1994,,20-Jan-94,,1/20/1994,,20775-bb8226418m-0-2.tgz,document-source,VOLUME81_ISSUE6_THURSDAYJANUARY20_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 81, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb4608638p,Object,20775-bb4608638p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/9/1989,,9-Jan-89,,1/9/1989,,20775-bb4608638p-0-2.tgz,document-source,VOLUME66_ISSUE2_MONDAYJANUARY9_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 66, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb6724700m,Object,20775-bb6724700m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,10/4/1999,,4-Oct-99,,10/4/1999,,20775-bb6724700m-0-2.tgz,document-source,VOLUME98_ISSUE2_MONDAYOCTOBER4_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 98, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb46769029,Object,20775-bb46769029-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/26/1987,,26-Jan-87,,1/26/1987,,,,VOLUME58_ISSUE27_MONDAYJANUARY26_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb6076235q,Object,20775-bb6076235q-0-1.pdf,document-service,text,,The Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,4/30/1981,,30-Apr-81,,4/30/1981,,20775-bb6076235q-0-2.tgz,document-source,VOLUME43_ISSUE11_THURSDAYAPRIL30_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb1673943k,Object,2013-06-03.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/3/2013,,3-Jun-13,,6/3/2013,,,,2013-06-03.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 59",,Newspaper +http://library.ucsd.edu/ark:/20775/bb85340789,Object,2014-04-03.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/3/2014,,3-Apr-14,,4/3/2014,,,,2014-04-03.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 42",,Newspaper +http://library.ucsd.edu/ark:/20775/bb04447780,Object,20775-bb04447780-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,10/9/1970,,9-Oct-70,,10/9/1970,,20775-bb04447780-0-2.tgz,document-source,VOLUME11_ISSUE4_OCTOBER9_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 11, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb9898789q,Object,20775-bb9898789q-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Guardian,The Guardian,Triton Times,Daily Guardian,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,11/1/1993,11/1/1993,1-Nov-93,1-Nov-93,11/1/1993,11/1/1993,20775-bb9898789q-0-2.tgz,document-source,VOLUME80_ISSUE12_MONDAYNOVEMBER1_1993.pdf,VOLUME80_ISSUE12_MONDAYNOVEMBER1_1993.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 80, Issue 12","Volume 80, Issue 12", +http://library.ucsd.edu/ark:/20775/bb6485918s,Object,20775-bb6485918s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/22/2010,,22-Feb-10,,2/22/2010,,,,02_22_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 35",, +http://library.ucsd.edu/ark:/20775/bb82605471,Object,20775-bb82605471-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/17/1994,,17-Nov-94,,11/17/1994,,20775-bb82605471-0-2.tgz,document-source,VOLUME83_ISSUE17_THURSDAYNOVEMBER17_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 83, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb45062465,Object,20775-bb45062465-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,9/18/2001,,18-Sep-01,,9/18/2001,,20775-bb45062465-0-2.tgz,document-source,VOLUME104_ISSUE1_TUESDAYSEPTEMBER18_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 104, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb67247014,Object,20775-bb67247014-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,3/2/1992,,2-Mar-92,,3/2/1992,,20775-bb67247014-0-2.tgz,document-source,VOLUME75_ISSUE17_MONDAYMARCH2_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 75, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb4676901s,Object,20775-bb4676901s-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/30/1980,,30-Jan-80,,1/30/1980,,20775-bb4676901s-0-2.tgz,document-source,VOLUME39_ISSUE18_WEDNESDAYJANUARY30_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb20488947,Object,20775-bb20488947-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/24/1994,,24-Feb-94,,2/24/1994,,20775-bb20488947-0-2.tgz,document-source,VOLUME81_ISSUE16_THURSDAYFEBRUARY24_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 81, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb5018200x,Object,20775-bb5018200x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,4/10/2003,,10-Apr-03,,4/10/2003,,20775-bb5018200x-0-2.tgz,document-source,VOLUME109_ISSUE4_THURSDAYAPRIL10_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 109, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb6383400r,Object,20775-bb6383400r-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,5/26/1987,,26-May-87,,5/26/1987,,20775-bb6383400r-0-2.tgz,document-source,VOLUME58_ISSUE57_TUESDAYMAY26_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 57",, +http://library.ucsd.edu/ark:/20775/bb7680346f,Object,20775-bb7680346f-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/3/1997,,3-Apr-97,,4/3/1997,,20775-bb7680346f-0-2.tgz,document-source,VOLUME91_ISSUE2_THURSDAYAPRIL3_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 91, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb6451656j,Object,20775-bb6451656j-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/31/1985,,31-Oct-85,,10/31/1985,,20775-bb6451656j-0-2.tgz,document-source,VOLUME56_ISSUE11_THURSDAYOCTOBER31_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 56, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb7851113h,Object,20775-bb7851113h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/14/2009,,14-May-09,,5/14/2009,,,,05_14_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb4301952z,Object,2012-10-22.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/22/2012,,22-Oct-12,,10/22/2012,,,,2012-10-22.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 8",,Newspaper +http://library.ucsd.edu/ark:/20775/bb0991345k,Object,2013-11-25.pdf,document-service,text,eng - English,UCSD Guardian,,,,,,,,,,,,,,,,,,,,11/21/2013,,25-Nov-13,,11/21/2013,,,,2013-11-25.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 18",,Newspaper +http://library.ucsd.edu/ark:/20775/bb4984560z,Object,2014-03-03.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/3/2014,,3-Mar-14,,3/3/2014,,,,2014-03-03.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 37",,Newspaper +http://library.ucsd.edu/ark:/20775/bb97963997,Object,20775-bb97963997-0-1.pdf,document-service,text,,Daily Guardian,Daily Guardian,,,Guardian,UCSD Guardian,The Guardian,Triton Times,Guardian,UCSD Guardian,The Guardian,Triton Times,,,,,,,,,1/29/1980,1/29/1980,29-Jan-80,29-Jan-80,1/29/1980,1/29/1980,20775-bb97963997-0-2.tgz,document-source,VOLUME39_ISSUE17_TUESDAYJANUARY29_1980.pdf,VOLUME39_ISSUE17_TUESDAYJANUARY29_1980.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 39, Issue 17","Volume 39, Issue 17", +http://library.ucsd.edu/ark:/20775/bb7680345x,Object,20775-bb7680345x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,4/29/1996,,29-Apr-96,,4/29/1996,,20775-bb7680345x-0-2.tgz,document-source,VOLUME88_ISSUE9_MONDAYAPRIL29_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 88, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb60762367,Object,20775-bb60762367-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,4/18/1991,,18-Apr-91,,4/18/1991,,20775-bb60762367-0-2.tgz,document-source,VOLUME73_ISSUE6_THURSDAYAPRIL18_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 73, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb82264194,Object,20775-bb82264194-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,5/27/1993,,27-May-93,,5/27/1993,,20775-bb82264194-0-2.tgz,document-source,VOLUME79_ISSUE18_THURSDAYMAY27_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 79, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb81582834,Object,20775-bb81582834-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/18/2010,,18-Feb-10,,2/18/2010,,,,02_18_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 34",, +http://library.ucsd.edu/ark:/20775/bb8635980f,Object,20775-bb8635980f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,11/25/1985,,25-Nov-85,,11/25/1985,,20775-bb8635980f-0-2.tgz,document-source,VOLUME56_ISSUE18_MONDAYNOVEMBER25_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 56, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb3891907z,Object,20775-bb3891907z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,3/2/2000,,2-Mar-00,,3/2/2000,,20775-bb3891907z-0-2.tgz,document-source,VOLUME99_ISSUE16_THURSDAYMARCH2_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 99, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb2356549n,Object,2014-11-06.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/6/2014,,6-Nov-14,,11/6/2014,,,,2014-11-06.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 48, Issue 11",,Newspaper +http://library.ucsd.edu/ark:/20775/bb24925804,Object,20775-bb24925804-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,4/21/1970,,21-Apr-70,,4/21/1970,,20775-bb24925804-0-2.tgz,document-source,VOLUME10_ISSUE6_TUESDAYAPRIL21_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 10, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb14686788,Object,20775-bb14686788-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/16/1993,,16-Feb-93,,2/16/1993,,20775-bb14686788-0-2.tgz,document-source,VOLUME78_ISSUE13_TUESDAYFEBRUARY16_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 78, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb2833883j,Object,20775-bb2833883j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/10/2002,,10-Jan-02,,1/10/2002,,20775-bb2833883j-0-2.tgz,document-source,VOLUME105_ISSUE2_THURSDAYJANUARY10_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 105, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb79875117,Object,20775-bb79875117-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/24/1970,,24-Nov-70,,11/24/1970,,20775-bb79875117-0-2.tgz,document-source,VOLUME11_ISSUE17_TUESDAYNOVEMBER24_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 11, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb9796398q,Object,20775-bb9796398q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/7/1984,,3-May-84,,5/7/1984,,20775-bb9796398q-0-2.tgz,document-source,VOLUME52_ISSUE11_MONDAYMAY7_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 52, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb38919090,Object,20775-bb38919090-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/7/1980,,7-Nov-80,,11/7/1980,,20775-bb38919090-0-2.tgz,document-source,VOLUME41_ISSUE36_FRIDAYNOVEMBER7_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 36",, +http://library.ucsd.edu/ark:/20775/bb4949939h,Object,20775-bb4949939h-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,1/13/1975,,13-Jan-75,,1/13/1975,,20775-bb4949939h-0-2.tgz,document-source,VOLUME24_ISSUE4_MONDAYJANUARY13_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 24, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb9728142g,Object,20775-bb9728142g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,3/31/1994,,31-Mar-94,,3/31/1994,,20775-bb9728142g-0-2.tgz,document-source,VOLUME82_ISSUE2_THURSDAYMARCH31_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 82, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb2048893q,Object,20775-bb2048893q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/21/1986,,21-Apr-86,,4/21/1986,,,,VOLUME58_ISSUE7_MONDAYAPRIL21_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb45403763,Object,20775-bb45403763-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,10/8/1987,,8-Oct-87,,10/8/1987,,20775-bb45403763-0-2.tgz,document-source,VOLUME59_ISSUE5_THURSDAYOCTOBER8_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 59, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb64516593,Object,20775-bb64516593-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/5/1999,,5-Apr-99,,4/5/1999,,20775-bb64516593-0-2.tgz,document-source,VOLUME97_ISSUE3_MONDAYAPRIL5_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 97, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb63834018,Object,20775-bb63834018-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,10/18/1968,,18-Oct-68,,10/18/1968,,20775-bb63834018-0-2.tgz,document-source,VOLUME5_ISSUE3_OCTOBER18_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 5, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb9728141z,Object,20775-bb9728141z-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Guardian,The Guardian,Daily Guardian,Triton Times,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,10/3/2002,10/3/2002,3-Oct-02,3-Oct-02,10/3/2002,10/3/2002,20775-bb9728141z-0-2.tgz,document-source,VOLUME107_ISSUE3_THURSDAYOCTOBER3_2002.pdf,VOLUME107_ISSUE3_THURSDAYOCTOBER3_2002.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 107, Issue 3","Volume 107, Issue 3", +http://library.ucsd.edu/ark:/20775/bb7168876z,Object,2014-11-20.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/20/2014,,20-Nov-14,,11/20/2014,,,,2014-11-20.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 48, Issue 15",,Newspaper +http://library.ucsd.edu/ark:/20775/bb4642895z,Object,20775-bb4642895z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/23/2009,,23-Nov-09,,11/23/2009,,,,11_23_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb97964058,Object,20775-bb97964058-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Daily Guardian,The Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,10/10/2002,10/10/2002,10-Oct-02,10-Oct-02,10/10/2002,10/10/2002,20775-bb97964058-0-2.tgz,document-source,VOLUME107_ISSUE5_THURSDAYOCTOBER10_2002.pdf,VOLUME107_ISSUE5_THURSDAYOCTOBER10_2002.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 107, Issue 5","Volume 107, Issue 5", +http://library.ucsd.edu/ark:/20775/bb8158284n,Object,20775-bb8158284n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/19/2011,,19-May-11,,5/19/2011,,,,05_19_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 44, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb27314885,Object,20775-bb27314885-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/14/2005,,14-Apr-05,,4/14/2005,,20775-bb27314885-0-2.tgz,document-source,VOLUME115_ISSUE6_THURSDAYAPRIL14_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 115, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb4608636n,Object,20775-bb4608636n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/4/1995,,4-May-95,,5/4/1995,,20775-bb4608636n-0-2.tgz,document-source,VOLUME85_ISSUE10_THURSDAYMAY4_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 85, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb3926166h,Object,20775-bb3926166h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/7/2011,,7-Nov-11,,11/7/2011,,,,11_07_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb5052454b,Object,20775-bb5052454b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/3/2008,,3-Nov-08,,11/3/2008,,,,11_03_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb3618870f,Object,20775-bb3618870f-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/4/1992,,4-May-92,,5/4/1992,,20775-bb3618870f-0-2.tgz,document-source,VOLUME76_ISSUE11_MONDAYMAY4_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 76, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb92161872,Object,20775-bb92161872-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,2/11/1976,,11-Feb-76,,2/11/1976,,20775-bb92161872-0-2.tgz,document-source,VOLUME27_ISSUE17_WEDNESDAYFEBRUARY11_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb28338842,Object,20775-bb28338842-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,2/21/1995,,21-Feb-95,,2/21/1995,,20775-bb28338842-0-2.tgz,document-source,VOLUME84_ISSUE13_TUESDAYFEBRUARY21_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 84, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb7987510q,Object,20775-bb7987510q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,5/3/2001,,3-May-01,,5/3/2001,,20775-bb7987510q-0-2.tgz,document-source,VOLUME103_ISSUE10_THURSDAYMAY3_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 103, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb63492727,Object,20775-bb63492727-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,2/5/1975,,5-Feb-75,,2/5/1975,,20775-bb63492727-0-2.tgz,document-source,VOLUME24_ISSUE14_WEDNESDAYFEBRUARY5_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 24, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb0308256j,Object,20775-bb0308256j-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,11/16/1998,,16-Nov-98,,11/16/1998,,20775-bb0308256j-0-2.tgz,document-source,VOLUME95_ISSUE16_MONDAYNOVEMBER16_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 95, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb2424319p,Object,20775-bb2424319p-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,4/12/1990,,12-Apr-90,,4/12/1990,,20775-bb2424319p-0-2.tgz,document-source,VOLUME70_ISSUE4_THURSDAYAPRIL12_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 70, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb7646207j,Object,20775-bb7646207j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,4/20/1992,,20-Apr-92,,4/20/1992,,20775-bb7646207j-0-2.tgz,document-source,VOLUME76_ISSUE7_MONDAYAPRIL20_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 76, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb5837447g,Object,20775-bb5837447g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/28/2011,,28-Feb-11,,2/28/2011,,,,02_28_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 37",, +http://library.ucsd.edu/ark:/20775/bb9216186j,Object,20775-bb9216186j-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/7/1988,,7-Jan-88,,1/7/1988,,20775-bb9216186j-0-2.tgz,document-source,VOLUME59_ISSUE22_THURSDAYJANUARY7_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 59, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb4233212h,Object,20775-bb4233212h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,3/16/2006,,16-Mar-06,,3/16/2006,,20775-bb4233212h-0-2.tgz,document-source,THURSDAYMARCH16_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 117, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb97281430,Object,20775-bb97281430-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,3/12/1971,,12-Mar-71,,3/12/1971,,20775-bb97281430-0-2.tgz,document-source,VOLUME12_ISSUE20_FRIDAYMARCH12_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 12, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb0751950z,Object,20775-bb0751950z-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/1/1973,,1-May-73,,5/1/1973,,20775-bb0751950z-0-2.tgz,document-source,VOLUME19_ISSUE9_TUESDAYMAY1_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 19, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb9796404r,Object,20775-bb9796404r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/6/1992,,6-Feb-92,,2/6/1992,,20775-bb9796404r-0-2.tgz,document-source,VOLUME75_ISSUE10_THURSDAYFEBRUARY6_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 75, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb3345829j,Object,20775-bb3345829j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,11/17/1983,,17-Nov-83,,11/17/1983,,20775-bb3345829j-0-2.tgz,document-source,VOLUME50_ISSUE17_THURSDAYNOVEMBER17_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 50, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb36188730,Object,20775-bb36188730-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,11/6/1973,,6-Nov-73,,11/6/1973,,20775-bb36188730-0-2.tgz,document-source,VOLUME20_ISSUE13_TUESDAYNOVEMBER6_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 20, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb6349271q,Object,20775-bb6349271q-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,10/2/1974,,2-Oct-74,,10/2/1974,,20775-bb6349271q-0-2.tgz,document-source,VOLUME23_ISSUE5_WEDNESDAYOCTOBER2_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 23, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb18782415,Object,20775-bb18782415-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,12/1/2005,,1-Dec-05,,12/1/2005,,20775-bb18782415-0-2.tgz,document-source,VOLUME116_ISSUE20_THURSDAYDECEMBER1_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 116, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb07519520,Object,20775-bb07519520-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,2/7/1969,,7-Feb-69,,2/7/1969,,20775-bb07519520-0-2.tgz,document-source,VOLUME6_ISSUE4_FEBRUARY7_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 6, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb46086396,Object,20775-bb46086396-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,1/20/2000,,20-Jan-00,,1/20/2000,,20775-bb46086396-0-2.tgz,document-source,VOLUME99_ISSUE4_THURSDAYJANUARY20_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 99, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb3379963m,Object,20775-bb3379963m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,3/12/1984,,12-Mar-84,,3/12/1984,,20775-bb3379963m-0-2.tgz,document-source,VOLUME51_ISSUE19_MONDAYMARCH12_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 51, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb0751951g,Object,20775-bb0751951g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,9/25/1995,,25-Sep-95,,9/25/1995,,20775-bb0751951g-0-2.tgz,document-source,VOLUME86_ISSUE2_MONDAYSEPTEMBER25_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 86, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb79875138,Object,20775-bb79875138-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,2/20/2003,,20-Feb-03,,2/20/2003,,20775-bb79875138-0-2.tgz,document-source,VOLUME108_ISSUE14_THURSDAYFEBRUARY20_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 108, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb9728140f,Object,20775-bb9728140f-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,5/2/1980,,2-May-80,,5/2/1980,,20775-bb9728140f-0-2.tgz,document-source,VOLUME40_ISSUE25_FRIDAYMAY2_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb0137610b,Object,20775-bb0137610b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/19/1989,,19-Oct-89,,10/19/1989,,20775-bb0137610b-0-2.tgz,document-source,VOLUME68_ISSUE9_THURSDAYOCTOBER19_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 68, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb2833881h,Object,20775-bb2833881h-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/9/1974,,9-Oct-74,,10/9/1974,,20775-bb2833881h-0-2.tgz,document-source,VOLUME23_ISSUE8_WEDNESDAYOCTOBER9_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 23, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb3618871z,Object,20775-bb3618871z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,1/9/1992,,9-Jan-92,,1/9/1992,,20775-bb3618871z-0-2.tgz,document-source,VOLUME75_ISSUE2_THURSDAYJANUARY9_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 75, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb44721209,Object,20775-bb44721209-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/9/2005,,9-May-05,,5/9/2005,,20775-bb44721209-0-2.tgz,document-source,VOLUME115_ISSUE13_MONDAYMAY9_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 115, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb03082593,Object,20775-bb03082593-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,10/11/1976,,11-Oct-76,,10/11/1976,,20775-bb03082593-0-2.tgz,document-source,VOLUME29_ISSUE8_MONDAYOCTOBER11_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 29, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb76462082,Object,20775-bb76462082-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,6/6/1991,,6-Jun-91,,6/6/1991,,20775-bb76462082-0-2.tgz,document-source,VOLUME73_ISSUE20_THURSDAYJUNE6_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 73, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb64516572,Object,20775-bb64516572-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/12/1987,,12-Feb-87,,2/12/1987,,,,VOLUME58_ISSUE32_THURSDAYFEBRUARY12_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 32",, +http://library.ucsd.edu/ark:/20775/bb34140884,Object,20775-bb34140884-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,5/18/1971,,18-May-71,,5/18/1971,,20775-bb34140884-0-2.tgz,document-source,VOLUME13_ISSUE15_TUESDAYMAY18_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 13, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb9694176n,Object,20775-bb9694176n-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,5/21/2012,,21-May-12,,5/21/2012,,,,2012-05-21.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 55",, +http://library.ucsd.edu/ark:/20775/bb86359851,Object,20775-bb86359851-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,4/26/1974,,26-Apr-74,,4/26/1974,,20775-bb86359851-0-2.tgz,document-source,VOLUME22_ISSUE8_FRIDAYAPRIL26_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 22, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb97964079,Object,20775-bb97964079-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Triton Times,Daily Guardian,The Guardian,Guardian,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,4/25/1988,4/25/1988,25-Apr-88,25-Apr-88,4/25/1988,4/25/1988,20775-bb97964079-0-2.tgz,document-source,VOLUME64_ISSUE7_MONDAYAPRIL25_1988.pdf,VOLUME64_ISSUE7_MONDAYAPRIL25_1988.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 64, Issue 7","Volume 64, Issue 7", +http://library.ucsd.edu/ark:/20775/bb4028554t,Object,20775-bb4028554t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/28/2009,,28-May-09,,5/28/2009,,,,05_28_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb9045705w,Object,20775-bb9045705w-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,2/27/2012,,27-Feb-12,,2/27/2012,,,,2012-02-27.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 35",, +http://library.ucsd.edu/ark:/20775/bb5052330v,Object,20775-bb5052330v-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,3/29/1982,,29-Mar-82,,3/29/1982,,20775-bb5052330v-0-2.tgz,document-source,VOLUME46_ISSUE1_MONDAYMARCH29_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb4472122b,Object,20775-bb4472122b-0-1.pdf,document-service,text,,The Guardian,,,,Daily Guardian,UCSD Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/29/1981,,29-Jan-81,,1/29/1981,,20775-bb4472122b-0-2.tgz,document-source,VOLUME42_ISSUE8_THURSDAYJANUARY29_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb7748599f,Object,20775-bb7748599f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,3/13/2003,,13-Mar-03,,3/13/2003,,20775-bb7748599f-0-2.tgz,document-source,VOLUME108_ISSUE20_THURSDAYMARCH13_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 108, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb3618872g,Object,20775-bb3618872g-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,1/6/2005,,6-Jan-05,,1/6/2005,,20775-bb3618872g-0-2.tgz,document-source,VOLUME114_ISSUE2_THURSDAYJANUARY6_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 114, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb5052331c,Object,20775-bb5052331c-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,9/18/1989,,18-Sep-89,,9/18/1989,,20775-bb5052331c-0-2.tgz,document-source,VOLUME68_ISSUE1_MONDAYSEPTEMBER18_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 68, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb62127545,Object,20775-bb62127545-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/6/1986,,6-Feb-86,,2/6/1986,,20775-bb62127545-0-2.tgz,document-source,VOLUME57_ISSUE10_THURSDAYFEBRUARY6_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 57, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb92161893,Object,20775-bb92161893-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,5/9/1991,,9-May-91,,5/9/1991,,20775-bb92161893-0-2.tgz,document-source,VOLUME73_ISSUE12_THURSDAYMAY9_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 73, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb33458281,Object,20775-bb33458281-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,1/12/1968,,12-Jan-68,,1/12/1968,,20775-bb33458281-0-2.tgz,document-source,VOLUME3_ISSUE1_JANUARY12_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 3, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb24243185,Object,20775-bb24243185-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/2/1977,,2-Mar-77,,3/2/1977,,20775-bb24243185-0-2.tgz,document-source,VOLUME30_ISSUE22_WEDNESDAYMARCH2_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 30, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb2424317n,Object,20775-bb2424317n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,10/2/1986,,2-Oct-86,,10/2/1986,,,,VOLUME58_ISSUE3_THURSDAYOCTOBER2_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb6212753n,Object,20775-bb6212753n-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,6/2/1975,,2-Jun-75,,6/2/1975,,20775-bb6212753n-0-2.tgz,document-source,VOLUME25_ISSUE27_MONDAYJUNE2_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 25, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb7646209k,Object,20775-bb7646209k-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,2/26/1974,,26-Feb-74,,2/26/1974,,20775-bb7646209k-0-2.tgz,document-source,VOLUME21_ISSUE15_TUESDAYFEBRUARY26_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 21, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb9216188k,Object,20775-bb9216188k-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,10/7/1974,,7-Oct-74,,10/7/1974,,20775-bb9216188k-0-2.tgz,document-source,VOLUME23_ISSUE7_OCTOBER7_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 23, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb3414089n,Object,20775-bb3414089n-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/16/1996,,16-May-96,,5/16/1996,,20775-bb3414089n-0-2.tgz,document-source,VOLUME88_ISSUE14_THURSDAYMAY16_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 88, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb7748598x,Object,20775-bb7748598x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,6/1/2006,,1-Jun-06,,6/1/2006,,20775-bb7748598x-0-2.tgz,document-source,THURSDAYJUNE1_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 118, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb8294806q,Object,20775-bb8294806q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/13/2008,,13-Mar-08,,3/13/2008,,,,03_13_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb0308258k,Object,20775-bb0308258k-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,2/8/1978,,8-Feb-78,,2/8/1978,,20775-bb0308258k-0-2.tgz,document-source,VOLUME33_ISSUE14_WEDNESDAYFEBRUARY8_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 33, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb28338821,Object,20775-bb28338821-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/16/1990,,16-Jan-90,,1/16/1990,,20775-bb28338821-0-2.tgz,document-source,VOLUME69_ISSUE4_TUESDAYJANUARY16_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 69, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb07519562,Object,20775-bb07519562-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,10/20/1986,,20-Oct-86,,10/20/1986,,,,VOLUME58_ISSUE8_MONDAYOCTOBER20_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb5939710x,Object,20775-bb5939710x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,4/26/2004,,26-Apr-04,,4/26/2004,,20775-bb5939710x-0-2.tgz,document-source,VOLUME112_ISSUE9_MONDAYAPRIL26_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 112, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb7987512r,Object,20775-bb7987512r-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/16/2003,,16-Jan-03,,1/16/2003,,20775-bb7987512r-0-2.tgz,document-source,VOLUME108_ISSUE4_THURSDAYJANUARY16_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 108, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb4472121t,Object,20775-bb4472121t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/9/1983,,9-Jun-83,,6/9/1983,,20775-bb4472121t-0-2.tgz,document-source,VOLUME49_ISSUE20_THURSDAYJUNE9_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 49, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb4881678f,Object,20775-bb4881678f-0-1.pdf,document-service,text,,The Guardian,,,,Daily Guardian,Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,4/23/1981,,23-Apr-81,,4/23/1981,,20775-bb4881678f-0-2.tgz,document-source,VOLUME43_ISSUE8_THURSDAYAPRIL23_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb5939711f,Object,20775-bb5939711f-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/19/1995,,19-Jan-95,,1/19/1995,,20775-bb5939711f-0-2.tgz,document-source,VOLUME84_ISSUE4_THURSDAYJANUARY19_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 84, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb3345955c,Object,20775-bb3345955c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/23/2010,,23-Sep-10,,9/23/2010,,,,09_23_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb74415561,Object,20775-bb74415561-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,1/21/2010,,21-Jan-10,,1/21/2010,,,,01_21_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb4233214j,Object,20775-bb4233214j-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/9/1987,,9-Nov-87,,11/9/1987,,20775-bb4233214j-0-2.tgz,document-source,VOLUME59_ISSUE14_MONDAYNOVEMBER9_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 59, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb0137611v,Object,20775-bb0137611v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,6/3/1996,,3-Jun-96,,6/3/1996,,20775-bb0137611v-0-2.tgz,document-source,VOLUME88_ISSUE19_MONDAYJUNE3_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 88, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb36188751,Object,20775-bb36188751-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/12/1984,,12-Nov-84,,11/12/1984,,20775-bb36188751-0-2.tgz,document-source,VOLUME53_ISSUE17_MONDAYNOVEMBER12_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 53, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb43014715,Object,20775-bb43014715-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,10/31/1991,,31-Oct-91,,10/31/1991,,20775-bb43014715-0-2.tgz,document-source,VOLUME74_ISSUE11_THURSDAYOCTOBER31_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 74, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb2492583p,Object,20775-bb2492583p-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,4/8/2004,,8-Apr-04,,4/8/2004,,20775-bb2492583p-0-2.tgz,document-source,VOLUME112_ISSUE4_THURSDAYAPRIL8_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 112, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb71683913,Object,20775-bb71683913-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,3/1/1982,,1-Mar-82,,3/1/1982,,20775-bb71683913-0-2.tgz,document-source,VOLUME45_ISSUE17_MONDAYMARCH1_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb9796406s,Object,20775-bb9796406s-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Guardian,Daily Guardian,The Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,5/9/1996,5/9/1996,9-May-96,9-May-96,5/9/1996,5/9/1996,20775-bb9796406s-0-2.tgz,document-source,VOLUME88_ISSUE12_THURSDAYMAY9_1996.pdf,VOLUME88_ISSUE12_THURSDAYMAY9_1996.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 88, Issue 12","Volume 88, Issue 12", +http://library.ucsd.edu/ark:/20775/bb3345827h,Object,20775-bb3345827h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,1/30/1989,,30-Jan-89,,1/30/1989,,20775-bb3345827h-0-2.tgz,document-source,VOLUME66_ISSUE8_MONDAYJANUARY30_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 66, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb2731487n,Object,20775-bb2731487n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,11/11/1999,,11-Nov-99,,11/11/1999,,20775-bb2731487n-0-2.tgz,document-source,VOLUME98_ISSUE13_THURSDAYNOVEMBER11_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 98, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb8635984h,Object,20775-bb8635984h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/11/1998,,11-May-98,,5/11/1998,,20775-bb8635984h-0-2.tgz,document-source,VOLUME94_ISSUE13_MONDAYMAY11_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 94, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb07519541,Object,20775-bb07519541-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,3/1/1990,,1-Mar-90,,3/1/1990,,20775-bb07519541-0-2.tgz,document-source,VOLUME69_ISSUE17_THURSDAYMARCH1_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 69, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb46086375,Object,20775-bb46086375-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,3/13/2006,,13-Mar-06,,3/13/2006,,20775-bb46086375-0-2.tgz,document-source,MONDAYMARCH13_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 117, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb4540379n,Object,20775-bb4540379n-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,1/18/1974,,18-Jan-74,,1/18/1974,,20775-bb4540379n-0-2.tgz,document-source,VOLUME21_ISSUE4_FRIDAYJANUARY18_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 21, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb33799623,Object,20775-bb33799623-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,1/13/1978,,13-Jan-78,,1/13/1978,,20775-bb33799623-0-2.tgz,document-source,VOLUME33_ISSUE3_FRIDAYJANUARY13_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 33, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb6349273r,Object,20775-bb6349273r-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,6/1/1979,,1-Jun-79,,6/1/1979,,20775-bb6349273r-0-2.tgz,document-source,VOLUME37_ISSUE26_FRIDAYJUNE1_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 37, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb0751953h,Object,20775-bb0751953h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,3/12/2001,,12-Mar-01,,3/12/2001,,20775-bb0751953h-0-2.tgz,document-source,VOLUME102_ISSUE19_MONDAYMARCH12_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 102, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb09910237,Object,20775-bb09910237-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,1/19/2012,,19-Jan-12,,1/19/2012,,,,2012-01-19.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb79875159,Object,20775-bb79875159-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,9/21/1982,,21-Sep-82,,9/21/1982,,20775-bb79875159-0-2.tgz,document-source,VOLUME47_ISSUE1_TUESDAYSEPTEMBER21_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb18441073,Object,20775-bb18441073-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,3/29/1976,,29-Mar-76,,3/29/1976,,20775-bb18441073-0-2.tgz,document-source,VOLUME28_ISSUE1_MONDAYMARCH29_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 28, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb4506249q,Object,20775-bb4506249q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,2/16/1995,,16-Feb-95,,2/16/1995,,20775-bb4506249q-0-2.tgz,document-source,VOLUME84_ISSUE12_THURSDAYFEBRUARY16_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 84, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb3379961k,Object,20775-bb3379961k-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,2/24/1975,,24-Feb-75,,2/24/1975,,20775-bb3379961k-0-2.tgz,document-source,VOLUME24_ISSUE21_MONDAYFEBRUARY24_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 24, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb4199241v,Object,20775-bb4199241v-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,4/19/2012,,19-Apr-12,,4/19/2012,,,,2012-04-19.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 46",, +http://library.ucsd.edu/ark:/20775/bb2356545k,Object,2013-02-21.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/21/2013,,21-Feb-13,,2/21/2013,,,,2013-02-21.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 34",,Newspaper +http://library.ucsd.edu/ark:/20775/bb64516551,Object,20775-bb64516551-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,5/28/1998,,28-May-98,,5/28/1998,,20775-bb64516551-0-2.tgz,document-source,VOLUME94_ISSUE18_THURSDAYMAY28_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 94, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb48135476,Object,20775-bb48135476-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/31/2008,,31-Jan-08,,1/31/2008,,,,01_31_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb0137612c,Object,20775-bb0137612c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/2/1992,,2-Nov-92,,11/2/1992,,20775-bb0137612c-0-2.tgz,document-source,VOLUME77_ISSUE12_MONDAYNOVEMBER2_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 77, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb2594969s,Object,20775-bb2594969s-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,1/15/1971,,15-Jan-71,,1/15/1971,,20775-bb2594969s-0-2.tgz,document-source,VOLUME12_ISSUE4_FRIDAYJANUARY15_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 12, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb9045540b,Object,20775-bb9045540b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,2/14/1985,,14-Feb-85,,2/14/1985,,20775-bb9045540b-0-2.tgz,document-source,VOLUME54_ISSUE12_THURSDAYFEBRUARY14_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 54, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb07179430,Object,20775-bb07179430-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/17/2011,,17-Nov-11,,11/17/2011,,,,11_17_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb0069350j,Object,20775-bb0069350j-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/9/1987,,9-Feb-87,,2/9/1987,,,,VOLUME58_ISSUE31_MONDAYFEBRUARY9_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 31",, +http://library.ucsd.edu/ark:/20775/bb7100128v,Object,20775-bb7100128v-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,5/15/1970,,15-May-70,,5/15/1970,,20775-bb7100128v-0-2.tgz,document-source,VOLUME10_ISSUE12_FRIDAYMAY15_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 10, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb97964016,Object,20775-bb97964016-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,The Guardian,Triton Times,Daily Guardian,Guardian,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,4/5/2001,4/5/2001,5-Apr-01,5-Apr-01,4/5/2001,4/5/2001,20775-bb97964016-0-2.tgz,document-source,VOLUME103_ISSUE2_THURSDAYAPRIL5_2001.pdf,VOLUME103_ISSUE2_THURSDAYAPRIL5_2001.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 103, Issue 2","Volume 103, Issue 2", +http://library.ucsd.edu/ark:/20775/bb45062533,Object,20775-bb45062533-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,10/13/2003,,13-Oct-03,,10/13/2003,,20775-bb45062533-0-2.tgz,document-source,VOLUME110_ISSUE6_MONDAYOCTOBER13_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 110, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb2902142r,Object,20775-bb2902142r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/6/1991,,6-May-91,,5/6/1991,,20775-bb2902142r-0-2.tgz,document-source,VOLUME73_ISSUE11_MONDAYMAY6_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 73, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb98987954,Object,20775-bb98987954-0-1.pdf,document-service,text,,The Guardian,The Guardian,,,Guardian,Triton Times,UCSD Guardian,Daily Guardian,Guardian,Triton Times,UCSD Guardian,Daily Guardian,,,,,,,,,4/13/1981,4/13/1981,13-Apr-81,13-Apr-81,4/13/1981,4/13/1981,20775-bb98987954-0-2.tgz,document-source,VOLUME43_ISSUE5_MONDAYAPRIL13_1981.pdf,VOLUME43_ISSUE5_MONDAYAPRIL13_1981.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 43, Issue 5","Volume 43, Issue 5", +http://library.ucsd.edu/ark:/20775/bb3414094j,Object,20775-bb3414094j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/31/2005,,31-May-05,,5/31/2005,,20775-bb3414094j-0-2.tgz,document-source,VOLUME115_ISSUE19_TUESDAYMAY31_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 115, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb6656442v,Object,20775-bb6656442v-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,4/19/1968,,19-Apr-68,,4/19/1968,,20775-bb6656442v-0-2.tgz,document-source,VOLUME4_ISSUE3_APRIL19_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 4, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb2185534m,Object,20775-bb2185534m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/14/2008,,14-Apr-08,,4/14/2008,,,,04_14_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb40289198,Object,2014-02-06.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/6/2014,,6-Feb-14,,2/6/2014,,,,2014-02-06.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 30",,Newspaper +http://library.ucsd.edu/ark:/20775/bb19465030,Object,20775-bb19465030-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/10/1968,,10-May-68,,5/10/1968,,20775-bb19465030-0-2.tgz,document-source,VOLUME4_ISSUE6_MAY10_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 4, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb7134263f,Object,20775-bb7134263f-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,10/8/1975,,8-Oct-75,,10/8/1975,,20775-bb7134263f-0-2.tgz,document-source,VOLUME26_ISSUE8_WEDNESDAYOCTOBER8_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb08884697,Object,20775-bb08884697-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,2/13/1980,,13-Feb-80,,2/13/1980,,20775-bb08884697-0-2.tgz,document-source,VOLUME39_ISSUE28_WEDNESDAYFEBRUARY13_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb6963609m,Object,20775-bb6963609m-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/29/1978,,29-Sep-78,,9/29/1978,,20775-bb6963609m-0-2.tgz,document-source,VOLUME35_ISSUE3_FRIDAYSEPTEMBER29_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 35, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb7987516t,Object,20775-bb7987516t-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,5/5/1972,,5-May-72,,5/5/1972,,20775-bb7987516t-0-2.tgz,document-source,VOLUME16_ISSUE12_FRIDAYMAY5_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 16, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb4847553d,Object,20775-bb4847553d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,1/6/1992,,6-Jan-92,,1/6/1992,,20775-bb4847553d-0-2.tgz,document-source,VOLUME75_ISSUE1_MONDAYJANUARY6_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 75, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb1400418w,Object,20775-bb1400418w-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,1/11/1978,,11-Jan-78,,1/11/1978,,20775-bb1400418w-0-2.tgz,document-source,VOLUME33_ISSUE2_WEDNESDAYJANUARY11_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 33, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb7373174s,Object,20775-bb7373174s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/24/1985,,24-Jan-85,,1/24/1985,,20775-bb7373174s-0-2.tgz,document-source,VOLUME54_ISSUE6_THURSDAYJANUARY24_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 54, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb4301467s,Object,20775-bb4301467s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,1/6/1983,,6-Jan-83,,1/6/1983,,20775-bb4301467s-0-2.tgz,document-source,VOLUME48_ISSUE2_THURSDAYJANUARY6_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb7134262x,Object,20775-bb7134262x-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,10/31/1972,,31-Oct-72,,10/31/1972,,20775-bb7134262x-0-2.tgz,document-source,VOLUME17_ISSUE11_TUESDAYOCTOBER31_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 17, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb1946502g,Object,20775-bb1946502g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/31/1990,,31-Oct-90,,10/31/1990,,20775-bb1946502g-0-2.tgz,document-source,VOLUME71_ISSUE16_WEDNESDAYOCTOBER31_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 71, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb1775845b,Object,20775-bb1775845b-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,4/25/1969,,25-Apr-69,,4/25/1969,,20775-bb1775845b-0-2.tgz,document-source,VOLUME7_ISSUE4_APRIL25_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 7, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb6656443c,Object,20775-bb6656443c-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,1/30/1978,,30-Jan-78,,1/30/1978,,20775-bb6656443c-0-2.tgz,document-source,VOLUME33_ISSUE10_MONDAYJANUARY30_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 33, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb1946501z,Object,20775-bb1946501z-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,4/9/1975,,9-Apr-75,,4/9/1975,,20775-bb1946501z-0-2.tgz,document-source,VOLUME25_ISSUE5_WEDNESDAYAPRIL9_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 25, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb9898794m,Object,20775-bb9898794m-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,3/10/1972,3/10/1972,10-Mar-72,10-Mar-72,3/10/1972,3/10/1972,20775-bb9898794m-0-2.tgz,document-source,VOLUME15_ISSUE20_FRIDAYMARCH10_1972.pdf,VOLUME15_ISSUE20_FRIDAYMARCH10_1972.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 15, Issue 20","Volume 15, Issue 20", +http://library.ucsd.edu/ark:/20775/bb0513036p,Object,20775-bb0513036p-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,5/21/1980,,21-May-80,,5/21/1980,,20775-bb0513036p-0-2.tgz,document-source,VOLUME40_ISSUE38_WEDNESDAYMAY21_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 38",, +http://library.ucsd.edu/ark:/20775/bb77144734,Object,20775-bb77144734-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/3/1990,,3-Oct-90,,10/3/1990,,20775-bb77144734-0-2.tgz,document-source,VOLUME71_ISSUE4_WEDNESDAYOCTOBER3_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 71, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb9796400p,Object,20775-bb9796400p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,4/18/1994,,18-Apr-94,,4/18/1994,,20775-bb9796400p-0-2.tgz,document-source,VOLUME82_ISSUE7_MONDAYAPRIL18_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 82, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb4847552w,Object,20775-bb4847552w-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,10/17/1975,,17-Oct-75,,10/17/1975,,20775-bb4847552w-0-2.tgz,document-source,VOLUME26_ISSUE12_FRIDAYOCTOBER17_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb1400419d,Object,20775-bb1400419d-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,4/13/1979,,13-Apr-79,,4/13/1979,,20775-bb1400419d-0-2.tgz,document-source,VOLUME37_ISSUE6_FRIDAYAPRIL13_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb29021438,Object,20775-bb29021438-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/15/1987,,15-Oct-87,,10/15/1987,,20775-bb29021438-0-2.tgz,document-source,VOLUME59_ISSUE7_THURSDAYOCTOBER15_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 59, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb34140973,Object,20775-bb34140973-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/28/1992,,28-May-92,,5/28/1992,,20775-bb34140973-0-2.tgz,document-source,VOLUME74_ISSUE18_THURSDAYMAY28_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 74, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb4506250j,Object,20775-bb4506250j-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,9/22/1980,,22-Sep-80,,9/22/1980,,20775-bb4506250j-0-2.tgz,document-source,VOLUME41_ISSUE2_MONDAYSEPTEMBER22_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb71342660,Object,20775-bb71342660-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,4/6/1998,,6-Apr-98,,4/6/1998,,20775-bb71342660-0-2.tgz,document-source,VOLUME94_ISSUE3_MONDAYAPRIL6_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 94, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb2663229h,Object,20775-bb2663229h-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,11/29/1979,,29-Nov-79,,11/29/1979,,20775-bb2663229h-0-2.tgz,document-source,VOLUME38_ISSUE50_THURSDAYNOVEMBER29_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 50",, +http://library.ucsd.edu/ark:/20775/bb5734931j,Object,20775-bb5734931j-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/25/1988,,25-Feb-88,,2/25/1988,,20775-bb5734931j-0-2.tgz,document-source,VOLUME60_ISSUE36_THURSDAYFEBRUARY25_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 60, Issue 36",, +http://library.ucsd.edu/ark:/20775/bb60762304,Object,20775-bb60762304-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/23/1983,,23-May-83,,5/23/1983,,20775-bb60762304-0-2.tgz,document-source,VOLUME49_ISSUE15_MONDAYMAY23_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 49, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb6758829g,Object,20775-bb6758829g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,9/22/1998,,22-Sep-98,,9/22/1998,,20775-bb6758829g-0-2.tgz,document-source,VOLUME95_ISSUE1_TUESDAYSEPTEMBER22_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 95, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb00693512,Object,20775-bb00693512-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,3/15/1984,,15-Mar-84,,3/15/1984,,20775-bb00693512-0-2.tgz,document-source,VOLUME51_ISSUE20_THURSDAYMARCH15_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 51, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb2799749p,Object,20775-bb2799749p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/11/1987,,11-May-87,,5/11/1987,,20775-bb2799749p-0-2.tgz,document-source,VOLUME58_ISSUE53_MONDAYMAY11_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 53",, +http://library.ucsd.edu/ark:/20775/bb0888466p,Object,20775-bb0888466p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,11/10/1985,,10-Nov-85,,11/10/1985,,20775-bb0888466p-0-2.tgz,document-source,VOLUME56_ISSUE14_MONDAYNOVEMBER10_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 56, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb7987514s,Object,20775-bb7987514s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,10/5/2006,,5-Oct-06,,10/5/2006,,20775-bb7987514s-0-2.tgz,document-source,THURSDAYOCTOBER5_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 119, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb1878242p,Object,20775-bb1878242p-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,5/16/1980,,16-May-80,,5/16/1980,,20775-bb1878242p-0-2.tgz,document-source,VOLUME40_ISSUE35_FRIDAYMAY16_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 35",, +http://library.ucsd.edu/ark:/20775/bb68953489,Object,20775-bb68953489-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,11/12/1987,,12-Nov-87,,11/12/1987,,20775-bb68953489-0-2.tgz,document-source,VOLUME59_ISSUE15_THURSDAYNOVEMBER12_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 59, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb5052333d,Object,20775-bb5052333d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,10/30/2006,,30-Oct-06,,10/30/2006,,20775-bb5052333d-0-2.tgz,document-source,MONDAYOCTOBER30_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 119, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb6758828z,Object,20775-bb6758828z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/27/1986,,27-Feb-86,,2/27/1986,,20775-bb6758828z-0-2.tgz,document-source,VOLUME57_ISSUE16_THURSDAYFEBRUARY27_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 57, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb43014689,Object,20775-bb43014689-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/6/1992,,6-Apr-92,,4/6/1992,,20775-bb43014689-0-2.tgz,document-source,VOLUME76_ISSUE3_MONDAYAPRIL6_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 76, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb6895347s,Object,20775-bb6895347s-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,11/11/1974,,11-Nov-74,,11/11/1974,,20775-bb6895347s-0-2.tgz,document-source,VOLUME23_ISSUE22_MONDAYNOVEMBER11_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 23, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb85677208,Object,20775-bb85677208-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/9/1977,,9-Feb-77,,2/9/1977,,20775-bb85677208-0-2.tgz,document-source,VOLUME30_ISSUE14_WEDNESDAYFEBRUARY9_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 30, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb73731759,Object,20775-bb73731759-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/18/2004,,18-Oct-04,,10/18/2004,,20775-bb73731759-0-2.tgz,document-source,VOLUME113_ISSUE8_MONDAYOCTOBER18_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 113, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb7714470k,Object,20775-bb7714470k-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/12/1979,,12-Nov-79,,11/12/1979,,20775-bb7714470k-0-2.tgz,document-source,VOLUME38_ISSUE37_MONDAYNOVEMBER12_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 37",, +http://library.ucsd.edu/ark:/20775/bb7100127b,Object,20775-bb7100127b-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,5/16/1977,,16-May-77,,5/16/1977,,20775-bb7100127b-0-2.tgz,document-source,VOLUME31_ISSUE19_MONDAYMAY16_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 31, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb7168872w,Object,2013-04-08.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/8/2013,,8-Apr-13,,4/8/2013,,,,2013-04-08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 43",,Newspaper +http://library.ucsd.edu/ark:/20775/bb57349322,Object,20775-bb57349322-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,3/7/1979,,7-Mar-79,,3/7/1979,,20775-bb57349322-0-2.tgz,document-source,VOLUME36_ISSUE25_WEDNESDAYMARCH7_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 36, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb5052332w,Object,20775-bb5052332w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/18/1990,,18-Jan-90,,1/18/1990,,20775-bb5052332w-0-2.tgz,document-source,VOLUME69_ISSUE5_THURSDAYJANUARY18_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 69, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb05130376,Object,20775-bb05130376-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/2/1989,,2-Oct-89,,10/2/1989,,20775-bb05130376-0-2.tgz,document-source,VOLUME68_ISSUE4_MONDAYOCTOBER2_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 68, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb82264220,Object,20775-bb82264220-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,3/13/1973,,13-Mar-73,,3/13/1973,,20775-bb82264220-0-2.tgz,document-source,VOLUME18_ISSUE19_TUESDAYMARCH13_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 18, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb7475559c,Object,20775-bb7475559c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,5/1/1989,,1-May-89,,5/1/1989,,20775-bb7475559c-0-2.tgz,document-source,VOLUME67_ISSUE9_MONDAYMAY1_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 67, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb88748908,Object,20775-bb88748908-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/9/2003,,9-Jan-03,,1/9/2003,,20775-bb88748908-0-2.tgz,document-source,VOLUME108_ISSUE2_THURSDAYJANUARY9_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 108, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb53595007,Object,20775-bb53595007-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,11/10/1976,,10-Nov-76,,11/10/1976,,20775-bb53595007-0-2.tgz,document-source,VOLUME29_ISSUE21_WEDNESDAYNOVEMBER10_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 29, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb45062512,Object,20775-bb45062512-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,4/26/1978,,26-Apr-78,,4/26/1978,,20775-bb45062512-0-2.tgz,document-source,VOLUME34_ISSUE11_WEDNESDAYAPRIL26_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 34, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb98987933,Object,20775-bb98987933-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,2/23/1968,2/23/1968,23-Feb-68,23-Feb-68,2/23/1968,2/23/1968,20775-bb98987933-0-2.tgz,document-source,VOLUME3_ISSUE4_FEBRUARY23_1968.pdf,VOLUME3_ISSUE4_FEBRUARY23_1968.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 3, Issue 4","Volume 3, Issue 4", +http://library.ucsd.edu/ark:/20775/bb0240005k,Object,20775-bb0240005k-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,4/6/1971,,6-Apr-71,,4/6/1971,,20775-bb0240005k-0-2.tgz,document-source,VOLUME13_ISSUE4_FRIDAYAPRIL6_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 13, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb8362941w,Object,20775-bb8362941w-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,2/22/1972,,22-Feb-72,,2/22/1972,,20775-bb8362941w-0-2.tgz,document-source,VOLUME15_ISSUE15_TUESDAYFEBRUARY22_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 15, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb0069352k,Object,20775-bb0069352k-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,4/30/1976,,30-Apr-76,,4/30/1976,,20775-bb0069352k-0-2.tgz,document-source,VOLUME28_ISSUE15_FRIDAYAPRIL30_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 28, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb1775846v,Object,20775-bb1775846v-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,11/25/1980,,25-Nov-80,,11/25/1980,,20775-bb1775846v-0-2.tgz,document-source,VOLUME41_ISSUE48_TUESDAYNOVEMBER25_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 48",, +http://library.ucsd.edu/ark:/20775/bb9045542c,Object,20775-bb9045542c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,2/21/2002,,21-Feb-02,,2/21/2002,,20775-bb9045542c-0-2.tgz,document-source,VOLUME105_ISSUE14_THURSDAYFEBRUARY21_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 105, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb1434550x,Object,20775-bb1434550x-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,11/7/1994,,7-Nov-94,,11/7/1994,,20775-bb1434550x-0-2.tgz,document-source,VOLUME83_ISSUE14_MONDAYNOVEMBER7_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 83, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb3891911b,Object,20775-bb3891911b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,5/16/1985,,16-May-85,,5/16/1985,,20775-bb3891911b-0-2.tgz,document-source,VOLUME55_ISSUE14_THURSDAYMAY16_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 55, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb7134261d,Object,20775-bb7134261d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/29/1990,,29-May-90,,5/29/1990,,20775-bb7134261d-0-2.tgz,document-source,VOLUME70_ISSUE17_TUESDAYMAY29_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 70, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb19465051,Object,20775-bb19465051-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,1/8/1975,,8-Jan-75,,1/8/1975,,20775-bb19465051-0-2.tgz,document-source,VOLUME24_ISSUE2_WEDNESDAYJANUARY8_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 24, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb08884676,Object,20775-bb08884676-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,1/25/1974,,25-Jan-74,,1/25/1974,,20775-bb08884676-0-2.tgz,document-source,VOLUME21_ISSUE6_FRIDAYJANUARY25_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 21, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb1434551f,Object,20775-bb1434551f-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/13/1973,,13-Apr-73,,4/13/1973,,20775-bb1434551f-0-2.tgz,document-source,VOLUME19_ISSUE4_FRIDAYAPRIL13_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 19, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb9045541v,Object,20775-bb9045541v-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,4/27/1989,,27-Apr-89,,4/27/1989,,20775-bb9045541v-0-2.tgz,document-source,VOLUME67_ISSUE8_THURSDAYAPRIL27_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 67, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb42332131,Object,20775-bb42332131-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/3/2000,,3-Apr-00,,4/3/2000,,20775-bb42332131-0-2.tgz,document-source,VOLUME100_ISSUE1_MONDAYAPRIL3_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 100, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb0615432k,Object,20775-bb0615432k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/18/1995,,18-May-95,,5/18/1995,,20775-bb0615432k-0-2.tgz,document-source,VOLUME85_ISSUE14_THURSDAYMAY18_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 85, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb3414096k,Object,20775-bb3414096k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/6/1982,,6-May-82,,5/6/1982,,20775-bb3414096k-0-2.tgz,document-source,VOLUME46_ISSUE12_THURSDAYMAY6_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb8226420z,Object,20775-bb8226420z-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,5/9/1969,,9-May-69,,5/9/1969,,20775-bb8226420z-0-2.tgz,document-source,VOLUME7_ISSUE6_MAY9_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 7, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb6895345r,Object,20775-bb6895345r-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,1/12/1976,,12-Jan-76,,1/12/1976,,20775-bb6895345r-0-2.tgz,document-source,VOLUME27_ISSUE4_MONDAYJANUARY12_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb8226421g,Object,20775-bb8226421g-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,10/11/1974,,11-Oct-74,,10/11/1974,,20775-bb8226421g-0-2.tgz,document-source,VOLUME23_ISSUE9_FRIDAYOCTOBER11_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 23, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb1946504h,Object,20775-bb1946504h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,6/9/1988,,9-Jun-88,,6/9/1988,,20775-bb1946504h-0-2.tgz,document-source,VOLUME64_ISSUE20_THURSDAYJUNE9_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 64, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb1775847c,Object,20775-bb1775847c-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,11/5/1971,,5-Nov-71,,11/5/1971,,20775-bb1775847c-0-2.tgz,document-source,VOLUME14_ISSUE12_FRIDAYNOVEMBER5_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 14, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb18782436,Object,20775-bb18782436-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,3/3/2003,,3-Mar-03,,3/3/2003,,20775-bb18782436-0-2.tgz,document-source,VOLUME108_ISSUE17_MONDAYMARCH3_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 108, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb7373172r,Object,20775-bb7373172r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,5/31/1990,,31-May-90,,5/31/1990,,20775-bb7373172r-0-2.tgz,document-source,VOLUME70_ISSUE18_THURSDAYMAY31_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 70, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb4847551c,Object,20775-bb4847551c-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,2/20/1973,,20-Feb-73,,2/20/1973,,20775-bb4847551c-0-2.tgz,document-source,VOLUME18_ISSUE13_TUESDAYFEBRUARY20_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 18, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb4301469t,Object,20775-bb4301469t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,1/21/1993,,21-Jan-93,,1/21/1993,,20775-bb4301469t-0-2.tgz,document-source,VOLUME78_ISSUE6_THURSDAYJANUARY21_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 78, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb7134260w,Object,20775-bb7134260w-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,5/22/1978,,22-May-78,,5/22/1978,,20775-bb7134260w-0-2.tgz,document-source,VOLUME34_ISSUE22_MONDAYMAY22_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 34, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb7987518v,Object,20775-bb7987518v-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,11/13/1973,,13-Nov-73,,11/13/1973,,20775-bb7987518v-0-2.tgz,document-source,VOLUME20_ISSUE15_TUESDAYNOVEMBER13_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 20, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb5154719h,Object,20775-bb5154719h-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,1/18/2001,,18-Jan-01,,1/18/2001,,20775-bb5154719h-0-2.tgz,document-source,VOLUME102_ISSUE4_THURSDAYJANUARY18_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 102, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb5223146h,Object,20775-bb5223146h-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,1/12/2012,,12-Jan-12,,1/12/2012,,,,2012-01-12.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb4847550v,Object,20775-bb4847550v-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,12/6/1967,,6-Dec-67,,12/6/1967,,20775-bb4847550v-0-2.tgz,document-source,VOLUME2_ISSUE6_DECEMBER6_1967.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 2, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb77144713,Object,20775-bb77144713-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,9/29/1980,,29-Sep-80,,9/29/1980,,20775-bb77144713-0-2.tgz,document-source,VOLUME41_ISSUE7_MONDAYSEPTEMBER29_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb9796402q,Object,20775-bb9796402q-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Daily Guardian,Triton Times,Guardian,The Guardian,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,4/6/1989,4/6/1989,6-Apr-89,6-Apr-89,4/6/1989,4/6/1989,20775-bb9796402q-0-2.tgz,document-source,VOLUME67_ISSUE2_THURSDAYAPRIL6_1989.pdf,VOLUME67_ISSUE2_THURSDAYAPRIL6_1989.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 67, Issue 2","Volume 67, Issue 2", +http://library.ucsd.edu/ark:/20775/bb4608643k,Object,20775-bb4608643k-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,5/25/1977,,25-May-77,,5/25/1977,,20775-bb4608643k-0-2.tgz,document-source,VOLUME31_ISSUE23_WEDNESDAYMAY25_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 31, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb9898792k,Object,20775-bb9898792k-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,3/15/1978,3/15/1978,15-Mar-78,15-Mar-78,3/15/1978,3/15/1978,20775-bb9898792k-0-2.tgz,document-source,VOLUME33_ISSUE28_WEDNESDAYMARCH15_1978.pdf,VOLUME33_ISSUE28_WEDNESDAYMARCH15_1978.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 33, Issue 28","Volume 33, Issue 28", +http://library.ucsd.edu/ark:/20775/bb2902144s,Object,20775-bb2902144s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,11/12/1990,,12-Nov-90,,11/12/1990,,20775-bb2902144s-0-2.tgz,document-source,VOLUME71_ISSUE21_MONDAYNOVEMBER12_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 71, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb9011409t,Object,20775-bb9011409t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/24/2002,,24-Jan-02,,1/24/2002,,20775-bb9011409t-0-2.tgz,document-source,VOLUME105_ISSUE6_THURSDAYJANUARY24_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 105, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb5734933k,Object,20775-bb5734933k-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,10/13/1972,,13-Oct-72,,10/13/1972,,20775-bb5734933k-0-2.tgz,document-source,VOLUME17_ISSUE6_FRIDAYOCTOBER13_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 17, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb06154333,Object,20775-bb06154333-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/28/2005,,28-Apr-05,,4/28/2005,,20775-bb06154333-0-2.tgz,document-source,VOLUME115_ISSUE10_THURSDAYAPRIL28_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 115, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb7987517b,Object,20775-bb7987517b-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,2/16/1979,,16-Feb-79,,2/16/1979,,20775-bb7987517b-0-2.tgz,document-source,VOLUME36_ISSUE18_FRIDAYFEBRUARY16_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 36, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb9318583z,Object,20775-bb9318583z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/3/1995,,3-Apr-95,,4/3/1995,,20775-bb9318583z-0-2.tgz,document-source,VOLUME85_ISSUE1_MONDAYAPRIL3_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 85, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb1878240n,Object,20775-bb1878240n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/1/1999,,1-Feb-99,,2/1/1999,,20775-bb1878240n-0-2.tgz,document-source,VOLUME96_ISSUE9_MONDAYFEBRUARY1_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 96, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb68953468,Object,20775-bb68953468-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/14/1980,,14-Oct-80,,10/14/1980,,20775-bb68953468-0-2.tgz,document-source,VOLUME41_ISSUE18_TUESDAYOCTOBER14_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb2799747n,Object,20775-bb2799747n-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,3/2/1971,,2-Mar-71,,3/2/1971,,20775-bb2799747n-0-2.tgz,document-source,VOLUME12_ISSUE17_TUESDAYMARCH2_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 12, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb4233210g,Object,20775-bb4233210g-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,10/25/1968,,25-Oct-68,,10/25/1968,,20775-bb4233210g-0-2.tgz,document-source,VOLUME5_ISSUE4_OCTOBER25_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 5, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb00693533,Object,20775-bb00693533-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,6/8/1979,,8-Jun-79,,6/8/1979,,20775-bb00693533-0-2.tgz,document-source,VOLUME37_ISSUE31_FRIDAYJUNE8_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 37, Issue 31",, +http://library.ucsd.edu/ark:/20775/bb22879620,Object,20775-bb22879620-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,3/1/2012,,1-Mar-12,,3/1/2012,,,,2012-03-01.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 36",, +http://library.ucsd.edu/ark:/20775/bb7100129c,Object,20775-bb7100129c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,1/27/1986,,27-Jan-86,,1/27/1986,,20775-bb7100129c-0-2.tgz,document-source,VOLUME57_ISSUE7_MONDAYJANUARY27_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 57, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb27997485,Object,20775-bb27997485-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,6/8/1973,,8-Jun-73,,6/8/1973,,20775-bb27997485-0-2.tgz,document-source,VOLUME19_ISSUE20_FRIDAYJUNE8_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 19, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb73731738,Object,20775-bb73731738-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/17/2002,,17-Oct-02,,10/17/2002,,20775-bb73731738-0-2.tgz,document-source,VOLUME107_ISSUE7_THURSDAYOCTOBER17_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 107, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb8362940c,Object,20775-bb8362940c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/29/1984,,29-May-84,,5/29/1984,,20775-bb8362940c-0-2.tgz,document-source,VOLUME52_ISSUE17_TUESDAYMAY29_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 52, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb0171739f,Object,20775-bb0171739f-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,11/1/1976,,1-Nov-76,,11/1/1976,,20775-bb0171739f-0-2.tgz,document-source,VOLUME29_ISSUE17_MONDAYNOVEMBER1_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 29, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb46086443,Object,20775-bb46086443-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Triton Times,Guardian,UCSD Guardian,,,,,,,,,,,,,4/15/1980,,15-Apr-80,,4/15/1980,,20775-bb46086443-0-2.tgz,document-source,VOLUME40_ISSUE12_TUESDAYAPRIL15_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb42332110,Object,20775-bb42332110-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,1/11/1999,,11-Jan-99,,1/11/1999,,20775-bb42332110-0-2.tgz,document-source,VOLUME96_ISSUE3_MONDAYJANUARY11_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 96, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb57349343,Object,20775-bb57349343-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,3/4/2004,,4-Mar-04,,3/4/2004,,20775-bb57349343-0-2.tgz,document-source,VOLUME111_ISSUE18_THURSDAYMARCH4_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 111, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb3891910t,Object,20775-bb3891910t-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/5/1971,,5-Jan-71,,1/5/1971,,20775-bb3891910t-0-2.tgz,document-source,VOLUME12_ISSUE1_JANUARY5_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 12, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb97964037,Object,20775-bb97964037-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/7/1988,,7-Nov-88,,11/7/1988,,20775-bb97964037-0-2.tgz,document-source,VOLUME65_ISSUE14_MONDAYNOVEMBER7_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 65, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb7031872h,Object,20775-bb7031872h-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,10/1/1980,,1-Oct-80,,10/1/1980,,20775-bb7031872h-0-2.tgz,document-source,VOLUME41_ISSUE9_WEDNESDAYOCTOBER1_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb0615430j,Object,20775-bb0615430j-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,2/1/1974,,1-Feb-74,,2/1/1974,,20775-bb0615430j-0-2.tgz,document-source,VOLUME21_ISSUE8_FRIDAYFEBRUARY1_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 21, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb53595028,Object,20775-bb53595028-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/4/1999,,4-Feb-99,,2/4/1999,,20775-bb53595028-0-2.tgz,document-source,VOLUME96_ISSUE10_THURSDAYFEBRUARY4_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 96, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb1775849d,Object,20775-bb1775849d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,1/30/1995,,30-Jan-95,,1/30/1995,,20775-bb1775849d-0-2.tgz,document-source,VOLUME84_ISSUE7_MONDAYJANUARY30_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 84, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb6281501j,Object,2014-02-27.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/27/2014,,27-Feb-14,,2/27/2014,,,,2014-02-27.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 36",,Newspaper +http://library.ucsd.edu/ark:/20775/bb1434553g,Object,20775-bb1434553g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,1/14/2002,,14-Jan-02,,1/14/2002,,20775-bb1434553g-0-2.tgz,document-source,VOLUME105_ISSUE3_MONDAYJANUARY14_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 105, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb9420966r,Object,20775-bb9420966r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,6/3/1993,,3-Jun-93,,6/3/1993,,20775-bb9420966r-0-2.tgz,document-source,VOLUME79_ISSUE20_THURSDAYJUNE3_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 79, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb0240003j,Object,20775-bb0240003j-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,4/22/1999,,22-Apr-99,,4/22/1999,,20775-bb0240003j-0-2.tgz,document-source,VOLUME97_ISSUE8_THURSDAYAPRIL22_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 97, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb14009053,Object,2013-01-07.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/7/2013,,7-Jan-13,,1/7/2013,,,,2013-01-07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 21",,Newspaper +http://library.ucsd.edu/ark:/20775/bb1434552z,Object,20775-bb1434552z-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,11/10/1970,,10-Nov-70,,11/10/1970,,20775-bb1434552z-0-2.tgz,document-source,VOLUME11_ISSUE13_TUESDAYNOVEMBER10_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 11, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb0069354m,Object,20775-bb0069354m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,10/19/1995,,19-Oct-95,,10/19/1995,,20775-bb0069354m-0-2.tgz,document-source,VOLUME86_ISSUE9_THURSDAYOCTOBER19_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 86, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb1775848w,Object,20775-bb1775848w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,5/8/2003,,8-May-03,,5/8/2003,,20775-bb1775848w-0-2.tgz,document-source,VOLUME109_ISSUE12_THURSDAYMAY8_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 109, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb3448217x,Object,20775-bb3448217x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,2/8/1993,,8-Feb-93,,2/8/1993,,20775-bb3448217x-0-2.tgz,document-source,VOLUME78_ISSUE11_MONDAYFEBRUARY8_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 78, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb2595097k,Object,20775-bb2595097k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/10/2011,,10-Mar-11,,3/10/2011,,,,03_10_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 40",, +http://library.ucsd.edu/ark:/20775/bb3414090g,Object,20775-bb3414090g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/3/1986,,3-Apr-86,,4/3/1986,,,,VOLUME56_ISSUE2_THURSDAYAPRIL3_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb3448218f,Object,20775-bb3448218f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,3/4/1996,,4-Mar-96,,3/4/1996,,20775-bb3448218f-0-2.tgz,document-source,VOLUME87_ISSUE17_MONDAYMARCH4_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 87, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb40966920,Object,20775-bb40966920-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/13/1989,,13-Feb-89,,2/13/1989,,20775-bb40966920-0-2.tgz,document-source,VOLUME66_ISSUE12_MONDAYFEBRUARY13_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 66, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb02400042,Object,20775-bb02400042-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,5/2/2002,,2-May-02,,5/2/2002,,20775-bb02400042-0-2.tgz,document-source,VOLUME106_ISSUE10_THURSDAYMAY2_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 106, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb9011407s,Object,20775-bb9011407s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/31/1988,,31-Oct-88,,10/31/1988,,20775-bb9011407s-0-2.tgz,document-source,VOLUME65_ISSUE12_MONDAYOCTOBER31_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 65, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb96258751,Object,20775-bb96258751-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/13/2008,,13-Oct-08,,10/13/2008,,,,10_13_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb4608641j,Object,20775-bb4608641j-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,10/17/1977,,17-Oct-77,,10/17/1977,,20775-bb4608641j-0-2.tgz,document-source,VOLUME32_ISSUE11_MONDAYOCTOBER17_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 32, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb7373170q,Object,20775-bb7373170q-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/22/1980,,22-May-80,,5/22/1980,,20775-bb7373170q-0-2.tgz,document-source,VOLUME40_ISSUE39_THURSDAYMAY22_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 39",, +http://library.ucsd.edu/ark:/20775/bb0786079r,Object,20775-bb0786079r-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/15/1974,,15-Nov-74,,11/15/1974,,20775-bb0786079r-0-2.tgz,document-source,VOLUME23_ISSUE23_FRIDAYNOVEMBER15_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 23, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb10592454,Object,20775-bb10592454-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/31/2011,,31-Jan-11,,1/31/2011,,,,01_31_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb6349267b,Object,20775-bb6349267b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/10/1995,,10-Apr-95,,4/10/1995,,20775-bb6349267b-0-2.tgz,document-source,VOLUME85_ISSUE3_MONDAYAPRIL10_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 85, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb5257106c,Object,20775-bb5257106c-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,1/29/1975,,29-Jan-75,,1/29/1975,,20775-bb5257106c-0-2.tgz,document-source,VOLUME24_ISSUE11_WEDNESDAYJANUARY29_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 24, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb7680340b,Object,20775-bb7680340b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/17/1996,,17-Oct-96,,10/17/1996,,20775-bb7680340b-0-2.tgz,document-source,VOLUME89_ISSUE7_THURSDAYOCTOBER17_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 89, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb3585222f,Object,2013-11-18.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/14/2013,,18-Nov-13,,11/14/2013,,,,2013-11-18.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 16",,Newspaper +http://library.ucsd.edu/ark:/20775/bb1468677r,Object,20775-bb1468677r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/18/1985,,18-Apr-85,,4/18/1985,,20775-bb1468677r-0-2.tgz,document-source,VOLUME55_ISSUE6_THURSDAYAPRIL18_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 55, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb4506254m,Object,20775-bb4506254m-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,11/7/1977,,7-Nov-77,,11/7/1977,,20775-bb4506254m-0-2.tgz,document-source,VOLUME32_ISSUE20_MONDAYNOVEMBER7_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb8567723t,Object,20775-bb8567723t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,12/1/2003,,1-Dec-03,,12/1/2003,,20775-bb8567723t-0-2.tgz,document-source,VOLUME110_ISSUE18_MONDAYDECEMBER1_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 110, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb6861344f,Object,20775-bb6861344f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/1/2010,,1-Nov-10,,11/1/2010,,,,11_01_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb94209678,Object,20775-bb94209678-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,4/18/1969,,18-Apr-69,,4/18/1969,,20775-bb94209678-0-2.tgz,document-source,VOLUME7_ISSUE3_APRIL18_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 7, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb4096690z,Object,20775-bb4096690z-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,1/7/1976,,7-Jan-76,,1/7/1976,,20775-bb4096690z-0-2.tgz,document-source,VOLUME27_ISSUE2_WEDNESDAYJANUARY7_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 27, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb70318731,Object,20775-bb70318731-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/10/1974,,10-May-74,,5/10/1974,,20775-bb70318731-0-2.tgz,document-source,VOLUME22_ISSUE12_FRIDAYMAY10_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 22, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb34140931,Object,20775-bb34140931-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,3/7/1991,,7-Mar-91,,3/7/1991,,20775-bb34140931-0-2.tgz,document-source,VOLUME72_ISSUE18_THURSDAYMARCH7_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 72, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb06154312,Object,20775-bb06154312-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/26/1987,,26-Oct-87,,10/26/1987,,20775-bb06154312-0-2.tgz,document-source,VOLUME59_ISSUE10_MONDAYOCTOBER26_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 59, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb9318581x,Object,20775-bb9318581x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/7/1983,,7-Nov-83,,11/7/1983,,20775-bb9318581x-0-2.tgz,document-source,VOLUME50_ISSUE14_MONDAYNOVEMBER7_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 50, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb60762346,Object,20775-bb60762346-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,10/17/1972,,17-Oct-72,,10/17/1972,,20775-bb60762346-0-2.tgz,document-source,VOLUME17_ISSUE7_OCTOBER17_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 17, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb02400063,Object,20775-bb02400063-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,1/19/1976,,19-Jan-76,,1/19/1976,,20775-bb02400063-0-2.tgz,document-source,VOLUME27_ISSUE7_JANUARY19_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 27, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb5257105v,Object,20775-bb5257105v-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,2/4/1991,,4-Feb-91,,2/4/1991,,20775-bb5257105v-0-2.tgz,document-source,VOLUME72_ISSUE9_MONDAYFEBRUARY4_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 72, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb25949688,Object,20775-bb25949688-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,10/5/1990,,5-Oct-90,,10/5/1990,,20775-bb25949688-0-2.tgz,document-source,VOLUME71_ISSUE5_FRIDAYOCTOBER5_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 71, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb73731717,Object,20775-bb73731717-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,11/30/1995,,30-Nov-95,,11/30/1995,,20775-bb73731717-0-2.tgz,document-source,VOLUME86_ISSUE20_THURSDAYNOVEMBER30_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 86, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb6076233p,Object,20775-bb6076233p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,4/18/2005,,18-Apr-05,,4/18/2005,,20775-bb6076233p-0-2.tgz,document-source,VOLUME115_ISSUE7_MONDAYAPRIL18_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 115, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb9318582f,Object,20775-bb9318582f-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,3/9/1973,,9-Mar-73,,3/9/1973,,20775-bb9318582f-0-2.tgz,document-source,VOLUME18_ISSUE18_FRIDAYMARCH9_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 18, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb4096691g,Object,20775-bb4096691g-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/3/2004,,3-May-04,,5/3/2004,,20775-bb4096691g-0-2.tgz,document-source,VOLUME112_ISSUE11_MONDAYMAY3_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 112, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb46086422,Object,20775-bb46086422-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,6/8/1977,,8-Jun-77,,6/8/1977,,20775-bb46086422-0-2.tgz,document-source,VOLUME31_ISSUE28_WEDNESDAYJUNE8_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 31, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb6349266t,Object,20775-bb6349266t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,9/28/1998,,28-Sep-98,,9/28/1998,,20775-bb6349266t-0-2.tgz,document-source,VOLUME95_ISSUE2_MONDAYSEPTEMBER28_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 95, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb80216397,Object,20775-bb80216397-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,9/28/2000,,28-Sep-00,,9/28/2000,,20775-bb80216397-0-2.tgz,document-source,VOLUME101_ISSUE3_THURSDAYSEPTEMBER28_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 101, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb5906062v,Object,2013-04-18.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/18/2013,,18-Apr-13,,4/18/2013,,,,2013-04-18.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 46",,Newspaper +http://library.ucsd.edu/ark:/20775/bb3414092h,Object,20775-bb3414092h-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,11/19/1987,,19-Nov-87,,11/19/1987,,20775-bb3414092h-0-2.tgz,document-source,VOLUME59_ISSUE17_THURSDAYNOVEMBER19_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 59, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb11615091,Object,20775-bb11615091-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,6/1/1993,,1-Jun-93,,6/1/1993,,20775-bb11615091-0-2.tgz,document-source,VOLUME79_ISSUE19_TUESDAYJUNE1_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 79, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb7031870g,Object,20775-bb7031870g-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/14/1975,,14-Apr-75,,4/14/1975,,20775-bb7031870g-0-2.tgz,document-source,VOLUME25_ISSUE7_MONDAYAPRIL14_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 25, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb6656440t,Object,20775-bb6656440t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,5/9/2002,,9-May-02,,5/9/2002,,20775-bb6656440t-0-2.tgz,document-source,VOLUME106_ISSUE12_THURSDAYMAY9_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 106, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb2560838k,Object,20775-bb2560838k-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/30/1971,,30-Apr-71,,4/30/1971,,20775-bb2560838k-0-2.tgz,document-source,VOLUME13_ISSUE10_FRIDAYAPRIL30_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 13, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb3448219z,Object,20775-bb3448219z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,12/4/1997,,4-Dec-97,,12/4/1997,,20775-bb3448219z-0-2.tgz,document-source,VOLUME92_ISSUE20_THURSDAYDECEMBER4_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 92, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb2902140q,Object,20775-bb2902140q-0-1.pdf,document-service,text,,The Guardian,,,,Triton Times,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/26/1981,,26-May-81,,5/26/1981,,20775-bb2902140q-0-2.tgz,document-source,VOLUME43_ISSUE18_TUESDAYMAY26_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb2594967r,Object,20775-bb2594967r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,6/4/2001,,4-Jun-01,,6/4/2001,,20775-bb2594967r-0-2.tgz,document-source,VOLUME103_ISSUE19_MONDAYJUNE4_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 103, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb0240001h,Object,20775-bb0240001h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,5/13/1982,,13-May-82,,5/13/1982,,20775-bb0240001h-0-2.tgz,document-source,VOLUME46_ISSUE14_THURSDAYMAY13_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb33463176,Object,2014-04-17.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/17/2014,,17-Apr-14,,4/17/2014,,,,2014-04-17.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 46",,Newspaper +http://library.ucsd.edu/ark:/20775/bb9420968s,Object,20775-bb9420968s-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/15/1980,,15-Oct-80,,10/15/1980,,20775-bb9420968s-0-2.tgz,document-source,VOLUME41_ISSUE19_WEDNESDAYOCTOBER15_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb8260548j,Object,20775-bb8260548j-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/10/1983,,10-Oct-83,,10/10/1983,,20775-bb8260548j-0-2.tgz,document-source,VOLUME50_ISSUE6_MONDAYOCTOBER10_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 50, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb02400021,Object,20775-bb02400021-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,11/18/2004,,18-Nov-04,,11/18/2004,,20775-bb02400021-0-2.tgz,document-source,VOLUME113_ISSUE16_THURSDAYNOVEMBER18_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 113, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb9898796n,Object,20775-bb9898796n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/11/1993,,11-Feb-93,,2/11/1993,,20775-bb9898796n-0-2.tgz,document-source,VOLUME78_ISSUE12_THURSDAYFEBRUARY11_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 78, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb4711034r,Object,20775-bb4711034r-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,Triton Times,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,3/5/1979,,5-Mar-79,,3/5/1979,,20775-bb4711034r-0-2.tgz,document-source,VOLUME36_ISSUE24_MONDAYMARCH5_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 36, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb5769185n,Object,20775-bb5769185n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/7/2008,,7-Apr-08,,4/7/2008,,,,04_07_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb1946500f,Object,20775-bb1946500f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/19/1990,,19-Oct-90,,10/19/1990,,20775-bb1946500f-0-2.tgz,document-source,VOLUME71_ISSUE11_FRIDAYOCTOBER19_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 71, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb6656441b,Object,20775-bb6656441b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/6/1988,,6-Oct-88,,10/6/1988,,20775-bb6656441b-0-2.tgz,document-source,VOLUME65_ISSUE5_THURSDAYOCTOBER6_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 65, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb0513038q,Object,20775-bb0513038q-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,1/11/1980,,11-Jan-80,,1/11/1980,,20775-bb0513038q-0-2.tgz,document-source,VOLUME39_ISSUE5_FRIDAYJANUARY11_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb16053652,Object,20775-bb16053652-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,2/21/2012,,21-Feb-12,,2/21/2012,,,,2012-02-21.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 33",, +http://library.ucsd.edu/ark:/20775/bb3618869m,Object,20775-bb3618869m-0-1.pdf,document-service,text,,The Guardian,,,,Daily Guardian,Triton Times,Guardian,UCSD Guardian,,,,,,,,,,,,,5/14/1981,,14-May-81,,5/14/1981,,20775-bb3618869m-0-2.tgz,document-source,VOLUME43_ISSUE15_THURSDAYMAY14_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb4301465r,Object,20775-bb4301465r-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,Triton Times,UCSD Guardian,The Guardian,,,,,,,,,,,,,5/13/1980,,13-May-80,,5/13/1980,,20775-bb4301465r-0-2.tgz,document-source,VOLUME40_ISSUE32_TUESDAYMAY13_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 32",, +http://library.ucsd.edu/ark:/20775/bb8567721s,Object,20775-bb8567721s-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,10/23/1979,,23-Oct-79,,10/23/1979,,20775-bb8567721s-0-2.tgz,document-source,VOLUME38_ISSUE23_TUESDAYOCTOBER23_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb4506252k,Object,20775-bb4506252k-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,2/8/1982,,8-Feb-82,,2/8/1982,,20775-bb4506252k-0-2.tgz,document-source,VOLUME45_ISSUE11_MONDAYFEBRUARY8_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb1468679s,Object,20775-bb1468679s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,2/10/1983,,10-Feb-83,,2/10/1983,,20775-bb1468679s-0-2.tgz,document-source,VOLUME48_ISSUE12_THURSDAYFEBRUARY10_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 48, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb94209699,Object,20775-bb94209699-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,10/1/1992,,1-Oct-92,,10/1/1992,,20775-bb94209699-0-2.tgz,document-source,VOLUME77_ISSUE3_THURSDAYOCTOBER1_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 77, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb09225986,Object,20775-bb09225986-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,11/23/1971,,23-Nov-71,,11/23/1971,,20775-bb09225986-0-2.tgz,document-source,VOLUME14_ISSUE16_TUESDAYNOVEMBER23_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 14, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb5359501r,Object,20775-bb5359501r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/15/1982,,15-Nov-82,,11/15/1982,,20775-bb5359501r-0-2.tgz,document-source,VOLUME47_ISSUE16_MONDAYNOVEMBER15_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb7680342c,Object,20775-bb7680342c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/31/1991,,31-Jan-91,,1/31/1991,,20775-bb7680342c-0-2.tgz,document-source,VOLUME72_ISSUE8_THURSDAYJANUARY31_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 72, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb1878244q,Object,20775-bb1878244q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,5/2/1994,,2-May-94,,5/2/1994,,20775-bb1878244q-0-2.tgz,document-source,VOLUME82_ISSUE11_MONDAYMAY2_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 82, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb6349269c,Object,20775-bb6349269c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,9/26/2005,,26-Sep-05,,9/26/2005,,20775-bb6349269c-0-2.tgz,document-source,VOLUME116_ISSUE2_MONDAYSEPTEMBER26_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 116, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb8021638q,Object,20775-bb8021638q-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,3/8/1978,,8-Mar-78,,3/8/1978,,20775-bb8021638q-0-2.tgz,document-source,VOLUME33_ISSUE25_WEDNESDAYMARCH8_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 33, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb5257108d,Object,20775-bb5257108d-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,1/15/1974,,15-Jan-74,,1/15/1974,,20775-bb5257108d-0-2.tgz,document-source,VOLUME21_ISSUE3_TUESDAYJANUARY15_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 21, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb7680341v,Object,20775-bb7680341v-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,5/3/1990,,3-May-90,,5/3/1990,,20775-bb7680341v-0-2.tgz,document-source,VOLUME70_ISSUE10_THURSDAYMAY3_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 70, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb60762325,Object,20775-bb60762325-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,2/7/1991,,7-Feb-91,,2/7/1991,,20775-bb60762325-0-2.tgz,document-source,VOLUME72_ISSUE10_THURSDAYFEBRUARY7_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 72, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb5257107w,Object,20775-bb5257107w-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/2/1998,,2-Apr-98,,4/2/1998,,20775-bb5257107w-0-2.tgz,document-source,VOLUME94_ISSUE2_THURSDAYAPRIL2_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 94, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb6758827f,Object,20775-bb6758827f-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,2/11/1988,,11-Feb-88,,2/11/1988,,20775-bb6758827f-0-2.tgz,document-source,VOLUME59_ISSUE32_THURSDAYFEBRUARY11_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 59, Issue 32",, +http://library.ucsd.edu/ark:/20775/bb29021417,Object,20775-bb29021417-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/17/1984,,17-Jan-84,,1/17/1984,,20775-bb29021417-0-2.tgz,document-source,VOLUME51_ISSUE3_TUESDAYJANUARY17_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 51, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb70318710,Object,20775-bb70318710-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/20/1970,,20-Nov-70,,11/20/1970,,20775-bb70318710-0-2.tgz,document-source,VOLUME11_ISSUE16_FRIDAYNOVEMBER20_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 11, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb34140952,Object,20775-bb34140952-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/5/2004,,5-Jan-04,,1/5/2004,,20775-bb34140952-0-2.tgz,document-source,VOLUME111_ISSUE1_MONDAYJANUARY5_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 111, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb6076231n,Object,20775-bb6076231n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/2/1996,,2-May-96,,5/2/1996,,20775-bb6076231n-0-2.tgz,document-source,VOLUME88_ISSUE10_THURSDAYMAY2_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 88, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb05130397,Object,20775-bb05130397-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,2/23/1977,,23-Feb-77,,2/23/1977,,20775-bb05130397-0-2.tgz,document-source,VOLUME30_ISSUE19_WEDNESDAYFEBRUARY23_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 30, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb57349301,Object,20775-bb57349301-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,5/5/1978,,5-May-78,,5/5/1978,,20775-bb57349301-0-2.tgz,document-source,VOLUME34_ISSUE15_FRIDAYMAY5_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 34, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb25608393,Object,20775-bb25608393-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,6/3/1973,,3-Jun-73,,6/3/1973,,20775-bb25608393-0-2.tgz,document-source,VOLUME19_ISSUE19_FRIDAYJUNE3_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 19, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb6861345z,Object,20775-bb6861345z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/20/2011,,20-Jan-11,,1/20/2011,,,,01_20_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb43014668,Object,20775-bb43014668-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,10/11/2004,,11-Oct-04,,10/11/2004,,20775-bb43014668-0-2.tgz,document-source,VOLUME113_ISSUE6_MONDAYOCTOBER11_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 113, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb6895349t,Object,20775-bb6895349t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,3/14/1996,,14-Mar-96,,3/14/1996,,20775-bb6895349t-0-2.tgz,document-source,VOLUME87_ISSUE20_THURSDAYMARCH14_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 87, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb6349268v,Object,20775-bb6349268v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/14/1983,,14-Nov-83,,11/14/1983,,20775-bb6349268v-0-2.tgz,document-source,VOLUME50_ISSUE16_MONDAYNOVEMBER14_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 50, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb46086401,Object,20775-bb46086401-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,2/3/1975,,3-Feb-75,,2/3/1975,,20775-bb46086401-0-2.tgz,document-source,VOLUME24_ISSUE13_MONDAYFEBRUARY3_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 24, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb7714472m,Object,20775-bb7714472m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/23/2006,,23-Jan-06,,1/23/2006,,20775-bb7714472m-0-2.tgz,document-source,MONDAYJANUARY23_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 117, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb85677229,Object,20775-bb85677229-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/12/1986,,12-May-86,,5/12/1986,,,,VOLUME58_ISSUE13_MONDAYMAY12_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb4096693h,Object,20775-bb4096693h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,5/29/2003,,29-May-03,,5/29/2003,,20775-bb4096693h-0-2.tgz,document-source,VOLUME109_ISSUE18_THURSDAYMAY29_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 109, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb9318580d,Object,20775-bb9318580d-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,9/18/1979,,18-Sep-79,,9/18/1979,,20775-bb9318580d-0-2.tgz,document-source,VOLUME38_ISSUE1_TUESDAYSEPTEMBER18_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb1161508h,Object,20775-bb1161508h-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,Triton Times,UCSD Guardian,The Guardian,,,,,,,,,,,,,6/5/1980,,5-Jun-80,,6/5/1980,,20775-bb1161508h-0-2.tgz,document-source,VOLUME40_ISSUE48_THURSDAYJUNE5_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 48",, +http://library.ucsd.edu/ark:/20775/bb90114089,Object,20775-bb90114089-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,1/16/1970,,16-Jan-70,,1/16/1970,,20775-bb90114089-0-2.tgz,document-source,VOLUME9_ISSUE2_JANUARY16_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 9, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb9932919t,Object,20775-bb9932919t-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,9/28/1973,9/28/1973,28-Sep-73,28-Sep-73,9/28/1973,9/28/1973,20775-bb9932919t-0-2.tgz,document-source,VOLUME20_ISSUE2_FRIDAYSEPTEMBER28_1973.pdf,VOLUME20_ISSUE2_FRIDAYSEPTEMBER28_1973.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 20, Issue 2","Volume 20, Issue 2", +http://library.ucsd.edu/ark:/20775/bb6758826x,Object,20775-bb6758826x-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,UCSD Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/18/1980,,18-Nov-80,,11/18/1980,,20775-bb6758826x-0-2.tgz,document-source,VOLUME41_ISSUE43_TUESDAYNOVEMBER18_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 43",, +http://library.ucsd.edu/ark:/20775/bb36534834,Object,2013-02-19.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/19/2013,,19-Feb-13,,2/19/2013,,,,2013-02-19.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 33",,Newspaper +http://library.ucsd.edu/ark:/20775/bb4779295n,Object,20775-bb4779295n-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,3/6/2000,,6-Mar-00,,3/6/2000,,20775-bb4779295n-0-2.tgz,document-source,VOLUME99_ISSUE17_MONDAYMARCH6_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 99, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb3277570k,Object,20775-bb3277570k-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/26/1992,,26-May-92,,5/26/1992,,20775-bb3277570k-0-2.tgz,document-source,VOLUME74_ISSUE17_TUESDAYMAY26_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 74, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb99329189,Object,20775-bb99329189-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/8/1996,,8-Feb-96,,2/8/1996,,20775-bb99329189-0-2.tgz,document-source,VOLUME87_ISSUE10_THURSDAYFEBRUARY8_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 87, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb7509689m,Object,20775-bb7509689m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,9/19/2000,,19-Sep-00,,9/19/2000,,20775-bb7509689m-0-2.tgz,document-source,VOLUME101_ISSUE1_TUESDAYSEPTEMBER19_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 101, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb84653319,Object,20775-bb84653319-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,5/29/1973,,29-May-73,,5/29/1973,,20775-bb84653319-0-2.tgz,document-source,VOLUME19_ISSUE17_TUESDAYMAY29_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 19, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb4711032q,Object,20775-bb4711032q-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/14/1980,,14-May-80,,5/14/1980,,20775-bb4711032q-0-2.tgz,document-source,VOLUME40_ISSUE33_WEDNESDAYMAY14_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 33",, +http://library.ucsd.edu/ark:/20775/bb5496017q,Object,20775-bb5496017q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,2/19/1991,,19-Feb-91,,2/19/1991,,20775-bb5496017q-0-2.tgz,document-source,VOLUME72_ISSUE13_TUESDAYFEBRUARY19_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 72, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb0376523q,Object,20775-bb0376523q-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/17/1970,,17-Apr-70,,4/17/1970,,20775-bb0376523q-0-2.tgz,document-source,VOLUME10_ISSUE5_FRIDAYAPRIL17_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 10, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb1980754v,Object,20775-bb1980754v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/1/2010,,1-Apr-10,,4/1/2010,,,,04_01_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 42",, +http://library.ucsd.edu/ark:/20775/bb4745160c,Object,20775-bb4745160c-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,4/15/2004,,15-Apr-04,,4/15/2004,,20775-bb4745160c-0-2.tgz,document-source,VOLUME112_ISSUE6_THURSDAYAPRIL15_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 112, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb54960187,Object,20775-bb54960187-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,10/5/1971,,5-Oct-71,,10/5/1971,,20775-bb54960187-0-2.tgz,document-source,VOLUME14_ISSUE3_TUESDAYOCTOBER5_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 14, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb1536940d,Object,20775-bb1536940d-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,10/29/1980,,29-Oct-80,,10/29/1980,,20775-bb1536940d-0-2.tgz,document-source,VOLUME41_ISSUE29_WEDNESDAYOCTOBER29_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb4472119g,Object,20775-bb4472119g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/4/1991,,4-Apr-91,,4/4/1991,,20775-bb4472119g-0-2.tgz,document-source,VOLUME73_ISSUE2_THURSDAYAPRIL4_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 73, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb2526833z,Object,20775-bb2526833z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/21/2008,,21-Feb-08,,2/21/2008,,,,02_21_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb16734618,Object,20775-bb16734618-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,3/10/1983,,10-Mar-83,,3/10/1983,,20775-bb16734618-0-2.tgz,document-source,VOLUME48_ISSUE20_THURSDAYMARCH10_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb14009095,Object,2014-10-13.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/13/2014,,13-Oct-14,,10/13/2014,,,,2014-10-13.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 4",,Newspaper +http://library.ucsd.edu/ark:/20775/bb96598817,Object,20775-bb96598817-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,5/21/1975,5/21/1975,21-May-75,21-May-75,5/21/1975,5/21/1975,20775-bb96598817-0-2.tgz,document-source,VOLUME25_ISSUE23_WEDNESDAYMAY21_1975.pdf,VOLUME25_ISSUE23_WEDNESDAYMAY21_1975.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 25, Issue 23","Volume 25, Issue 23", +http://library.ucsd.edu/ark:/20775/bb0922597p,Object,20775-bb0922597p-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,1/31/1980,,31-Jan-80,,1/31/1980,,20775-bb0922597p-0-2.tgz,document-source,VOLUME39_ISSUE19_THURSDAYJANUARY31_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb1980755c,Object,20775-bb1980755c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/16/2011,,16-May-11,,5/16/2011,,,,05_16_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 44, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb11615070,Object,20775-bb11615070-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,4/2/1979,,2-Apr-79,,4/2/1979,,20775-bb11615070-0-2.tgz,document-source,VOLUME37_ISSUE1_MONDAYAPRIL2_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb80216376,Object,20775-bb80216376-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,1/5/1976,,5-Jan-76,,1/5/1976,,20775-bb80216376-0-2.tgz,document-source,VOLUME27_ISSUE1_MONDAYJANUARY5_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb9113799p,Object,20775-bb9113799p-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,10/5/1973,,5-Oct-73,,10/5/1973,,20775-bb9113799p-0-2.tgz,document-source,VOLUME20_ISSUE4_FRIDAYOCTOBER5_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 20, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb1161506g,Object,20775-bb1161506g-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,11/20/1978,,20-Nov-78,,11/20/1978,,20775-bb1161506g-0-2.tgz,document-source,VOLUME35_ISSUE26_MONDAYNOVEMBER20_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 35, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb90114068,Object,20775-bb90114068-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,6/6/1977,,6-Jun-77,,6/6/1977,,20775-bb90114068-0-2.tgz,document-source,VOLUME31_ISSUE27_MONDAYJUNE6_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 31, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb9932917s,Object,20775-bb9932917s-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,11/30/1971,11/30/1971,30-Nov-71,30-Nov-71,11/30/1971,11/30/1971,20775-bb9932917s-0-2.tgz,document-source,VOLUME14_ISSUE17_NOVEMBER30_1971.pdf,VOLUME14_ISSUE17_NOVEMBER30_1971.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 14, Issue 17","Volume 14, Issue 17", +http://library.ucsd.edu/ark:/20775/bb45405053,Object,20775-bb45405053-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/13/2007,,13-Nov-07,,11/13/2007,,,,11_13_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb3857943s,Object,20775-bb3857943s-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,3/15/2012,,15-Mar-12,,3/15/2012,,,,2012-03-15.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 40",, +http://library.ucsd.edu/ark:/20775/bb43697289,Object,20775-bb43697289-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,5/7/1975,,7-May-75,,5/7/1975,,20775-bb43697289-0-2.tgz,document-source,VOLUME25_ISSUE17_WEDNESDAYMAY7_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 25, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb67930855,Object,20775-bb67930855-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/28/2011,,28-Mar-11,,3/28/2011,,,,03_28_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 41",, +http://library.ucsd.edu/ark:/20775/bb71683887,Object,20775-bb71683887-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,11/17/1972,,17-Nov-72,,11/17/1972,,20775-bb71683887-0-2.tgz,document-source,VOLUME17_ISSUE16_FRIDAYNOVEMBER17_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 17, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb9864784b,Object,20775-bb9864784b-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Triton Times,Guardian,Daily Guardian,The Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,5/11/2009,5/11/2009,11-May-09,11-May-09,5/11/2009,5/11/2009,,,05_11_09.pdf,05_11_09.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA",,, +http://library.ucsd.edu/ark:/20775/bb3755393b,Object,20775-bb3755393b-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,6/3/1975,,3-Jun-75,,6/3/1975,,20775-bb3755393b-0-2.tgz,document-source,VOLUME25_ISSUE28_TUESDAYJUNE3_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 25, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb6178619s,Object,20775-bb6178619s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/31/1983,,31-May-83,,5/31/1983,,20775-bb6178619s-0-2.tgz,document-source,VOLUME49_ISSUE17_TUESDAYMAY31_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 49, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb3038662s,Object,20775-bb3038662s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,2/16/2006,,16-Feb-06,,2/16/2006,,20775-bb3038662s-0-2.tgz,document-source,THURSDAYFEBRUARY16_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 117, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb3755392t,Object,20775-bb3755392t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/1/2000,,1-Apr-00,,4/1/2000,,20775-bb3755392t-0-2.tgz,document-source,VOLUME100_ISSUE1_MONDAYAPRIL1_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 100, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb8465330s,Object,20775-bb8465330s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/18/1993,,18-Nov-93,,11/18/1993,,20775-bb8465330s-0-2.tgz,document-source,VOLUME80_ISSUE17_THURSDAYNOVEMBER18_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 80, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb32775713,Object,20775-bb32775713-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,10/17/1994,,17-Oct-94,,10/17/1994,,20775-bb32775713-0-2.tgz,document-source,VOLUME83_ISSUE8_MONDAYOCTOBER17_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 83, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb47110337,Object,20775-bb47110337-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,3/1/1984,,1-Mar-84,,3/1/1984,,20775-bb47110337-0-2.tgz,document-source,VOLUME51_ISSUE16_THURSDAYMARCH1_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 51, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb84311984,Object,20775-bb84311984-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,4/27/2000,,27-Apr-00,,4/27/2000,,20775-bb84311984-0-2.tgz,document-source,VOLUME100_ISSUE8_THURSDAYAPRIL27_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 100, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb8499464j,Object,20775-bb8499464j-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/11/1979,,11-Apr-79,,4/11/1979,,20775-bb8499464j-0-2.tgz,document-source,VOLUME37_ISSUE5_WEDNESDAYAPRIL11_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb0956731c,Object,20775-bb0956731c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,9/22/1986,,22-Sep-86,,9/22/1986,,,,VOLUME58_ISSUE1_MONDAYSEPTEMBER22_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb9523485j,Object,20775-bb9523485j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/16/2009,,16-Apr-09,,4/16/2009,,,,04_16_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb5257109x,Object,20775-bb5257109x-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,1/14/1982,,14-Jan-82,,1/14/1982,,20775-bb5257109x-0-2.tgz,document-source,VOLUME45_ISSUE4_THURSDAYJANUARY14_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb8021636p,Object,20775-bb8021636p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,9/24/1990,,24-Sep-90,,9/24/1990,,20775-bb8021636p-0-2.tgz,document-source,VOLUME71_ISSUE1_MONDAYSEPTEMBER24_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 71, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb61444909,Object,20775-bb61444909-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,11/1/1982,,1-Nov-82,,11/1/1982,,20775-bb61444909-0-2.tgz,document-source,VOLUME47_ISSUE12_MONDAYNOVEMBER1_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb4540542g,Object,20775-bb4540542g-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,3/12/2012,,12-Mar-12,,3/12/2012,,,,2012-03-12.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 39",, +http://library.ucsd.edu/ark:/20775/bb0956730v,Object,20775-bb0956730v-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/17/1975,,17-Nov-75,,11/17/1975,,20775-bb0956730v-0-2.tgz,document-source,VOLUME26_ISSUE25_MONDAYNOVEMBER17_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 26, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb4369727s,Object,20775-bb4369727s-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,1/11/1972,,11-Jan-72,,1/11/1972,,20775-bb4369727s-0-2.tgz,document-source,VOLUME15_ISSUE3_JANUARY11_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 15, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb5188976j,Object,20775-bb5188976j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/3/2011,,3-Jan-11,,1/3/2011,,,,01_03_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb8874893t,Object,20775-bb8874893t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,2/3/1992,,3-Feb-92,,2/3/1992,,20775-bb8874893t-0-2.tgz,document-source,VOLUME75_ISSUE9_MONDAYFEBRUARY3_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 75, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb55984055,Object,20775-bb55984055-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,4/22/1991,,22-Apr-91,,4/22/1991,,20775-bb55984055-0-2.tgz,document-source,VOLUME73_ISSUE7_MONDAYAPRIL22_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 73, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb7168387q,Object,20775-bb7168387q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/15/1987,,15-Jan-87,,1/15/1987,,,,VOLUME58_ISSUE24_THURSDAYJANUARY15_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb07860766,Object,20775-bb07860766-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,9/29/1997,,29-Sep-97,,9/29/1997,,20775-bb07860766-0-2.tgz,document-source,VOLUME92_ISSUE2_MONDAYSEPTEMBER29_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 92, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb5666673s,Object,20775-bb5666673s-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/6/1970,,6-Feb-70,,2/6/1970,,20775-bb5666673s-0-2.tgz,document-source,VOLUME9_ISSUE5_FEBRUARY6_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 9, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb0786077q,Object,20775-bb0786077q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,12/9/1999,,9-Dec-99,,12/9/1999,,20775-bb0786077q-0-2.tgz,document-source,VOLUME98_ISSUE20_THURSDAYDECEMBER9_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 98, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb6144492b,Object,20775-bb6144492b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,1/31/1985,,31-Jan-85,,1/31/1985,,20775-bb6144492b-0-2.tgz,document-source,VOLUME54_ISSUE8_THURSDAYJANUARY31_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 54, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb0683817t,Object,20775-bb0683817t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/24/2011,,24-Jan-11,,1/24/2011,,,,01_24_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb2287925m,Object,20775-bb2287925m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/4/2010,,4-Nov-10,,11/4/2010,,,,11_04_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb97627578,Object,2014-11-13.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/13/2014,,13-Nov-14,,11/13/2014,,,,2014-11-13.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 13",,Newspaper +http://library.ucsd.edu/ark:/20775/bb0376521p,Object,20775-bb0376521p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/13/1997,,13-Oct-97,,10/13/1997,,20775-bb0376521p-0-2.tgz,document-source,VOLUME92_ISSUE6_MONDAYOCTOBER13_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 92, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb4711030p,Object,20775-bb4711030p-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,5/15/2000,,15-May-00,,5/15/2000,,20775-bb4711030p-0-2.tgz,document-source,VOLUME100_ISSUE13_MONDAYMAY15_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 100, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb3277572m,Object,20775-bb3277572m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/31/1988,,31-May-88,,5/31/1988,,20775-bb3277572m-0-2.tgz,document-source,VOLUME64_ISSUE17_TUESDAYMAY31_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 64, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb5496019r,Object,20775-bb5496019r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/8/1999,,8-Nov-99,,11/8/1999,,20775-bb5496019r-0-2.tgz,document-source,VOLUME98_ISSUE12_MONDAYNOVEMBER8_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 98, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb7509687k,Object,20775-bb7509687k-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,6/3/1968,,3-Jun-68,,6/3/1968,,20775-bb7509687k-0-2.tgz,document-source,VOLUME4_ISSUE9_JUNE3_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 4, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb4779293m,Object,20775-bb4779293m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/27/2003,,27-May-03,,5/27/2003,,20775-bb4779293m-0-2.tgz,document-source,VOLUME109_ISSUE17_TUESDAYMAY27_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 109, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb51889751,Object,20775-bb51889751-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/28/2010,,28-Jan-10,,1/28/2010,,,,01_28_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb16734639,Object,20775-bb16734639-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/24/2005,,24-Oct-05,,10/24/2005,,20775-bb16734639-0-2.tgz,document-source,VOLUME116_ISSUE10_MONDAYOCTOBER24_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 116, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb2970525z,Object,20775-bb2970525z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/10/2011,,10-Feb-11,,2/10/2011,,,,02_10_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 32",, +http://library.ucsd.edu/ark:/20775/bb6144491t,Object,20775-bb6144491t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,3/14/1991,,14-Mar-91,,3/14/1991,,20775-bb6144491t-0-2.tgz,document-source,VOLUME72_ISSUE20_THURSDAYMARCH14_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 72, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb0922599q,Object,20775-bb0922599q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,1/14/1991,,14-Jan-91,,1/14/1991,,20775-bb0922599q-0-2.tgz,document-source,VOLUME72_ISSUE3_MONDAYJANUARY14_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 72, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb5598406p,Object,20775-bb5598406p-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/4/1998,,4-May-98,,5/4/1998,,20775-bb5598406p-0-2.tgz,document-source,VOLUME94_ISSUE11_MONDAYMAY4_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 94, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb2561006x,Object,20775-bb2561006x-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,1/23/2012,,23-Jan-12,,1/23/2012,,,,2012-01-23.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb3755395c,Object,20775-bb3755395c-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,10/17/1991,,17-Oct-91,,10/17/1991,,20775-bb3755395c-0-2.tgz,document-source,VOLUME74_ISSUE7_THURSDAYOCTOBER17_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 74, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb8465333b,Object,20775-bb8465333b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/14/1999,,14-Jan-99,,1/14/1999,,20775-bb8465333b-0-2.tgz,document-source,VOLUME96_ISSUE4_THURSDAYJANUARY14_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 96, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb4745161w,Object,20775-bb4745161w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/24/1993,,24-May-93,,5/24/1993,,20775-bb4745161w-0-2.tgz,document-source,VOLUME79_ISSUE17_MONDAYMAY24_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 79, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb07860787,Object,20775-bb07860787-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/7/1991,,7-Oct-91,,10/7/1991,,20775-bb07860787-0-2.tgz,document-source,VOLUME74_ISSUE4_MONDAYOCTOBER7_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 74, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb78509853,Object,20775-bb78509853-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,11/4/1996,,4-Nov-96,,11/4/1996,,20775-bb78509853-0-2.tgz,document-source,VOLUME87_ISSUE12_MONDAYNOVEMBER4_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 87, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb4745162d,Object,20775-bb4745162d-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,2/22/1978,,22-Feb-78,,2/22/1978,,20775-bb4745162d-0-2.tgz,document-source,VOLUME33_ISSUE19_WEDNESDAYFEBRUARY22_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 33, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb32775734,Object,20775-bb32775734-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,UCSD Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/25/1979,,25-Oct-79,,10/25/1979,,20775-bb32775734-0-2.tgz,document-source,VOLUME38_ISSUE25_THURSDAYOCTOBER25_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb1571073t,Object,20775-bb1571073t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,4/13/1989,,13-Apr-89,,4/13/1989,,20775-bb1571073t-0-2.tgz,document-source,VOLUME67_ISSUE4_THURSDAYAPRIL13_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 67, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb12298948,Object,20775-bb12298948-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/17/2008,,17-Nov-08,,11/17/2008,,,,11_17_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb8465332t,Object,20775-bb8465332t-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/7/1998,,7-May-98,,5/7/1998,,20775-bb8465332t-0-2.tgz,document-source,VOLUME94_ISSUE12_THURSDAYMAY7_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 94, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb47110316,Object,20775-bb47110316-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,5/18/2006,,18-May-06,,5/18/2006,,20775-bb47110316-0-2.tgz,document-source,THURSDAYMAY18_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 118, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb34140910,Object,20775-bb34140910-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/6/2004,,6-May-04,,5/6/2004,,20775-bb34140910-0-2.tgz,document-source,VOLUME112_ISSUE12_THURSDAYMAY6_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 112, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb2356059w,Object,20775-bb2356059w-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,11/4/1982,,4-Nov-82,,11/4/1982,,20775-bb2356059w-0-2.tgz,document-source,VOLUME47_ISSUE13_THURSDAYNOVEMBER4_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb69636062,Object,20775-bb69636062-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,4/25/1972,,25-Apr-72,,4/25/1972,,20775-bb69636062-0-2.tgz,document-source,VOLUME16_ISSUE9_TUESDAYAPRIL25_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 16, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb1025116z,Object,20775-bb1025116z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/14/2011,,14-Apr-11,,4/14/2011,,,,04_14_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 46",, +http://library.ucsd.edu/ark:/20775/bb3755394v,Object,20775-bb3755394v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,5/1/2000,,1-May-00,,5/1/2000,,20775-bb3755394v-0-2.tgz,document-source,VOLUME100_ISSUE9_MONDAYMAY1_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 100, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb03765226,Object,20775-bb03765226-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/6/1997,,6-Jan-97,,1/6/1997,,20775-bb03765226-0-2.tgz,document-source,VOLUME90_ISSUE1_MONDAYJANUARY6_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 90, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb52229811,Object,20775-bb52229811-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,2/27/1978,,27-Feb-78,,2/27/1978,,20775-bb52229811-0-2.tgz,document-source,VOLUME33_ISSUE21_MONDAYFEBRUARY27_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 33, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb1605207r,Object,20775-bb1605207r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,2/28/1983,,28-Feb-83,,2/28/1983,,20775-bb1605207r-0-2.tgz,document-source,VOLUME48_ISSUE17_MONDAYFEBRUARY28_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 48, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb1673460r,Object,20775-bb1673460r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,4/11/1996,,11-Apr-96,,4/11/1996,,20775-bb1673460r-0-2.tgz,document-source,VOLUME88_ISSUE4_THURSDAYAPRIL11_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 88, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb5222980h,Object,20775-bb5222980h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,5/6/1985,,6-May-85,,5/6/1985,,20775-bb5222980h-0-2.tgz,document-source,VOLUME55_ISSUE11_MONDAYMAY6_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 55, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb93869686,Object,20775-bb93869686-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/17/2011,,17-Oct-11,,10/17/2011,,,,10_17_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb06497248,Object,20775-bb06497248-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,1/9/2012,,9-Jan-12,,1/9/2012,,,,2012-01-09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb0377002d,Object,2013-06-06.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/6/2013,,6-Jun-13,,6/6/2013,,,,2013-06-06.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 60",,Newspaper +http://library.ucsd.edu/ark:/20775/bb55984076,Object,20775-bb55984076-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/20/2003,,20-Oct-03,,10/20/2003,,20775-bb55984076-0-2.tgz,document-source,VOLUME110_ISSUE8_MONDAYOCTOBER20_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 110, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb7168389r,Object,20775-bb7168389r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/24/2003,,24-Apr-03,,4/24/2003,,20775-bb7168389r-0-2.tgz,document-source,VOLUME109_ISSUE8_THURSDAYAPRIL24_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 109, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb4540506m,Object,20775-bb4540506m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/22/2011,,22-Feb-11,,2/22/2011,,,,02_22_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 35",, +http://library.ucsd.edu/ark:/20775/bb9898790j,Object,20775-bb9898790j-0-1.pdf,document-service,text,,Daily Guardian,Daily Guardian,,,UCSD Guardian,Guardian,Triton Times,The Guardian,UCSD Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,1/14/1980,1/14/1980,14-Jan-80,14-Jan-80,1/14/1980,1/14/1980,20775-bb9898790j-0-2.tgz,document-source,VOLUME39_ISSUE6_MONDAYJANUARY14_1980.pdf,VOLUME39_ISSUE6_MONDAYJANUARY14_1980.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 39, Issue 6","Volume 39, Issue 6", +http://library.ucsd.edu/ark:/20775/bb67248264,Object,20775-bb67248264-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/6/2008,,6-Oct-08,,10/6/2008,,,,10_06_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb08203345,Object,20775-bb08203345-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/20/2009,,20-Jan-09,,1/20/2009,,,,01_20_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb30386618,Object,20775-bb30386618-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/26/2006,,26-Jan-06,,1/26/2006,,20775-bb30386618-0-2.tgz,document-source,THURSDAYJANUARY26_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 117, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb5154717g,Object,20775-bb5154717g-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,4/3/1970,,3-Apr-70,,4/3/1970,,20775-bb5154717g-0-2.tgz,document-source,VOLUME10_ISSUE1_FRIDAYAPRIL3_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 10, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb5666671r,Object,20775-bb5666671r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/21/1984,,21-Feb-84,,2/21/1984,,20775-bb5666671r-0-2.tgz,document-source,VOLUME51_ISSUE13_TUESDAYFEBRUARY21_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 51, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb3243440w,Object,20775-bb3243440w-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,6/9/1978,,9-Jun-78,,6/9/1978,,20775-bb3243440w-0-2.tgz,document-source,VOLUME34_ISSUE29_FRIDAYJUNE9_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 34, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb1536943z,Object,20775-bb1536943z-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/28/1972,,28-Mar-72,,3/28/1972,,20775-bb1536943z-0-2.tgz,document-source,VOLUME16_ISSUE1_TUESDAYMARCH28_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 16, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb74072973,Object,20775-bb74072973-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,11/10/1988,,10-Nov-88,,11/10/1988,,20775-bb74072973-0-2.tgz,document-source,VOLUME65_ISSUE15_THURSDAYNOVEMBER10_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 65, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb5598408q,Object,20775-bb5598408q-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,1/24/1977,,24-Jan-77,,1/24/1977,,20775-bb5598408q-0-2.tgz,document-source,VOLUME30_ISSUE7_MONDAYJANUARY24_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 30, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb3243441d,Object,20775-bb3243441d-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,2/3/1977,,3-Feb-77,,2/3/1977,,20775-bb3243441d-0-2.tgz,document-source,VOLUME33_ISSUE12_FRIDAYFEBRUARY3_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 33, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb06838169,Object,20775-bb06838169-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/5/2010,,5-Apr-10,,4/5/2010,,,,04_05_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 43",, +http://library.ucsd.edu/ark:/20775/bb8840759r,Object,20775-bb8840759r-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/24/1976,,24-Nov-76,,11/24/1976,,20775-bb8840759r-0-2.tgz,document-source,VOLUME29_ISSUE27_WEDNESDAYNOVEMBER24_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 29, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb8841249f,Object,2014-02-20.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/20/2014,,20-Feb-14,,2/20/2014,,,,2014-02-20.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 34",,Newspaper +http://library.ucsd.edu/ark:/20775/bb98987912,Object,20775-bb98987912-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Guardian,The Guardian,Daily Guardian,Triton Times,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,2/19/2002,2/19/2002,19-Feb-02,19-Feb-02,2/19/2002,2/19/2002,20775-bb98987912-0-2.tgz,document-source,VOLUME105_ISSUE13_TUESDAYFEBRUARY19_2002.pdf,VOLUME105_ISSUE13_TUESDAYFEBRUARY19_2002.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 105, Issue 13","Volume 105, Issue 13", +http://library.ucsd.edu/ark:/20775/bb57349364,Object,20775-bb57349364-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/19/1987,,19-Oct-87,,10/19/1987,,20775-bb57349364-0-2.tgz,document-source,VOLUME59_ISSUE8_MONDAYOCTOBER19_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 59, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb6144493v,Object,20775-bb6144493v-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/23/1974,,23-Oct-74,,10/23/1974,,20775-bb6144493v-0-2.tgz,document-source,VOLUME23_ISSUE14_WEDNESDAYOCTOBER23_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 23, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb1536944g,Object,20775-bb1536944g-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,6/7/1979,,7-Jun-79,,6/7/1979,,20775-bb1536944g-0-2.tgz,document-source,VOLUME37_ISSUE30_THURSDAYJUNE7_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 37, Issue 30",, +http://library.ucsd.edu/ark:/20775/bb69977378,Object,20775-bb69977378-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/26/2001,,26-Feb-01,,2/26/2001,,20775-bb69977378-0-2.tgz,document-source,VOLUME102_ISSUE15_MONDAYFEBRUARY26_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 102, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb1502808c,Object,20775-bb1502808c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/24/1995,,24-Apr-95,,4/24/1995,,20775-bb1502808c-0-2.tgz,document-source,VOLUME85_ISSUE7_MONDAYAPRIL24_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 85, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb0171738x,Object,20775-bb0171738x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/26/2001,,26-Nov-01,,11/26/2001,,20775-bb0171738x-0-2.tgz,document-source,VOLUME104_ISSUE19_MONDAYNOVEMBER26_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 104, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb7680467c,Object,20775-bb7680467c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/19/2008,,19-May-08,,5/19/2008,,,,05_19_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb24585777,Object,20775-bb24585777-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/12/2009,,12-Feb-09,,2/12/2009,,,,02_12_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb88748929,Object,20775-bb88748929-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/4/1979,,4-May-79,,5/4/1979,,20775-bb88748929-0-2.tgz,document-source,VOLUME37_ISSUE15_FRIDAYMAY4_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 37, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb15710729,Object,20775-bb15710729-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,3/3/1994,,3-Mar-94,,3/3/1994,,20775-bb15710729-0-2.tgz,document-source,VOLUME81_ISSUE18_THURSDAYMARCH3_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 81, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb52229832,Object,20775-bb52229832-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,11/8/2001,,8-Nov-01,,11/8/2001,,20775-bb52229832-0-2.tgz,document-source,VOLUME104_ISSUE15_THURSDAYNOVEMBER8_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 104, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb84994610,Object,20775-bb84994610-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,10/28/1999,,28-Oct-99,,10/28/1999,,20775-bb84994610-0-2.tgz,document-source,VOLUME98_ISSUE9_THURSDAYOCTOBER28_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 98, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb69636083,Object,20775-bb69636083-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/6/2000,,6-Nov-00,,11/6/2000,,20775-bb69636083-0-2.tgz,document-source,VOLUME101_ISSUE14_MONDAYNOVEMBER6_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 101, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb7407296k,Object,20775-bb7407296k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/27/1986,,27-Oct-86,,10/27/1986,,,,VOLUME58_ISSUE10_MONDAYOCTOBER27_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb56666749,Object,20775-bb56666749-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,4/23/2001,,23-Apr-01,,4/23/2001,,20775-bb56666749-0-2.tgz,document-source,VOLUME103_ISSUE7_MONDAYAPRIL23_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 103, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb8806755n,Object,20775-bb8806755n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/15/2009,,15-Oct-09,,10/15/2009,,,,10_15_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb1571071s,Object,20775-bb1571071s-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,11/22/1976,,22-Nov-76,,11/22/1976,,20775-bb1571071s-0-2.tgz,document-source,VOLUME29_ISSUE26_MONDAYNOVEMBER22_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 29, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb1639327z,Object,20775-bb1639327z-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,2/8/1972,,8-Feb-72,,2/8/1972,,20775-bb1639327z-0-2.tgz,document-source,VOLUME15_ISSUE11_TUESDAYFEBRUARY8_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 15, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb32775755,Object,20775-bb32775755-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,11/8/1976,,8-Nov-76,,11/8/1976,,20775-bb32775755-0-2.tgz,document-source,VOLUME29_ISSUE20_MONDAYNOVEMBER8_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 29, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb80900655,Object,20775-bb80900655-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,4/12/2012,,12-Apr-12,,4/12/2012,,,,2012-04-12.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 44",, +http://library.ucsd.edu/ark:/20775/bb4745163x,Object,20775-bb4745163x-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,11/16/1971,,16-Nov-71,,11/16/1971,,20775-bb4745163x-0-2.tgz,document-source,VOLUME14_ISSUE14_TUESDAYNOVEMBER16_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 14, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb1639328g,Object,20775-bb1639328g-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/8/1968,,8-Nov-68,,11/8/1968,,20775-bb1639328g-0-2.tgz,document-source,VOLUME5_ISSUE6_NOVEMBER8_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 5, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb4130818q,Object,20775-bb4130818q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,2/9/1998,,9-Feb-98,,2/9/1998,,20775-bb4130818q-0-2.tgz,document-source,VOLUME93_ISSUE11_MONDAYFEBRUARY9_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 93, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb5120595m,Object,20775-bb5120595m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/5/1982,,5-Apr-82,,4/5/1982,,20775-bb5120595m-0-2.tgz,document-source,VOLUME46_ISSUE3_MONDAYAPRIL5_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb0956734x,Object,20775-bb0956734x-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,10/15/1975,,15-Oct-75,,10/15/1975,,20775-bb0956734x-0-2.tgz,document-source,VOLUME26_ISSUE11_WEDNESDAYOCTOBER15_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb0171737d,Object,20775-bb0171737d-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/9/1976,,9-Feb-76,,2/9/1976,,20775-bb0171737d-0-2.tgz,document-source,VOLUME27_ISSUE16_FEBRUARY9_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb03765205,Object,20775-bb03765205-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,2/4/1985,,4-Feb-85,,2/4/1985,,20775-bb03765205-0-2.tgz,document-source,VOLUME54_ISSUE9_MONDAYFEBRUARY4_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 54, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb8362942d,Object,20775-bb8362942d-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,2/10/1978,,10-Feb-78,,2/10/1978,,20775-bb8362942d-0-2.tgz,document-source,VOLUME33_ISSUE15_FRIDAYFEBRUARY10_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 33, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb33118266,Object,20775-bb33118266-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/25/2011,,25-Apr-11,,4/25/2011,,,,04_25_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 49",, +http://library.ucsd.edu/ark:/20775/bb70661246,Object,20775-bb70661246-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/28/2008,,28-Feb-08,,2/28/2008,,,,02_28_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb3687255m,Object,20775-bb3687255m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/23/2009,,23-Apr-09,,4/23/2009,,,,04_23_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb51205964,Object,20775-bb51205964-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,9/19/1988,,19-Sep-88,,9/19/1988,,20775-bb51205964-0-2.tgz,document-source,VOLUME65_ISSUE1_MONDAYSEPTEMBER19_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 65, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb51547180,Object,20775-bb51547180-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,6/6/1975,,6-Jun-75,,6/6/1975,,20775-bb51547180-0-2.tgz,document-source,VOLUME25_ISSUE30_FRIDAYJUNE6_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 25, Issue 30",, +http://library.ucsd.edu/ark:/20775/bb16393290,Object,20775-bb16393290-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/9/1994,,9-May-94,,5/9/1994,,20775-bb16393290-0-2.tgz,document-source,VOLUME82_ISSUE9_MONDAYMAY9_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 82, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb55984097,Object,20775-bb55984097-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/16/1974,,16-Apr-74,,4/16/1974,,20775-bb55984097-0-2.tgz,document-source,VOLUME22_ISSUE5_TUESDAYAPRIL16_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 22, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb97286238,Object,2013-12-02.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/25/2013,,2-Dec-13,,11/25/2013,,,,2013-12-02.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 19",,Newspaper +http://library.ucsd.edu/ark:/20775/bb1605205q,Object,20775-bb1605205q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,2/2/1998,,2-Feb-98,,2/2/1998,,20775-bb1605205q-0-2.tgz,document-source,VOLUME93_ISSUE9_MONDAYFEBRUARY2_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 93, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb8499460g,Object,20775-bb8499460g-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,4/2/1976,,2-Apr-76,,4/2/1976,,20775-bb8499460g-0-2.tgz,document-source,VOLUME28_ISSUE3_FRIDAYAPRIL2_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 28, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb2356058c,Object,20775-bb2356058c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,9/20/1994,,20-Sep-94,,9/20/1994,,20775-bb2356058c-0-2.tgz,document-source,VOLUME83_ISSUE1_TUESDAYSEPTEMBER20_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 83, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb8909144j,Object,20775-bb8909144j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/7/2008,,7-Jan-08,,1/7/2008,,,,01_07_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb5325497z,Object,20775-bb5325497z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/30/2009,,30-Nov-09,,11/30/2009,,,,11_30_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb1673462s,Object,20775-bb1673462s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/7/1988,,7-Apr-88,,4/7/1988,,20775-bb1673462s-0-2.tgz,document-source,VOLUME64_ISSUE2_THURSDAYAPRIL7_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 64, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb5222982j,Object,20775-bb5222982j-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,5/27/1986,,27-May-86,,5/27/1986,,,,VOLUME58_ISSUE17_TUESDAYMAY27_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb3277574n,Object,20775-bb3277574n-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,10/31/1977,,31-Oct-77,,10/31/1977,,20775-bb3277574n-0-2.tgz,document-source,VOLUME32_ISSUE17_MONDAYOCTOBER31_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 32, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb5154716z,Object,20775-bb5154716z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/2/2004,,2-Feb-04,,2/2/2004,,20775-bb5154716z-0-2.tgz,document-source,VOLUME111_ISSUE9_MONDAYFEBRUARY2_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 111, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb5734935m,Object,20775-bb5734935m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,3/7/1996,,7-Mar-96,,3/7/1996,,20775-bb5734935m-0-2.tgz,document-source,VOLUME87_ISSUE18_THURSDAYMARCH7_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 87, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb1025115f,Object,20775-bb1025115f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/7/2010,,7-Jan-10,,1/7/2010,,,,01_07_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb0956735f,Object,20775-bb0956735f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,10/7/1996,,7-Oct-96,,10/7/1996,,20775-bb0956735f-0-2.tgz,document-source,VOLUME89_ISSUE4_MONDAYOCTOBER7_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 89, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb2014885g,Object,20775-bb2014885g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/7/2011,,7-Apr-11,,4/7/2011,,,,04_07_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 44",, +http://library.ucsd.edu/ark:/20775/bb5496015p,Object,20775-bb5496015p-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,4/25/1977,,25-Apr-77,,4/25/1977,,20775-bb5496015p-0-2.tgz,document-source,VOLUME31_ISSUE10_MONDAYAPRIL25_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 31, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb4437988g,Object,20775-bb4437988g-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/3/2000,,3-Feb-00,,2/3/2000,,20775-bb4437988g-0-2.tgz,document-source,VOLUME99_ISSUE8_THURSDAYFEBRUARY3_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 99, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb6997738s,Object,20775-bb6997738s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,11/28/1983,,28-Nov-83,,11/28/1983,,20775-bb6997738s-0-2.tgz,document-source,VOLUME50_ISSUE19_MONDAYNOVEMBER28_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 50, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb2117275w,Object,20775-bb2117275w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/9/2009,,9-Feb-09,,2/9/2009,,,,02_09_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb41308197,Object,20775-bb41308197-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/19/2001,,19-Nov-01,,11/19/2001,,20775-bb41308197-0-2.tgz,document-source,VOLUME104_ISSUE18_MONDAYNOVEMBER19_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 104, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb2288283r,Object,2013-11-21.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/18/2013,,21-Nov-13,,11/18/2013,,,,2013-11-21.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 17",,Newspaper +http://library.ucsd.edu/ark:/20775/bb1536941x,Object,20775-bb1536941x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/29/1998,,29-Oct-98,,10/29/1998,,20775-bb1536941x-0-2.tgz,document-source,VOLUME95_ISSUE11_THURSDAYOCTOBER29_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 95, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb3243442x,Object,20775-bb3243442x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,11/27/2000,,27-Nov-00,,11/27/2000,,20775-bb3243442x-0-2.tgz,document-source,VOLUME101_ISSUE19_MONDAYNOVEMBER27_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 101, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb74072952,Object,20775-bb74072952-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/7/1977,,7-Oct-77,,10/7/1977,,20775-bb74072952-0-2.tgz,document-source,VOLUME32_ISSUE7_FRIDAYOCTOBER7_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb30386639,Object,20775-bb30386639-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/4/1971,,4-May-71,,5/4/1971,,20775-bb30386639-0-2.tgz,document-source,VOLUME13_ISSUE11_TUESDAYMAY4_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 13, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb5154715f,Object,20775-bb5154715f-0-1.pdf,document-service,text,,The Guardian,,,,Daily Guardian,UCSD Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/21/1981,,21-May-81,,5/21/1981,,20775-bb5154715f-0-2.tgz,document-source,VOLUME43_ISSUE17_THURSDAYMAY21_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb9182547k,Object,2014-01-21.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/21/2014,,21-Jan-14,,1/21/2014,,,,2014-01-21.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 25",,Newspaper +http://library.ucsd.edu/ark:/20775/bb6963607k,Object,20775-bb6963607k-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,2/5/1974,,5-Feb-74,,2/5/1974,,20775-bb6963607k-0-2.tgz,document-source,VOLUME21_ISSUE9_TUESDAYFEBRUARY5_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 21, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb26974851,Object,20775-bb26974851-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/4/2009,,4-Jun-09,,6/4/2009,,,,06_04_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb9113797n,Object,20775-bb9113797n-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,1/24/1979,,24-Jan-79,,1/24/1979,,20775-bb9113797n-0-2.tgz,document-source,VOLUME36_ISSUE8_WEDNESDAYJANUARY24_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 36, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb7441594x,Object,20775-bb7441594x-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,1/17/2012,,17-Jan-12,,1/17/2012,,,,2012-01-17.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb1502809w,Object,20775-bb1502809w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,11/20/1989,,20-Nov-89,,11/20/1989,,20775-bb1502809w-0-2.tgz,document-source,VOLUME68_ISSUE18_MONDAYNOVEMBER20_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 68, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb16052067,Object,20775-bb16052067-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,5/24/2001,,24-May-01,,5/24/2001,,20775-bb16052067-0-2.tgz,document-source,VOLUME103_ISSUE16_THURSDAYMAY24_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 103, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb3243443f,Object,20775-bb3243443f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/11/2001,,11-Oct-01,,10/11/2001,,20775-bb3243443f-0-2.tgz,document-source,VOLUME104_ISSUE7_THURSDAYOCTOBER11_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 104, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb84994652,Object,20775-bb84994652-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,1/31/2005,,31-Jan-05,,1/31/2005,,20775-bb84994652-0-2.tgz,document-source,VOLUME114_ISSUE9_MONDAYJANUARY31_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 114, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb69977399,Object,20775-bb69977399-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,4/15/1999,,15-Apr-99,,4/15/1999,,20775-bb69977399-0-2.tgz,document-source,VOLUME97_ISSUE6_THURSDAYAPRIL15_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 97, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb15710708,Object,20775-bb15710708-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,11/11/1982,,11-Nov-82,,11/11/1982,,20775-bb15710708-0-2.tgz,document-source,VOLUME47_ISSUE15_THURSDAYNOVEMBER11_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb52229853,Object,20775-bb52229853-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,1/7/1972,,7-Jan-72,,1/7/1972,,20775-bb52229853-0-2.tgz,document-source,VOLUME15_ISSUE2_FRIDAYJANUARY7_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 15, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb7100126t,Object,20775-bb7100126t-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,11/2/1971,,2-Nov-71,,11/2/1971,,20775-bb7100126t-0-2.tgz,document-source,VOLUME14_ISSUE11_TUESDAYNOVEMBER2_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 14, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb1400417c,Object,20775-bb1400417c-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/23/1975,,23-May-75,,5/23/1975,,20775-bb1400417c-0-2.tgz,document-source,VOLUME25_ISSUE24_FRIDAYMAY23_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 25, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb1536942f,Object,20775-bb1536942f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,11/22/1993,,22-Nov-93,,11/22/1993,,20775-bb1536942f-0-2.tgz,document-source,VOLUME80_ISSUE18_MONDAYNOVEMBER22_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 80, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb54960166,Object,20775-bb54960166-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/15/1981,,15-Oct-81,,10/15/1981,,20775-bb54960166-0-2.tgz,document-source,VOLUME44_ISSUE9_THURSDAYOCTOBER15_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 44, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb4437987z,Object,20775-bb4437987z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/23/1995,,23-Oct-95,,10/23/1995,,20775-bb4437987z-0-2.tgz,document-source,VOLUME86_ISSUE10_MONDAYOCTOBER23_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 86, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb8840757q,Object,20775-bb8840757q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/16/1992,,16-Jan-92,,1/16/1992,,20775-bb8840757q-0-2.tgz,document-source,VOLUME75_ISSUE4_THURSDAYJANUARY16_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 75, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb0171736w,Object,20775-bb0171736w-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,4/29/1980,,29-Apr-80,,4/29/1980,,20775-bb0171736w-0-2.tgz,document-source,VOLUME40_ISSUE22_TUESDAYAPRIL29_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb56666728,Object,20775-bb56666728-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,4/23/1987,,23-Apr-87,,4/23/1987,,20775-bb56666728-0-2.tgz,document-source,VOLUME58_ISSUE48_THURSDAYAPRIL23_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 48",, +http://library.ucsd.edu/ark:/20775/bb6588669z,Object,2014-01-30.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/30/2014,,30-Jan-14,,1/30/2014,,,,2014-01-30.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 28",,Newspaper +http://library.ucsd.edu/ark:/20775/bb0547169x,Object,20775-bb0547169x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,3/14/1985,,14-Mar-85,,3/14/1985,,20775-bb0547169x-0-2.tgz,document-source,VOLUME54_ISSUE26_THURSDAYMARCH14_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 54, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb84994631,Object,20775-bb84994631-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,10/6/1983,,6-Oct-83,,10/6/1983,,20775-bb84994631-0-2.tgz,document-source,VOLUME50_ISSUE5_THURSDAYOCTOBER6_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 50, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb44379890,Object,20775-bb44379890-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,2/18/1976,,18-Feb-76,,2/18/1976,,20775-bb44379890-0-2.tgz,document-source,VOLUME27_ISSUE19_WEDNESDAYFEBRUARY18_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb3038660r,Object,20775-bb3038660r-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,9/23/1980,,23-Sep-80,,9/23/1980,,20775-bb3038660r-0-2.tgz,document-source,VOLUME41_ISSUE3_TUESDAYSEPTEMBER23_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb0956732w,Object,20775-bb0956732w-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/6/1989,,6-Nov-89,,11/6/1989,,20775-bb0956732w-0-2.tgz,document-source,VOLUME68_ISSUE14_MONDAYNOVEMBER6_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 68, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb5222984k,Object,20775-bb5222984k-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,5/7/1971,,7-May-71,,5/7/1971,,20775-bb5222984k-0-2.tgz,document-source,VOLUME13_ISSUE12_FRIDAYMAY7_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 13, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb4369729t,Object,20775-bb4369729t-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,10/12/1979,,12-Oct-79,,10/12/1979,,20775-bb4369729t-0-2.tgz,document-source,VOLUME38_ISSUE16_FRIDAYOCTOBER12_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb1605203p,Object,20775-bb1605203p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,4/8/1985,,8-Apr-85,,4/8/1985,,20775-bb1605203p-0-2.tgz,document-source,VOLUME55_ISSUE3_MONDAYAPRIL8_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 55, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb8874891s,Object,20775-bb8874891s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,11/22/2004,,22-Nov-04,,11/22/2004,,20775-bb8874891s-0-2.tgz,document-source,VOLUME113_ISSUE17_MONDAYNOVEMBER22_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 113, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb9796891b,Object,2014-03-31.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/31/2014,,31-Mar-14,,3/31/2014,,,,2014-03-31.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Voume 47, Issue 41",,Newspaper +http://library.ucsd.edu/ark:/20775/bb6144614d,Object,20775-bb6144614d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/29/2010,,29-Apr-10,,4/29/2010,,,,04_29_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 50",, +http://library.ucsd.edu/ark:/20775/bb0888468q,Object,20775-bb0888468q-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/23/1979,,23-May-79,,5/23/1979,,20775-bb0888468q-0-2.tgz,document-source,VOLUME37_ISSUE23_WEDNESDAYMAY23_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb88407587,Object,20775-bb88407587-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/6/1978,,6-Oct-78,,10/6/1978,,20775-bb88407587-0-2.tgz,document-source,VOLUME35_ISSUE6_WEDNESDAYOCTOBER6_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 35, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb91137985,Object,20775-bb91137985-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/18/2003,,18-Feb-03,,2/18/2003,,20775-bb91137985-0-2.tgz,document-source,VOLUME108_ISSUE13_TUESDAYFEBRUARY18_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 108, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb8431199n,Object,20775-bb8431199n-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,10/9/1978,,9-Oct-78,,10/9/1978,,20775-bb8431199n-0-2.tgz,document-source,VOLUME35_ISSUE8_MONDAYOCTOBER09_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 35, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb0956733d,Object,20775-bb0956733d-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,12/3/1971,,3-Dec-71,,12/3/1971,,20775-bb0956733d-0-2.tgz,document-source,VOLUME14_ISSUE18_FRIDAYDECEMBER3_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 14, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb13664147,Object,20775-bb13664147-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/1/2010,,1-Feb-10,,2/1/2010,,,,02_01_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb8499462h,Object,20775-bb8499462h-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,10/8/1980,,8-Oct-80,,10/8/1980,,20775-bb8499462h-0-2.tgz,document-source,VOLUME41_ISSUE14_WEDNESDAYOCTOBER8_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb5257112s,Object,20775-bb5257112s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,9/23/1997,,23-Sep-97,,9/23/1997,,20775-bb5257112s-0-2.tgz,document-source,VOLUME92_ISSUE1_TUESDAYSEPTEMBER23_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 92, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb0342390v,Object,20775-bb0342390v-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,1/7/1980,,7-Jan-80,,1/7/1980,,20775-bb0342390v-0-2.tgz,document-source,VOLUME39_ISSUE1_MONDAYJANUARY7_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb4369732p,Object,20775-bb4369732p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,1/25/1988,,25-Jan-88,,1/25/1988,,20775-bb4369732p-0-2.tgz,document-source,VOLUME59_ISSUE27_MONDAYJANUARY25_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 59, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb16735847,Object,20775-bb16735847-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/13/2010,,13-May-10,,5/13/2010,,,,05_13_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 54",, +http://library.ucsd.edu/ark:/20775/bb78509895,Object,20775-bb78509895-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/25/1974,,25-Nov-74,,11/25/1974,,20775-bb78509895-0-2.tgz,document-source,VOLUME23_ISSUE28_MONDAYNOVEMBER25_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 23, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb36871314,Object,20775-bb36871314-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,3/10/1978,,10-Mar-78,,3/10/1978,,20775-bb36871314-0-2.tgz,document-source,VOLUME33_ISSUE26_FRIDAYMARCH10_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 33, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb06154265,Object,20775-bb06154265-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,10/29/1971,,29-Oct-71,,10/29/1971,,20775-bb06154265-0-2.tgz,document-source,VOLUME14_ISSUE10_FRIDAYOCTOBER29_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 14, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb3755390s,Object,20775-bb3755390s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,5/31/2001,,31-May-01,,5/31/2001,,20775-bb3755390s-0-2.tgz,document-source,VOLUME103_ISSUE18_THURSDAYMAY31_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 103, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb5598896t,Object,2014-05-08.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/8/2014,,8-May-14,,5/8/2014,,,,2014-05-08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 52",,Newspaper +http://library.ucsd.edu/ark:/20775/bb8158161p,Object,20775-bb8158161p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,9/20/1983,,20-Sep-83,,9/20/1983,,20775-bb8158161p-0-2.tgz,document-source,VOLUME50_ISSUE1_TUESDAYSEPTEMBER20_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 50, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb0342391c,Object,20775-bb0342391c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/19/1992,,19-Nov-92,,11/19/1992,,20775-bb0342391c-0-2.tgz,document-source,VOLUME77_ISSUE17_THURSDAYNOVEMBER19_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 77, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb09226005,Object,20775-bb09226005-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/23/1990,,23-Apr-90,,4/23/1990,,20775-bb09226005-0-2.tgz,document-source,VOLUME70_ISSUE7_MONDAYAPRIL23_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 70, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb25267121,Object,20775-bb25267121-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/3/2006,,3-Apr-06,,4/3/2006,,20775-bb25267121-0-2.tgz,document-source,MONDAYAPRIL3_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 118, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb5564280r,Object,20775-bb5564280r-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/27/1980,,27-Feb-80,,2/27/1980,,20775-bb5564280r-0-2.tgz,document-source,VOLUME39_ISSUE37_WEDNESDAYFEBRUARY27_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 37",, +http://library.ucsd.edu/ark:/20775/bb0137609h,Object,20775-bb0137609h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,6/2/1994,,2-Jun-94,,6/2/1994,,20775-bb0137609h-0-2.tgz,document-source,VOLUME82_ISSUE20_THURSDAYJUNE2_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 82, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb8738371c,Object,20775-bb8738371c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/11/1991,,11-Apr-91,,4/11/1991,,20775-bb8738371c-0-2.tgz,document-source,VOLUME73_ISSUE4_THURSDAYAPRIL11_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 73, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb0103485m,Object,20775-bb0103485m-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,11/6/1979,,6-Nov-79,,11/6/1979,,20775-bb0103485m-0-2.tgz,document-source,VOLUME38_ISSUE33_TUESDAYNOVEMBER6_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 33",, +http://library.ucsd.edu/ark:/20775/bb2526711h,Object,20775-bb2526711h-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,10/12/1977,,12-Oct-77,,10/12/1977,,20775-bb2526711h-0-2.tgz,document-source,VOLUME32_ISSUE9_WEDNESDAYOCTOBER12_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 32, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb51205901,Object,20775-bb51205901-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/26/1998,,26-Oct-98,,10/26/1998,,20775-bb51205901-0-2.tgz,document-source,VOLUME95_ISSUE10_MONDAYOCTOBER26_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 95, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb8567719f,Object,20775-bb8567719f-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/19/1976,,19-Apr-76,,4/19/1976,,20775-bb8567719f-0-2.tgz,document-source,VOLUME28_ISSUE10_MONDAYAPRIL19_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 28, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb6588181j,Object,20775-bb6588181j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,11/21/1996,,21-Nov-96,,11/21/1996,,20775-bb6588181j-0-2.tgz,document-source,VOLUME89_ISSUE17_THURSDAYNOVEMBER21_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 89, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb3243438j,Object,20775-bb3243438j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,6/8/1995,,8-Jun-95,,6/8/1995,,20775-bb3243438j-0-2.tgz,document-source,VOLUME85_ISSUE20_THURSDAYJUNE8_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 85, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb8738370v,Object,20775-bb8738370v-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/15/1974,,15-Nov-74,,11/15/1974,,20775-bb8738370v-0-2.tgz,document-source,VOLUME23_ISSUE24_FRIDAYNOVEMBER15_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 23, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb3550614k,Object,20775-bb3550614k-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/10/1973,,10-Apr-73,,4/10/1973,,20775-bb3550614k-0-2.tgz,document-source,VOLUME19_ISSUE3_TUESDAYAPRIL10_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 19, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb94892302,Object,20775-bb94892302-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,10/3/1972,,3-Oct-72,,10/3/1972,,20775-bb94892302-0-2.tgz,document-source,VOLUME17_ISSUE3_OCTOBER3_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 17, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb81581626,Object,20775-bb81581626-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/15/1976,,15-Nov-76,,11/15/1976,,20775-bb81581626-0-2.tgz,document-source,VOLUME29_ISSUE23_MONDAYNOVEMBER15_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 29, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb43697336,Object,20775-bb43697336-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/13/1978,,13-Oct-78,,10/13/1978,,20775-bb43697336-0-2.tgz,document-source,VOLUME35_ISSUE10_FRIDAYOCTOBER13_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 35, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb7850986m,Object,20775-bb7850986m-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,UCSD Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/12/1980,,12-May-80,,5/12/1980,,20775-bb7850986m-0-2.tgz,document-source,VOLUME40_ISSUE31_MONDAYMAY12_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 31",, +http://library.ucsd.edu/ark:/20775/bb59397072,Object,20775-bb59397072-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/1/1984,,1-Oct-84,,10/1/1984,,20775-bb59397072-0-2.tgz,document-source,VOLUME53_ISSUE5_MONDAYOCTOBER1_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 53, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb74074242,Object,20775-bb74074242-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/4/2008,,4-Feb-08,,2/4/2008,,,,02_04_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb8567718x,Object,20775-bb8567718x-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,2/6/1976,,6-Feb-76,,2/6/1976,,20775-bb8567718x-0-2.tgz,document-source,VOLUME27_ISSUE15_FRIDAYFEBRUARY6_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb1639330t,Object,20775-bb1639330t-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,UCSD Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/8/1980,,8-Jan-80,,1/8/1980,,20775-bb1639330t-0-2.tgz,document-source,VOLUME39_ISSUE2_TUESDAYJANUARY8_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb37553919,Object,20775-bb37553919-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/23/2002,,23-May-02,,5/23/2002,,20775-bb37553919-0-2.tgz,document-source,VOLUME106_ISSUE16_THURSDAYMAY23_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 106, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb52571139,Object,20775-bb52571139-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,2/22/2000,,22-Feb-00,,2/22/2000,,20775-bb52571139-0-2.tgz,document-source,VOLUME99_ISSUE13_TUESDAYFEBRUARY22_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 99, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb28338774,Object,20775-bb28338774-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/22/2002,,22-Jan-02,,1/22/2002,,20775-bb28338774-0-2.tgz,document-source,VOLUME105_ISSUE5_TUESDAYJANUARY22_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 105, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb5939706j,Object,20775-bb5939706j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/29/2004,,29-Apr-04,,4/29/2004,,20775-bb5939706j-0-2.tgz,document-source,VOLUME112_ISSUE10_THURSDAYAPRIL29_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 112, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb65881843,Object,20775-bb65881843-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,2/27/2003,,27-Feb-03,,2/27/2003,,20775-bb65881843-0-2.tgz,document-source,VOLUME108_ISSUE16_THURSDAYFEBRUARY27_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 108, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb7851473r,Object,2012-12-03.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,12/3/2012,,3-Dec-12,,12/3/2012,,,,2012-12-03.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 19",,Newspaper +http://library.ucsd.edu/ark:/20775/bb4711029v,Object,20775-bb4711029v-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,10/4/1984,,4-Oct-84,,10/4/1984,,20775-bb4711029v-0-2.tgz,document-source,VOLUME53_ISSUE6_THURSDAYOCTOBER4_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 53, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb55642818,Object,20775-bb55642818-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/6/1986,,6-Oct-86,,10/6/1986,,,,VOLUME58_ISSUE4_MONDAYOCTOBER6_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb30391420,Object,2012-11-05.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/5/2012,,5-Nov-12,,11/5/2012,,,,2012-11-05.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 12",,Newspaper +http://library.ucsd.edu/ark:/20775/bb9728267g,Object,20775-bb9728267g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/3/2011,,3-Feb-11,,2/3/2011,,,,02_03_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 30",, +http://library.ucsd.edu/ark:/20775/bb36871335,Object,20775-bb36871335-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/29/1996,,29-Feb-96,,2/29/1996,,20775-bb36871335-0-2.tgz,document-source,VOLUME87_ISSUE16_THURSDAYFEBRUARY29_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 87, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb06154286,Object,20775-bb06154286-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,3/5/1998,,5-Mar-98,,3/5/1998,,20775-bb06154286-0-2.tgz,document-source,VOLUME93_ISSUE18_THURSDAYMARCH5_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 93, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb5257110r,Object,20775-bb5257110r-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,Daily Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,3/16/1979,,16-Mar-79,,3/16/1979,,20775-bb5257110r-0-2.tgz,document-source,VOLUME36_ISSUE29_FRIDAYMARCH16_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 36, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb4949943w,Object,20775-bb4949943w-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,1/27/1975,,27-Jan-75,,1/27/1975,,20775-bb4949943w-0-2.tgz,document-source,VOLUME24_ISSUE10_MONDAYJANUARY27_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 24, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb5427886x,Object,20775-bb5427886x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/30/2008,,30-Oct-08,,10/30/2008,,,,10_30_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb0342392w,Object,20775-bb0342392w-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,4/27/1971,,27-Apr-71,,4/27/1971,,20775-bb0342392w-0-2.tgz,document-source,VOLUME13_ISSUE9_TUESDAYAPRIL27_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 13, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb78509874,Object,20775-bb78509874-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,3/8/2001,,8-Mar-01,,3/8/2001,,20775-bb78509874-0-2.tgz,document-source,VOLUME102_ISSUE18_THURSDAYMARCH8_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 102, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb0342393d,Object,20775-bb0342393d-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,11/20/1974,,20-Nov-74,,11/20/1974,,20775-bb0342393d-0-2.tgz,document-source,VOLUME23_ISSUE26_WEDNESDAYNOVEMBER20_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 23, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb10937390,Object,2014-03-13.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/13/2014,,13-Mar-14,,3/13/2014,,,,2014-03-13.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Voume 47, Issue 40",,Newspaper +http://library.ucsd.edu/ark:/20775/bb9728266z,Object,20775-bb9728266z-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Triton Times,Guardian,Daily Guardian,The Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,9/30/2010,9/30/2010,30-Sep-10,30-Sep-10,9/30/2010,9/30/2010,,,09_30_10.pdf,09_30_10.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 43, Issue 3","Volume 43, Issue 3", +http://library.ucsd.edu/ark:/20775/bb5871450c,Object,20775-bb5871450c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,9/24/1996,,24-Sep-96,,9/24/1996,,20775-bb5871450c-0-2.tgz,document-source,VOLUME89_ISSUE1_TUESDAYSEPTEMBER24_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 89, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb7919374z,Object,20775-bb7919374z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/7/2009,,7-May-09,,5/7/2009,,,,05_07_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb09226026,Object,20775-bb09226026-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,1/26/1976,,26-Jan-76,,1/26/1976,,20775-bb09226026-0-2.tgz,document-source,VOLUME27_ISSUE10_MONDAYJANUARY26_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb35506132,Object,20775-bb35506132-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,2/14/2005,,14-Feb-05,,2/14/2005,,20775-bb35506132-0-2.tgz,document-source,VOLUME114_ISSUE13_MONDAYFEBRUARY14_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 114, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb0103483k,Object,20775-bb0103483k-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,11/6/1970,,6-Nov-70,,11/6/1970,,20775-bb0103483k-0-2.tgz,document-source,VOLUME11_ISSUE12_FRIDAYNOVEMBER6_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 11, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb6110359s,Object,20775-bb6110359s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,11/30/1990,,30-Nov-90,,11/30/1990,,20775-bb6110359s-0-2.tgz,document-source,VOLUME71_ISSUE27_FRIDAYNOVEMBER30_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 71, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb2526713j,Object,20775-bb2526713j-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/21/1978,,21-Apr-78,,4/21/1978,,20775-bb2526713j-0-2.tgz,document-source,VOLUME34_ISSUE9_FRIDAYAPRIL21_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 34, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb8738373d,Object,20775-bb8738373d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,4/28/2003,,28-Apr-03,,4/28/2003,,20775-bb8738373d-0-2.tgz,document-source,VOLUME109_ISSUE9_MONDAYAPRIL28_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 109, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb0137607g,Object,20775-bb0137607g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,12/1/1983,,1-Dec-83,,12/1/1983,,20775-bb0137607g-0-2.tgz,document-source,VOLUME50_ISSUE20_THURSDAYDECEMBER1_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 50, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb5564282s,Object,20775-bb5564282s-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/22/1973,,22-May-73,,5/22/1973,,20775-bb5564282s-0-2.tgz,document-source,VOLUME19_ISSUE15_TUESDAYMAY22_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 19, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb1639331b,Object,20775-bb1639331b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,5/14/1984,,14-May-84,,5/14/1984,,20775-bb1639331b-0-2.tgz,document-source,VOLUME52_ISSUE13_MONDAYMAY14_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 52, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb3243436h,Object,20775-bb3243436h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/8/1999,,8-Feb-99,,2/8/1999,,20775-bb3243436h-0-2.tgz,document-source,VOLUME96_ISSUE11_MONDAYFEBRUARY8_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 96, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb8738372w,Object,20775-bb8738372w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,1/10/1983,,10-Jan-83,,1/10/1983,,20775-bb8738372w-0-2.tgz,document-source,VOLUME48_ISSUE3_MONDAYJANUARY10_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 48, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb6588183k,Object,20775-bb6588183k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/12/2004,,12-Apr-04,,4/12/2004,,20775-bb6588183k-0-2.tgz,document-source,VOLUME112_ISSUE5_MONDAYAPRIL12_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 112, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb4164949x,Object,20775-bb4164949x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/8/1993,,8-Nov-93,,11/8/1993,,20775-bb4164949x-0-2.tgz,document-source,VOLUME80_ISSUE14_MONDAYNOVEMBER8_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 80, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb3584736t,Object,20775-bb3584736t-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,10/2/1979,,2-Oct-79,,10/2/1979,,20775-bb3584736t-0-2.tgz,document-source,VOLUME38_ISSUE8_TUESDAYOCTOBER2_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb8567717d,Object,20775-bb8567717d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/7/2005,,7-Nov-05,,11/7/2005,,20775-bb8567717d-0-2.tgz,document-source,VOLUME116_ISSUE14_MONDAYNOVEMBER7_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 116, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb43697357,Object,20775-bb43697357-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,5/1/1978,,1-May-78,,5/1/1978,,20775-bb43697357-0-2.tgz,document-source,VOLUME34_ISSUE13_MONDAYMAY1_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 34, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb0922601p,Object,20775-bb0922601p-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,2/10/1975,,10-Feb-75,,2/10/1975,,20775-bb0922601p-0-2.tgz,document-source,VOLUME24_ISSUE16_MONDAYFEBRUARY10_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 24, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb3550612j,Object,20775-bb3550612j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/27/1983,,27-Jan-83,,1/27/1983,,20775-bb3550612j-0-2.tgz,document-source,VOLUME48_ISSUE8_THURSDAYJANUARY27_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 48, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb94892323,Object,20775-bb94892323-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,11/14/1979,,14-Nov-79,,11/14/1979,,20775-bb94892323-0-2.tgz,document-source,VOLUME38_ISSUE39_WEDNESDAYNOVEMBER14_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 39",, +http://library.ucsd.edu/ark:/20775/bb1639333c,Object,20775-bb1639333c-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/3/1978,,3-May-78,,5/3/1978,,20775-bb1639333c-0-2.tgz,document-source,VOLUME34_ISSUE14_WEDNESDAYMAY3_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 34, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb81581605,Object,20775-bb81581605-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,2/18/1988,,18-Feb-88,,2/18/1988,,20775-bb81581605-0-2.tgz,document-source,VOLUME59_ISSUE34_THURSDAYFEBRUARY18_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 59, Issue 34",, +http://library.ucsd.edu/ark:/20775/bb4164948d,Object,20775-bb4164948d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,3/3/1986,,3-Mar-86,,3/3/1986,,,,VOLUME57_ISSUE17_MONDAYMARCH3_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 57, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb0445266n,Object,2012-11-19.pdf,document-service,text,eng - English,UCSD Guardian,,Best of San Diego 2012,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/19/2012,,19-Nov-12,,11/19/2012,,,,2012-11-19.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 16",,Newspaper +http://library.ucsd.edu/ark:/20775/bb52571118,Object,20775-bb52571118-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,9/29/1970,,29-Sep-70,,9/29/1970,,20775-bb52571118-0-2.tgz,document-source,VOLUME11_ISSUE1_TUESDAYSEPTEMBER29_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 11, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb1639332v,Object,20775-bb1639332v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,12/28/1991,,28-Dec-91,,12/28/1991,,20775-bb1639332v-0-2.tgz,document-source,VOLUME74_ISSUE19_MONDAYDECEMBER28_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 74, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb8567716w,Object,20775-bb8567716w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,10/31/1994,,31-Oct-94,,10/31/1994,,20775-bb8567716w-0-2.tgz,document-source,VOLUME83_ISSUE12_MONDAYOCTOBER31_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 83, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb3687130m,Object,20775-bb3687130m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/29/1992,,29-Oct-92,,10/29/1992,,20775-bb3687130m-0-2.tgz,document-source,VOLUME77_ISSUE11_THURSDAYOCTOBER29_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 77, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb2833878n,Object,20775-bb2833878n-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,4/4/1977,,4-Apr-77,,4/4/1977,,20775-bb2833878n-0-2.tgz,document-source,VOLUME31_ISSUE1_MONDAYAPRIL4_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 31, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb76803380,Object,20775-bb76803380-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,10/12/1990,,12-Oct-90,,10/12/1990,,20775-bb76803380-0-2.tgz,document-source,VOLUME71_ISSUE8_FRIDAYOCTOBER12_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 71, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb4233209n,Object,20775-bb4233209n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/23/1984,,23-Apr-84,,4/23/1984,,20775-bb4233209n-0-2.tgz,document-source,VOLUME52_ISSUE7_MONDAYAPRIL23_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 52, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb32434392,Object,20775-bb32434392-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,4/14/1988,,14-Apr-88,,4/14/1988,,20775-bb32434392-0-2.tgz,document-source,VOLUME61_ISSUE4_THURSDAYAPRIL14_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 61, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb55642839,Object,20775-bb55642839-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/23/1992,,23-Apr-92,,4/23/1992,,20775-bb55642839-0-2.tgz,document-source,VOLUME76_ISSUE8_THURSDAYAPRIL23_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 76, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb28338795,Object,20775-bb28338795-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,3/6/2006,,6-Mar-06,,3/6/2006,,20775-bb28338795-0-2.tgz,document-source,MONDAYMARCH6_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 117, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb3618997g,Object,20775-bb3618997g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/27/2010,,27-Sep-10,,9/27/2010,,,,09_27_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb4369734q,Object,20775-bb4369734q-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/12/1972,,12-May-72,,5/12/1972,,20775-bb4369734q-0-2.tgz,document-source,VOLUME16_ISSUE16_FRIDAYMAY12_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 16, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb0718308c,Object,2014-12-14.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,12/11/2014,,11-Dec-14,,12/11/2014,,,,2014-12-14.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 20",,Newspaper +http://library.ucsd.edu/ark:/20775/bb9489231k,Object,20775-bb9489231k-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,10/1/1990,,1-Oct-90,,10/1/1990,,20775-bb9489231k-0-2.tgz,document-source,VOLUME71_ISSUE3_MONDAYOCTOBER1_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 71, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb01376080,Object,20775-bb01376080-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/25/2000,,25-May-00,,5/25/2000,,20775-bb01376080-0-2.tgz,document-source,VOLUME100_ISSUE12_THURSDAYMAY25_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 100, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb01034843,Object,20775-bb01034843-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,10/28/1993,,28-Oct-93,,10/28/1993,,20775-bb01034843-0-2.tgz,document-source,VOLUME80_ISSUE11_THURSDAYOCTOBER28_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 80, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb5871452d,Object,20775-bb5871452d-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,12/4/1970,,4-Dec-70,,12/4/1970,,20775-bb5871452d-0-2.tgz,document-source,VOLUME11_ISSUE20_DECEMBER4_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 11, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb7339039z,Object,20775-bb7339039z-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,1/24/1969,,24-Jan-69,,1/24/1969,,20775-bb7339039z-0-2.tgz,document-source,VOLUME6_ISSUE2_JANUARY24_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 6, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb0752077x,Object,20775-bb0752077x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/25/2010,,25-Oct-10,,10/25/2010,,,,10_25_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb0342395f,Object,20775-bb0342395f-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,3/5/1976,,5-Mar-76,,3/5/1976,,20775-bb0342395f-0-2.tgz,document-source,VOLUME27_ISSUE26_FRIDAYMARCH5_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb5120593k,Object,20775-bb5120593k-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,10/22/1979,,22-Oct-79,,10/22/1979,,20775-bb5120593k-0-2.tgz,document-source,VOLUME38_ISSUE22_MONDAYOCTOBER22_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb4949941v,Object,20775-bb4949941v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/24/2005,,24-Feb-05,,2/24/2005,,20775-bb4949941v-0-2.tgz,document-source,VOLUME114_ISSUE16_THURSDAYFEBRUARY24_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 114, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb66223104,Object,20775-bb66223104-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,1/10/1985,,10-Jan-85,,1/10/1985,,20775-bb66223104-0-2.tgz,document-source,VOLUME54_ISSUE2_THURSDAYJANUARY10_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 54, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb43702187,Object,2014-01-06.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/6/2014,,6-Jan-14,,1/6/2014,,,,2014-01-06.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 21",,Newspaper +http://library.ucsd.edu/ark:/20775/bb2765624w,Object,20775-bb2765624w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,4/7/1986,,7-Apr-86,,4/7/1986,,,,VOLUME58_ISSUE3_MONDAYAPRIL7_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb3584738v,Object,20775-bb3584738v-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,10/3/1977,,3-Oct-77,,10/3/1977,,20775-bb3584738v-0-2.tgz,document-source,VOLUME32_ISSUE5_MONDAYOCTOBER3_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb51205943,Object,20775-bb51205943-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/23/1985,,23-May-85,,5/23/1985,,20775-bb51205943-0-2.tgz,document-source,VOLUME55_ISSUE16_THURSDAYMAY23_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 55, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb0342394x,Object,20775-bb0342394x-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,2/25/1976,,25-Feb-76,,2/25/1976,,20775-bb0342394x-0-2.tgz,document-source,VOLUME27_ISSUE22_WEDNESDAYFEBRUARY25_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb8738374x,Object,20775-bb8738374x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/29/1982,,29-Apr-82,,4/29/1982,,20775-bb8738374x-0-2.tgz,document-source,VOLUME46_ISSUE10_THURSDAYAPRIL29_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb8738375f,Object,20775-bb8738375f-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/1/1970,,1-May-70,,5/1/1970,,20775-bb8738375f-0-2.tgz,document-source,VOLUME10_ISSUE9_FRIDAYMAY1_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 10, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb20490167,Object,20775-bb20490167-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/8/2010,,8-Feb-10,,2/8/2010,,,,02_08_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 31",, +http://library.ucsd.edu/ark:/20775/bb2765625d,Object,20775-bb2765625d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,6/3/1985,,3-Jun-85,,6/3/1985,,20775-bb2765625d-0-2.tgz,document-source,VOLUME55_ISSUE19_MONDAYJUNE3_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 55, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb5564284t,Object,20775-bb5564284t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/2/1988,,2-May-88,,5/2/1988,,20775-bb5564284t-0-2.tgz,document-source,VOLUME64_ISSUE9_MONDAYMAY2_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 64, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb24925778,Object,20775-bb24925778-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,10/17/1979,,17-Oct-79,,10/17/1979,,20775-bb24925778-0-2.tgz,document-source,VOLUME38_ISSUE19_WEDNESDAYOCTOBER17_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb0103481j,Object,20775-bb0103481j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/19/1994,,19-May-94,,5/19/1994,,20775-bb0103481j-0-2.tgz,document-source,VOLUME82_ISSUE16_THURSDAYMAY19_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 82, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb5871451w,Object,20775-bb5871451w-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,5/14/1971,,14-May-71,,5/14/1971,,20775-bb5871451w-0-2.tgz,document-source,VOLUME13_ISSUE14_FRIDAYMAY14_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 13, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb4949942c,Object,20775-bb4949942c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/27/1998,,27-Apr-98,,4/27/1998,,20775-bb4949942c-0-2.tgz,document-source,VOLUME94_ISSUE9_MONDAYAPRIL27_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 94, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb7236777d,Object,20775-bb7236777d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/26/2009,,26-Oct-09,,10/26/2009,,,,10_26_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb94210931,Object,20775-bb94210931-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/11/2010,,11-Mar-10,,3/11/2010,,,,03_11_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 40",, +http://library.ucsd.edu/ark:/20775/bb3687132n,Object,20775-bb3687132n-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,3/5/1975,,5-Mar-75,,3/5/1975,,20775-bb3687132n-0-2.tgz,document-source,VOLUME24_ISSUE25_WEDNESDAYMARCH5_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 24, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb1673585r,Object,20775-bb1673585r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/3/2011,,3-Oct-11,,10/3/2011,,,,10_03_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb0615427p,Object,20775-bb0615427p-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,11/4/1977,,4-Nov-77,,11/4/1977,,20775-bb0615427p-0-2.tgz,document-source,VOLUME32_ISSUE19_FRIDAYNOVEMBER4_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb1639334w,Object,20775-bb1639334w-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,10/10/1975,,10-Oct-75,,10/10/1975,,20775-bb1639334w-0-2.tgz,document-source,VOLUME26_ISSUE9_FRIDAYOCTOBER10_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb62127477,Object,20775-bb62127477-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,10/3/1975,,3-Oct-75,,10/3/1975,,20775-bb62127477-0-2.tgz,document-source,VOLUME26_ISSUE6_FRIDAYOCTOBER3_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 26, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb3584737b,Object,20775-bb3584737b-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,1/24/1980,,24-Jan-80,,1/24/1980,,20775-bb3584737b-0-2.tgz,document-source,VOLUME39_ISSUE14_THURSDAYJANUARY24_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb99670508,Object,20775-bb99670508-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,1/28/1972,1/28/1972,28-Jan-72,28-Jan-72,1/28/1972,1/28/1972,20775-bb99670508-0-2.tgz,document-source,VOLUME15_ISSUE8_FRIDAYJANUARY28_1972.pdf,VOLUME15_ISSUE8_FRIDAYJANUARY28_1972.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 15, Issue 8","Volume 15, Issue 8", +http://library.ucsd.edu/ark:/20775/bb94892344,Object,20775-bb94892344-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/13/2002,,13-May-02,,5/13/2002,,20775-bb94892344-0-2.tgz,document-source,VOLUME106_ISSUE13_MONDAYMAY13_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 106, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb67246995,Object,20775-bb67246995-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,1/21/1999,,21-Jan-99,,1/21/1999,,20775-bb67246995-0-2.tgz,document-source,VOLUME96_ISSUE6_THURSDAYJANUARY21_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 96, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb9489233m,Object,20775-bb9489233m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,11/1/2001,,1-Nov-01,,11/1/2001,,20775-bb9489233m-0-2.tgz,document-source,VOLUME104_ISSUE13_THURSDAYNOVEMBER1_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 104, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb98305305,Object,20775-bb98305305-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,Daily Guardian,Guardian,The Guardian,UCSD Guardian,Daily Guardian,Guardian,The Guardian,UCSD Guardian,,,,,,,,,3/7/1969,3/7/1969,7-Mar-69,7-Mar-69,3/7/1969,3/7/1969,20775-bb98305305-0-2.tgz,document-source,VOLUME6_ISSUE8_MARCH7_1969.pdf,VOLUME6_ISSUE8_MARCH7_1969.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 6, Issue 8","Volume 6, Issue 8", +http://library.ucsd.edu/ark:/20775/bb01034822,Object,20775-bb01034822-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,4/16/1987,,16-Apr-87,,4/16/1987,,20775-bb01034822-0-2.tgz,document-source,VOLUME58_ISSUE46_THURSDAYAPRIL16_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 46",, +http://library.ucsd.edu/ark:/20775/bb32434371,Object,20775-bb32434371-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,5/6/1977,,6-May-77,,5/6/1977,,20775-bb32434371-0-2.tgz,document-source,VOLUME31_ISSUE15_FRIDAYMAY6_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 31, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb25267100,Object,20775-bb25267100-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,UCSD Guardian,Guardian,Triton Times,,,,,,,,,,,,,2/8/1980,,8-Feb-80,,2/8/1980,,20775-bb25267100-0-2.tgz,document-source,VOLUME39_ISSUE25_FRIDAYFEBRUARY8_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb5871454f,Object,20775-bb5871454f-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,3/1/1974,,1-Mar-74,,3/1/1974,,20775-bb5871454f-0-2.tgz,document-source,VOLUME21_ISSUE16_FRIDAYMARCH1_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 21, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb0342397g,Object,20775-bb0342397g-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/22/2004,,22-Jan-04,,1/22/2004,,20775-bb0342397g-0-2.tgz,document-source,VOLUME111_ISSUE6_THURSDAYJANUARY22_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 111, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb6212748r,Object,20775-bb6212748r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/18/1999,,18-Nov-99,,11/18/1999,,20775-bb6212748r-0-2.tgz,document-source,VOLUME98_ISSUE15_THURSDAYNOVEMBER18_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 98, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb8158163q,Object,20775-bb8158163q-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,11/5/1990,,5-Nov-90,,11/5/1990,,20775-bb8158163q-0-2.tgz,document-source,VOLUME71_ISSUE18_MONDAYNOVEMBER5_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 71, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb2492578s,Object,20775-bb2492578s-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,3/14/1969,,14-Mar-69,,3/14/1969,,20775-bb2492578s-0-2.tgz,document-source,VOLUME6_ISSUE9_MARCH14_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 6, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb6724698n,Object,20775-bb6724698n-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,11/22/1968,,22-Nov-68,,11/22/1968,,20775-bb6724698n-0-2.tgz,document-source,VOLUME5_ISSUE8_NOVEMBER22_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 5, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb2765626x,Object,20775-bb2765626x-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,UCSD Guardian,Triton Times,Guardian,,,,,,,,,,,,,9/25/1980,,25-Sep-80,,9/25/1980,,20775-bb2765626x-0-2.tgz,document-source,VOLUME41_ISSUE5_THURSDAYSEPTEMBER25_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb66223125,Object,20775-bb66223125-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,4/9/1974,,9-Apr-74,,4/9/1974,,20775-bb66223125-0-2.tgz,document-source,VOLUME22_ISSUE3_TUESDAYAPRIL9_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 22, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb5120591j,Object,20775-bb5120591j-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,11/13/1978,,13-Nov-78,,11/13/1978,,20775-bb5120591j-0-2.tgz,document-source,VOLUME35_ISSUE23_MONDAYNOVEMBER13_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 35, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb0171743t,Object,20775-bb0171743t-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,10/21/2002,,21-Oct-02,,10/21/2002,,20775-bb0171743t-0-2.tgz,document-source,VOLUME107_ISSUE8_MONDAYOCTOBER21_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 107, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb4369730n,Object,20775-bb4369730n-0-1.pdf,document-service,text,,The Guardian,,,,Daily Guardian,UCSD Guardian,Guardian,Triton Times,,,,,,,,,,,,,2/17/1981,,17-Feb-81,,2/17/1981,,20775-bb4369730n-0-2.tgz,document-source,VOLUME42_ISSUE13_TUESDAYFEBRUARY17_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb0342396z,Object,20775-bb0342396z-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/15/1978,,15-Nov-78,,11/15/1978,,20775-bb0342396z-0-2.tgz,document-source,VOLUME35_ISSUE24_WEDNESDAYNOVEMBER15_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 35, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb49504219,Object,2013-02-14.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/14/2013,,14-Feb-13,,2/14/2013,,,,2013-02-14.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 32",,Newspaper +http://library.ucsd.edu/ark:/20775/bb6622311n,Object,20775-bb6622311n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/14/2004,,14-Oct-04,,10/14/2004,,20775-bb6622311n-0-2.tgz,document-source,VOLUME113_ISSUE7_THURSDAYOCTOBER14_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 113, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb8738376z,Object,20775-bb8738376z-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,2/18/1969,,18-Feb-69,,2/18/1969,,20775-bb8738376z-0-2.tgz,document-source,VOLUME6_ISSUE5a_FEBRUARY18_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 6, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb70659958,Object,20775-bb70659958-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,1/31/1994,,31-Jan-94,,1/31/1994,,20775-bb70659958-0-2.tgz,document-source,VOLUME81_ISSUE9_MONDAYJANUARY31_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 81, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb51205922,Object,20775-bb51205922-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/3/1986,,3-Feb-86,,2/3/1986,,20775-bb51205922-0-2.tgz,document-source,VOLUME57_ISSUE9_MONDAYFEBRUARY3_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 57, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb5871453x,Object,20775-bb5871453x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,10/12/1992,,12-Oct-92,,10/12/1992,,20775-bb5871453x-0-2.tgz,document-source,VOLUME77_ISSUE6_MONDAYOCTOBER12_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 77, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb86361071,Object,20775-bb86361071-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/3/2008,,3-Apr-08,,4/3/2008,,,,04_03_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb4335603h,Object,20775-bb4335603h-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/4/1994,,4-Apr-94,,4/4/1994,,20775-bb4335603h-0-2.tgz,document-source,VOLUME82_ISSUE3_MONDAYAPRIL4_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 82, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb4949940b,Object,20775-bb4949940b-0-1.pdf,document-service,text,,The Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,3/9/1981,,9-Mar-81,,3/9/1981,,20775-bb4949940b-0-2.tgz,document-source,VOLUME42_ISSUE19_MONDAYMARCH9_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb24925799,Object,20775-bb24925799-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,4/15/1985,,15-Apr-85,,4/15/1985,,20775-bb24925799-0-2.tgz,document-source,VOLUME55_ISSUE5_MONDAYAPRIL15_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 55, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb8738377g,Object,20775-bb8738377g-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,5/22/2003,,22-May-03,,5/22/2003,,20775-bb8738377g-0-2.tgz,document-source,VOLUME109_ISSUE16_THURSDAYMAY22_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 109, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb4437986f,Object,20775-bb4437986f-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,1/8/1971,,8-Jan-71,,1/8/1971,,20775-bb4437986f-0-2.tgz,document-source,VOLUME12_ISSUE2_JANUARY8_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 12, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb59397093,Object,20775-bb59397093-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,10/16/1995,,16-Oct-95,,10/16/1995,,20775-bb59397093-0-2.tgz,document-source,VOLUME86_ISSUE8_MONDAYOCTOBER16_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 86, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb62127498,Object,20775-bb62127498-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,11/7/1979,,7-Nov-79,,11/7/1979,,20775-bb62127498-0-2.tgz,document-source,VOLUME38_ISSUE34_WEDNESDAYNOVEMBER7_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 34",, +http://library.ucsd.edu/ark:/20775/bb3584739c,Object,20775-bb3584739c-0-1.pdf,document-service,text,,The Guardian,,,,Guardian,Daily Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,4/6/1981,,6-Apr-81,,4/6/1981,,20775-bb3584739c-0-2.tgz,document-source,VOLUME43_ISSUE3_MONDAYAPRIL6_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb7850988n,Object,20775-bb7850988n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,4/2/1990,,2-Apr-90,,4/2/1990,,20775-bb7850988n-0-2.tgz,document-source,VOLUME70_ISSUE1_MONDAYAPRIL2_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 70, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb0615429q,Object,20775-bb0615429q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/28/1996,,28-May-96,,5/28/1996,,20775-bb0615429q-0-2.tgz,document-source,VOLUME88_ISSUE17_TUESDAYMAY28_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 88, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb1127382b,Object,20775-bb1127382b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,4/23/1998,,23-Apr-98,,4/23/1998,,20775-bb1127382b-0-2.tgz,document-source,VOLUME94_ISSUE8_THURSDAYAPRIL23_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 94, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb1127381t,Object,20775-bb1127381t-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,5/24/1999,,24-May-99,,5/24/1999,,20775-bb1127381t-0-2.tgz,document-source,VOLUME97_ISSUE17_MONDAYMAY24_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 97, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb9830531p,Object,20775-bb9830531p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,10/2/2003,,2-Oct-03,,10/2/2003,,20775-bb9830531p-0-2.tgz,document-source,VOLUME110_ISSUE3_THURSDAYOCTOBER2_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 110, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb7305034k,Object,20775-bb7305034k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/15/2009,,15-Jan-09,,1/15/2009,,,,01_15_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb43697315,Object,20775-bb43697315-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,4/15/1996,,15-Apr-96,,4/15/1996,,20775-bb43697315-0-2.tgz,document-source,VOLUME88_ISSUE5_MONDAYAPRIL15_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 88, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb9659876b,Object,20775-bb9659876b-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/20/2005,,20-Oct-05,,10/20/2005,,20775-bb9659876b-0-2.tgz,document-source,VOLUME116_ISSUE9_THURSDAYOCTOBER20_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 116, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb8772500d,Object,20775-bb8772500d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/13/1994,,13-Oct-94,,10/13/1994,,20775-bb8772500d-0-2.tgz,document-source,VOLUME83_ISSUE7_THURSDAYOCTOBER13_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 83, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb0479035k,Object,20775-bb0479035k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/8/2009,,8-Oct-09,,10/8/2009,,,,10_08_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb01034801,Object,20775-bb01034801-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,5/26/1972,,26-May-72,,5/26/1972,,20775-bb01034801-0-2.tgz,document-source,VOLUME16_ISSUE20_FRIDAYMAY26_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 16, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb29362682,Object,20775-bb29362682-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/8/1995,,8-May-95,,5/8/1995,,20775-bb29362682-0-2.tgz,document-source,VOLUME85_ISSUE11_MONDAYMAY8_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 85, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb9489235n,Object,20775-bb9489235n-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,4/24/1970,,24-Apr-70,,4/24/1970,,20775-bb9489235n-0-2.tgz,document-source,VOLUME10_ISSUE7_FRIDAYAPRIL24_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 10, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb98305326,Object,20775-bb98305326-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,12/5/2002,,5-Dec-02,,12/5/2002,,20775-bb98305326-0-2.tgz,document-source,VOLUME107_ISSUE20_THURSDAYDECEMBER5_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 107, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb5939708k,Object,20775-bb5939708k-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,4/11/1980,,11-Apr-80,,4/11/1980,,20775-bb5939708k-0-2.tgz,document-source,VOLUME40_ISSUE10_FRIDAYAPRIL11_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb9421094j,Object,20775-bb9421094j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/7/2011,,7-Feb-11,,2/7/2011,,,,02_07_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 31",, +http://library.ucsd.edu/ark:/20775/bb9659875t,Object,20775-bb9659875t-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Guardian,Daily Guardian,The Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,11/13/1995,11/13/1995,13-Nov-95,13-Nov-95,11/13/1995,11/13/1995,20775-bb9659875t-0-2.tgz,document-source,VOLUME86_ISSUE16_MONDAYNOVEMBER13_1995.pdf,VOLUME86_ISSUE16_MONDAYNOVEMBER13_1995.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 86, Issue 16","Volume 86, Issue 16", +http://library.ucsd.edu/ark:/20775/bb2936267j,Object,20775-bb2936267j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,11/2/1998,,2-Nov-98,,11/2/1998,,20775-bb2936267j-0-2.tgz,document-source,VOLUME95_ISSUE12_MONDAYNOVEMBER2_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 95, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb2765621b,Object,20775-bb2765621b-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,2/13/2006,,13-Feb-06,,2/13/2006,,20775-bb2765621b-0-2.tgz,document-source,MONDAYFEBRUARY13_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 117, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb64857956,Object,20775-bb64857956-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,2/28/1969,,28-Feb-69,,2/28/1969,,20775-bb64857956-0-2.tgz,document-source,VOLUME6_ISSUE7_FEBRUARY28_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 6, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb0683689b,Object,20775-bb0683689b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/19/2003,,19-May-03,,5/19/2003,,20775-bb0683689b-0-2.tgz,document-source,VOLUME109_ISSUE15_MONDAYMAY19_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 109, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb27314932,Object,20775-bb27314932-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,Daily Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,4/27/1979,,27-Apr-79,,4/27/1979,,20775-bb27314932-0-2.tgz,document-source,VOLUME37_ISSUE12_FRIDAYAPRIL27_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb3345832d,Object,20775-bb3345832d-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/13/1971,,13-Apr-71,,4/13/1971,,20775-bb3345832d-0-2.tgz,document-source,VOLUME13_ISSUE5_TUESDAYAPRIL13_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 13, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb9967051s,Object,20775-bb9967051s-0-1.pdf,document-service,text,,Daily Guardian,Daily Guardian,,,Triton Times,UCSD Guardian,The Guardian,Guardian,Triton Times,UCSD Guardian,The Guardian,Guardian,,,,,,,,,5/23/1980,5/23/1980,23-May-80,23-May-80,5/23/1980,5/23/1980,20775-bb9967051s-0-2.tgz,document-source,VOLUME40_ISSUE40_FRIDAYMAY23_1980.pdf,VOLUME40_ISSUE40_FRIDAYMAY23_1980.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 40, Issue 40","Volume 40, Issue 40", +http://library.ucsd.edu/ark:/20775/bb6622313p,Object,20775-bb6622313p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,1/31/2002,,31-Jan-02,,1/31/2002,,20775-bb6622313p-0-2.tgz,document-source,VOLUME105_ISSUE8_THURSDAYJANUARY31_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 105, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb3994295q,Object,20775-bb3994295q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/16/1986,,16-Oct-86,,10/16/1986,,,,VOLUME58_ISSUE7_THURSDAYOCTOBER16_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb6656565t,Object,20775-bb6656565t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/15/2008,,15-May-08,,5/15/2008,,,,05_15_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb7885118w,Object,20775-bb7885118w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/7/1993,,7-Jan-93,,1/7/1993,,20775-bb7885118w-0-2.tgz,document-source,VOLUME78_ISSUE2_THURSDAYJANUARY7_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 78, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb66223146,Object,20775-bb66223146-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,1/17/1991,,17-Jan-91,,1/17/1991,,20775-bb66223146-0-2.tgz,document-source,VOLUME72_ISSUE4_THURSDAYJANUARY17_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 72, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb6485794p,Object,20775-bb6485794p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/2/1995,,2-Oct-95,,10/2/1995,,20775-bb6485794p-0-2.tgz,document-source,VOLUME86_ISSUE4_MONDAYOCTOBER2_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 86, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb0683688t,Object,20775-bb0683688t-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/23/1972,,23-May-72,,5/23/1972,,20775-bb0683688t-0-2.tgz,document-source,VOLUME16_ISSUE19_TUESDAYMAY23_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 16, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb0513041k,Object,20775-bb0513041k-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,10/20/1994,,20-Oct-94,,10/20/1994,,20775-bb0513041k-0-2.tgz,document-source,VOLUME83_ISSUE9_THURSDAYOCTOBER20_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 83, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb7885119d,Object,20775-bb7885119d-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,4/22/1980,,22-Apr-80,,4/22/1980,,20775-bb7885119d-0-2.tgz,document-source,VOLUME40_ISSUE17_TUESDAYAPRIL22_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb2765620t,Object,20775-bb2765620t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,2/19/1985,,19-Feb-85,,2/19/1985,,20775-bb2765620t-0-2.tgz,document-source,VOLUME54_ISSUE13_TUESDAYFEBRUARY19_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 54, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb3345831w,Object,20775-bb3345831w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/7/2001,,7-May-01,,5/7/2001,,20775-bb3345831w-0-2.tgz,document-source,VOLUME103_ISSUE11_MONDAYMAY7_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 103, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb91139233,Object,20775-bb91139233-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/4/2010,,4-Feb-10,,2/4/2010,,,,02_04_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 30",, +http://library.ucsd.edu/ark:/20775/bb0308263g,Object,20775-bb0308263g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/6/1984,,6-Feb-84,,2/6/1984,,20775-bb0308263g-0-2.tgz,document-source,VOLUME51_ISSUE9_MONDAYFEBRUARY6_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 51, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb0308262z,Object,20775-bb0308262z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/16/1989,,16-Oct-89,,10/16/1989,,20775-bb0308262z-0-2.tgz,document-source,VOLUME68_ISSUE8_MONDAYOCTOBER16_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 68, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb9659877v,Object,20775-bb9659877v-0-1.pdf,document-service,text,,Daily Guardian,Daily Guardian,,,Guardian,UCSD Guardian,The Guardian,Triton Times,Guardian,UCSD Guardian,The Guardian,Triton Times,,,,,,,,,10/22/1980,10/22/1980,22-Oct-80,22-Oct-80,10/22/1980,10/22/1980,20775-bb9659877v-0-2.tgz,document-source,VOLUME41_ISSUE24_WEDNESDAYOCTOBER22_1980.pdf,VOLUME41_ISSUE24_WEDNESDAYOCTOBER22_1980.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 41, Issue 24","Volume 41, Issue 24", +http://library.ucsd.edu/ark:/20775/bb26973601,Object,20775-bb26973601-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,1/22/1990,,22-Jan-90,,1/22/1990,,20775-bb26973601-0-2.tgz,document-source,VOLUME69_ISSUE6_MONDAYJANUARY22_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 69, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb7612083n,Object,20775-bb7612083n-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,10/19/1973,,19-Oct-73,,10/19/1973,,20775-bb7612083n-0-2.tgz,document-source,VOLUME20_ISSUE8_FRIDAYOCTOBER19_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 20, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb2731492j,Object,20775-bb2731492j-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,1/30/1973,,30-Jan-73,,1/30/1973,,20775-bb2731492j-0-2.tgz,document-source,VOLUME18_ISSUE7_TUESDAYJANUARY30_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 18, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb3482346b,Object,20775-bb3482346b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/28/1990,,28-Nov-90,,11/28/1990,,20775-bb3482346b-0-2.tgz,document-source,VOLUME71_ISSUE26_WEDNESDAYNOVEMBER28_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 71, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb4267345r,Object,20775-bb4267345r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,4/13/1992,,13-Apr-92,,4/13/1992,,20775-bb4267345r-0-2.tgz,document-source,VOLUME76_ISSUE5_MONDAYAPRIL13_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 76, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb9659878c,Object,20775-bb9659878c-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,9/27/1976,9/27/1976,27-Sep-76,27-Sep-76,9/27/1976,9/27/1976,20775-bb9659878c-0-2.tgz,document-source,VOLUME29_ISSUE2_MONDAYSEPTEMBER27_1976.pdf,VOLUME29_ISSUE2_MONDAYSEPTEMBER27_1976.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 29, Issue 2","Volume 29, Issue 2", +http://library.ucsd.edu/ark:/20775/bb2629223c,Object,20775-bb2629223c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/8/2010,,8-Mar-10,,3/8/2010,,,,03_08_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 39",, +http://library.ucsd.edu/ark:/20775/bb5291235s,Object,20775-bb5291235s-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,4/14/1970,,14-Apr-70,,4/14/1970,,20775-bb5291235s-0-2.tgz,document-source,VOLUME10_ISSUE4_TUESDAYAPRIL14_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 10, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb5973846z,Object,20775-bb5973846z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,1/13/2005,,13-Jan-05,,1/13/2005,,20775-bb5973846z-0-2.tgz,document-source,VOLUME114_ISSUE4_THURSDAYJANUARY13_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 114, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb7953379k,Object,20775-bb7953379k-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/12/1975,,12-Nov-75,,11/12/1975,,20775-bb7953379k-0-2.tgz,document-source,VOLUME26_ISSUE23_WEDNESDAYNOVEMBER12_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 26, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb03082640,Object,20775-bb03082640-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/29/2001,,29-May-01,,5/29/2001,,20775-bb03082640-0-2.tgz,document-source,VOLUME103_ISSUE17_TUESDAYMAY29_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 103, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb39942967,Object,20775-bb39942967-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/24/1991,,24-Oct-91,,10/24/1991,,20775-bb39942967-0-2.tgz,document-source,VOLUME74_ISSUE9_THURSDAYOCTOBER24_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 74, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb3960295x,Object,20775-bb3960295x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/18/2010,,18-Nov-10,,11/18/2010,,,,11_18_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb8090028s,Object,20775-bb8090028s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/12/2011,,12-May-11,,5/12/2011,,,,05_12_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 54",, +http://library.ucsd.edu/ark:/20775/bb7202643n,Object,20775-bb7202643n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,12/1/2011,,1-Dec-11,,12/1/2011,,,,12_01_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb5086459q,Object,20775-bb5086459q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,6/2/2005,,2-Jun-05,,6/2/2005,,20775-bb5086459q-0-2.tgz,document-source,VOLUME115_ISSUE20_THURSDAYJUNE2_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 115, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb6383527s,Object,20775-bb6383527s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/8/2008,,8-May-08,,5/8/2008,,,,05_08_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb2765623c,Object,20775-bb2765623c-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,11/5/1975,,5-Nov-75,,11/5/1975,,20775-bb2765623c-0-2.tgz,document-source,VOLUME26_ISSUE20_WEDNESDAYNOVEMBER5_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb2936269k,Object,20775-bb2936269k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,4/4/1996,,4-Apr-96,,4/4/1996,,20775-bb2936269k-0-2.tgz,document-source,VOLUME88_ISSUE2_THURSDAYAPRIL4_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 88, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb77145942,Object,20775-bb77145942-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Triton Times,The Guardian,Daily Guardian,Daily Guardian,The Guardian,Guardian,Triton Times,Guardian,Daily Guardian,Triton Times,Triton Times,The Guardian,The Guardian,Guardian,Daily Guardian,Guardian,10/18/2008,,18-Oct-08,,10/18/2008,,,,10_18_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb27314911,Object,20775-bb27314911-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,4/8/1980,,8-Apr-80,,4/8/1980,,20775-bb27314911-0-2.tgz,document-source,VOLUME40_ISSUE7_TUESDAYAPRIL8_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb6622315q,Object,20775-bb6622315q-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,1/9/1973,,9-Jan-73,,1/9/1973,,20775-bb6622315q-0-2.tgz,document-source,VOLUME18_ISSUE1_TUESDAYJANUARY9_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 18, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb5496020k,Object,20775-bb5496020k-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,11/13/1979,,13-Nov-79,,11/13/1979,,20775-bb5496020k-0-2.tgz,document-source,VOLUME38_ISSUE38_TUESDAYNOVEMBER13_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 38",, +http://library.ucsd.edu/ark:/20775/bb3345830c,Object,20775-bb3345830c-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,Triton Times,The Guardian,UCSD Guardian,,,,,,,,,,,,,5/19/1980,,19-May-80,,5/19/1980,,20775-bb3345830c-0-2.tgz,document-source,VOLUME40_ISSUE36_MONDAYMAY19_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 36",, +http://library.ucsd.edu/ark:/20775/bb2458457t,Object,20775-bb2458457t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,2/12/2001,,12-Feb-01,,2/12/2001,,20775-bb2458457t-0-2.tgz,document-source,VOLUME102_ISSUE11_MONDAYFEBRUARY12_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 102, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb3141053z,Object,20775-bb3141053z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/26/1993,,26-Apr-93,,4/26/1993,,20775-bb3141053z-0-2.tgz,document-source,VOLUME79_ISSUE9_MONDAYAPRIL26_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 79, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb64857977,Object,20775-bb64857977-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/6/1996,,6-May-96,,5/6/1996,,20775-bb64857977-0-2.tgz,document-source,VOLUME88_ISSUE11_MONDAYMAY6_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 88, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb6827089k,Object,20775-bb6827089k-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,5/5/1975,,5-May-75,,5/5/1975,,20775-bb6827089k-0-2.tgz,document-source,VOLUME25_ISSUE16_MONDAYMAY5_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 25, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb5871938s,Object,2014-11-24.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/24/2014,,24-Nov-14,,11/24/2014,,,,2014-11-24.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 16",,Newspaper +http://library.ucsd.edu/ark:/20775/bb6485796q,Object,20775-bb6485796q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/1/1981,,1-Oct-81,,10/1/1981,,20775-bb6485796q-0-2.tgz,document-source,VOLUME44_ISSUE5_THURSDAYOCTOBER1_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 44, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb54960213,Object,20775-bb54960213-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/5/1996,,5-Feb-96,,2/5/1996,,20775-bb54960213-0-2.tgz,document-source,VOLUME87_ISSUE9_MONDAYFEBRUARY5_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 87, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb91480568,Object,20775-bb91480568-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/5/2009,,5-Nov-09,,11/5/2009,,,,11_05_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb5291238b,Object,20775-bb5291238b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/17/2003,,17-Apr-03,,4/17/2003,,20775-bb5291238b-0-2.tgz,document-source,VOLUME109_ISSUE6_THURSDAYAPRIL17_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 109, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb0308261f,Object,20775-bb0308261f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/29/1997,,29-May-97,,5/29/1997,,20775-bb0308261f-0-2.tgz,document-source,VOLUME91_ISSUE18_THURSDAYMAY29_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 91, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb20488905,Object,20775-bb20488905-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,2/26/1998,,26-Feb-98,,2/26/1998,,20775-bb20488905-0-2.tgz,document-source,VOLUME93_ISSUE16_THURSDAYFEBRUARY26_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 93, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb89772769,Object,20775-bb89772769-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,10/23/2006,,23-Oct-06,,10/23/2006,,20775-bb89772769-0-2.tgz,document-source,MONDAYOCTOBER23_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 119, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb3994297r,Object,20775-bb3994297r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,1/22/1991,,22-Jan-91,,1/22/1991,,20775-bb3994297r-0-2.tgz,document-source,VOLUME72_ISSUE5_TUESDAYJANUARY22_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 72, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb01380982,Object,2014-02-18.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/18/2014,,18-Feb-14,,2/18/2014,,,,2014-02-18.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 33",,Newspaper +http://library.ucsd.edu/ark:/20775/bb0513043m,Object,20775-bb0513043m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,4/11/1983,,11-Apr-83,,4/11/1983,,20775-bb0513043m-0-2.tgz,document-source,VOLUME49_ISSUE3_MONDAYAPRIL11_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 49, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb2765622v,Object,20775-bb2765622v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,2/3/2003,,3-Feb-03,,2/3/2003,,20775-bb2765622v-0-2.tgz,document-source,VOLUME108_ISSUE9_MONDAYFEBRUARY3_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 108, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb5973845f,Object,20775-bb5973845f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/4/1993,,4-Jan-93,,1/4/1993,,20775-bb5973845f-0-2.tgz,document-source,VOLUME78_ISSUE1_MONDAYJANUARY4_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 78, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb2731490h,Object,20775-bb2731490h-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,5/27/1980,,27-May-80,,5/27/1980,,20775-bb2731490h-0-2.tgz,document-source,VOLUME40_ISSUE41_TUESDAYMAY27_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 41",, +http://library.ucsd.edu/ark:/20775/bb2629224w,Object,20775-bb2629224w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/27/2011,,27-Oct-11,,10/27/2011,,,,10_27_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb5291237t,Object,20775-bb5291237t-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,2/21/1980,,21-Feb-80,,2/21/1980,,20775-bb5291237t-0-2.tgz,document-source,VOLUME39_ISSUE33_THURSDAYFEBRUARY21_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 33",, +http://library.ucsd.edu/ark:/20775/bb0308260x,Object,20775-bb0308260x-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,4/7/1970,,7-Apr-70,,4/7/1970,,20775-bb0308260x-0-2.tgz,document-source,VOLUME10_ISSUE2_APRIL7_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 10, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb9659879w,Object,20775-bb9659879w-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Guardian,The Guardian,Triton Times,Daily Guardian,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,11/21/1983,11/21/1983,21-Nov-83,21-Nov-83,11/21/1983,11/21/1983,20775-bb9659879w-0-2.tgz,document-source,VOLUME50_ISSUE18_MONDAYNOVEMBER21_1983.pdf,VOLUME50_ISSUE18_MONDAYNOVEMBER21_1983.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 50, Issue 18","Volume 50, Issue 18", +http://library.ucsd.edu/ark:/20775/bb4438114v,Object,20775-bb4438114v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/7/2008,,7-Feb-08,,2/7/2008,,,,02_07_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb79533782,Object,20775-bb79533782-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,4/17/1995,,17-Apr-95,,4/17/1995,,20775-bb79533782-0-2.tgz,document-source,VOLUME85_ISSUE5_MONDAYAPRIL17_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 85, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb4267347s,Object,20775-bb4267347s-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,3/12/1979,,12-Mar-79,,3/12/1979,,20775-bb4267347s-0-2.tgz,document-source,VOLUME36_ISSUE27_MONDAYMARCH12_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 36, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb39942988,Object,20775-bb39942988-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,10/3/1991,,3-Oct-91,,10/3/1991,,20775-bb39942988-0-2.tgz,document-source,VOLUME74_ISSUE3_THURSDAYOCTOBER3_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 74, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb8431685b,Object,2013-12-05.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,12/2/2013,,5-Dec-13,,12/2/2013,,,,2013-12-05.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 20",,Newspaper +http://library.ucsd.edu/ark:/20775/bb8226423h,Object,20775-bb8226423h-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,6/1/1973,,1-Jun-73,,6/1/1973,,20775-bb8226423h-0-2.tgz,document-source,VOLUME19_ISSUE18_FRIDAYJUNE1_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 19, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb5564406w,Object,20775-bb5564406w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/17/2011,,17-Feb-11,,2/17/2011,,,,02_17_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 34",, +http://library.ucsd.edu/ark:/20775/bb99670529,Object,20775-bb99670529-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Daily Guardian,Guardian,The Guardian,Triton Times,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,4/21/1994,4/21/1994,21-Apr-94,21-Apr-94,4/21/1994,4/21/1994,20775-bb99670529-0-2.tgz,document-source,VOLUME82_ISSUE8_THURSDAYAPRIL21_1994.pdf,VOLUME82_ISSUE8_THURSDAYAPRIL21_1994.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 82, Issue 8","Volume 82, Issue 8", +http://library.ucsd.edu/ark:/20775/bb5973844x,Object,20775-bb5973844x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/9/2006,,9-Feb-06,,2/9/2006,,20775-bb5973844x-0-2.tgz,document-source,THURSDAYFEBRUARY9_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 117, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb7953377j,Object,20775-bb7953377j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/22/2000,,22-May-00,,5/22/2000,,20775-bb7953377j-0-2.tgz,document-source,VOLUME100_ISSUE15_MONDAYMAY22_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 100, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb93527073,Object,20775-bb93527073-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/21/1982,,21-Jan-82,,1/21/1982,,20775-bb93527073-0-2.tgz,document-source,VOLUME45_ISSUE6_THURSDAYJANUARY21_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb42332084,Object,20775-bb42332084-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,1/16/1973,,16-Jan-73,,1/16/1973,,20775-bb42332084-0-2.tgz,document-source,VOLUME18_ISSUE3_TUESDAYJANUARY16_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 18, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb64857914,Object,20775-bb64857914-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,2/15/1974,,15-Feb-74,,2/15/1974,,20775-bb64857914-0-2.tgz,document-source,VOLUME21_ISSUE12_FRIDAYFEBRUARY15_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 21, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb2697842b,Object,2011-10-24.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/24/2011,,24-Oct-11,,10/24/2011,,,,2011-10-24.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 1",,Newspaper +http://library.ucsd.edu/ark:/20775/bb5496022m,Object,20775-bb5496022m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,6/3/2002,,3-Jun-02,,6/3/2002,,20775-bb5496022m-0-2.tgz,document-source,VOLUME106_ISSUE19_MONDAYJUNE3_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 106, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb76120803,Object,20775-bb76120803-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,4/25/1983,,25-Apr-83,,4/25/1983,,20775-bb76120803-0-2.tgz,document-source,VOLUME49_ISSUE7_MONDAYAPRIL25_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 49, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb6110357r,Object,20775-bb6110357r-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,3/5/1971,,5-Mar-71,,3/5/1971,,20775-bb6110357r-0-2.tgz,document-source,VOLUME12_ISSUE18_FRIDAYMARCH5_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 12, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb09226047,Object,20775-bb09226047-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,12/2/2004,,2-Dec-04,,12/2/2004,,20775-bb09226047-0-2.tgz,document-source,VOLUME113_ISSUE19_THURSDAYDECEMBER2_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 113, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb4062558x,Object,20775-bb4062558x-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,1/11/1974,,11-Jan-74,,1/11/1974,,20775-bb4062558x-0-2.tgz,document-source,VOLUME21_ISSUE2_FRIDAYJANUARY11_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 21, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb89774059,Object,20775-bb89774059-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/29/2008,,29-May-08,,5/29/2008,,,,05_29_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb07860834,Object,20775-bb07860834-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,1/28/1977,,28-Jan-77,,1/28/1977,,20775-bb07860834-0-2.tgz,document-source,VOLUME30_ISSUE9_FRIDAYJANUARY28_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 30, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb61103588,Object,20775-bb61103588-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,1/4/1982,,4-Jan-82,,1/4/1982,,20775-bb61103588-0-2.tgz,document-source,VOLUME45_ISSUE1_MONDAYJANUARY4_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb35506111,Object,20775-bb35506111-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/25/1985,,25-Feb-85,,2/25/1985,,20775-bb35506111-0-2.tgz,document-source,VOLUME54_ISSUE15_MONDAYFEBRUARY25_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 54, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb08884702,Object,20775-bb08884702-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,4/11/1977,,11-Apr-77,,4/11/1977,,20775-bb08884702-0-2.tgz,document-source,VOLUME31_ISSUE4_MONDAYAPRIL11_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 31, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb6485790m,Object,20775-bb6485790m-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,10/29/1976,,29-Oct-76,,10/29/1976,,20775-bb6485790m-0-2.tgz,document-source,VOLUME29_ISSUE16_FRIDAYOCTOBER29_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 29, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb3277569r,Object,20775-bb3277569r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,12/1/1986,,1-Dec-86,,12/1/1986,,,,VOLUME58_ISSUE19_MONDAYDECEMBER1_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb3482349w,Object,20775-bb3482349w-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/8/1977,,8-Apr-77,,4/8/1977,,20775-bb3482349w-0-2.tgz,document-source,VOLUME31_ISSUE3_FRIDAYAPRIL8_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 31, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb4062559f,Object,20775-bb4062559f-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,12/2/1977,,2-Dec-77,,12/2/1977,,20775-bb4062559f-0-2.tgz,document-source,VOLUME32_ISSUE30_FRIDAYDECEMBER2_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 32, Issue 30",, +http://library.ucsd.edu/ark:/20775/bb23220551,Object,20775-bb23220551-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/31/2011,,31-Mar-11,,3/31/2011,,,,03_31_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 42",, +http://library.ucsd.edu/ark:/20775/bb0786080k,Object,20775-bb0786080k-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,9/29/1986,,29-Sep-86,,9/29/1986,,,,VOLUME58_ISSUE2_MONDAYSEPTEMBER29_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb05130402,Object,20775-bb05130402-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,1/15/1998,,15-Jan-98,,1/15/1998,,20775-bb05130402-0-2.tgz,document-source,VOLUME93_ISSUE4_THURSDAYJANUARY15_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 93, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb4233207m,Object,20775-bb4233207m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/26/1981,,26-Oct-81,,10/26/1981,,20775-bb4233207m-0-2.tgz,document-source,VOLUME44_ISSUE12_MONDAYOCTOBER26_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 44, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb9113924m,Object,20775-bb9113924m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/6/2011,,6-Oct-11,,10/6/2011,,,,10_06_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb9591618f,Object,20775-bb9591618f-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/21/1997,,21-Jan-97,,1/21/1997,,20775-bb9591618f-0-2.tgz,document-source,VOLUME90_ISSUE5_TUESDAYJANUARY21_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 90, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb93185761,Object,20775-bb93185761-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,1/7/1982,,7-Jan-82,,1/7/1982,,20775-bb93185761-0-2.tgz,document-source,VOLUME45_ISSUE2_THURSDAYJANUARY7_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb5222988n,Object,20775-bb5222988n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/11/1996,,11-Nov-96,,11/11/1996,,20775-bb5222988n-0-2.tgz,document-source,VOLUME89_ISSUE14_MONDAYNOVEMBER11_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 89, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb3550610h,Object,20775-bb3550610h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/15/2002,,15-Apr-02,,4/15/2002,,20775-bb3550610h-0-2.tgz,document-source,VOLUME106_ISSUE5_MONDAYAPRIL15_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 106, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb0922603q,Object,20775-bb0922603q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/8/1997,,8-May-97,,5/8/1997,,20775-bb0922603q-0-2.tgz,document-source,VOLUME91_ISSUE12_THURSDAYMAY8_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 91, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb1708079v,Object,2014-05-22.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/22/2014,,22-May-14,,5/22/2014,,,,2014-05-22.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 56",,Newspaper +http://library.ucsd.edu/ark:/20775/bb2322054h,Object,20775-bb2322054h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/12/2010,,12-Nov-10,,11/12/2010,,,,11_12_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb39260400,Object,20775-bb39260400-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,2/2/1976,,2-Feb-76,,2/2/1976,,20775-bb39260400-0-2.tgz,document-source,VOLUME27_ISSUE13_FEBRUARY2_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb76120824,Object,20775-bb76120824-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/20/2000,,20-Nov-00,,11/20/2000,,20775-bb76120824-0-2.tgz,document-source,VOLUME101_ISSUE18_MONDAYNOVEMBER20_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 101, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb9591619z,Object,20775-bb9591619z-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,2/5/1979,,5-Feb-79,,2/5/1979,,20775-bb9591619z-0-2.tgz,document-source,VOLUME36_ISSUE13_MONDAYFEBRUARY5_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 36, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb32775687,Object,20775-bb32775687-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,4/15/1982,,15-Apr-82,,4/15/1982,,20775-bb32775687-0-2.tgz,document-source,VOLUME46_ISSUE6_THURSDAYAPRIL15_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb64857935,Object,20775-bb64857935-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/1/2004,,1-Apr-04,,4/1/2004,,20775-bb64857935-0-2.tgz,document-source,VOLUME112_ISSUE2_THURSDAYAPRIL1_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 112, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb52912369,Object,20775-bb52912369-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/22/1982,,22-Apr-82,,4/22/1982,,20775-bb52912369-0-2.tgz,document-source,VOLUME46_ISSUE8_THURSDAYAPRIL22_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb9967053t,Object,20775-bb9967053t-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,1/25/1978,1/25/1978,25-Jan-78,25-Jan-78,1/25/1978,1/25/1978,20775-bb9967053t-0-2.tgz,document-source,VOLUME33_ISSUE8_WEDNESDAYJANUARY25_1978.pdf,VOLUME33_ISSUE8_WEDNESDAYJANUARY25_1978.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 33, Issue 8","Volume 33, Issue 8", +http://library.ucsd.edu/ark:/20775/bb6110355q,Object,20775-bb6110355q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,5/1/1997,,1-May-97,,5/1/1997,,20775-bb6110355q-0-2.tgz,document-source,VOLUME91_ISSUE10_THURSDAYMAY1_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 91, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb90797972,Object,20775-bb90797972-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/18/2010,,18-Oct-10,,10/18/2010,,,,10_18_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb7680339h,Object,20775-bb7680339h-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/19/1977,,19-Jan-77,,1/19/1977,,20775-bb7680339h-0-2.tgz,document-source,VOLUME30_ISSUE5_WEDNESDAYJANUARY19_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 30, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb07860813,Object,20775-bb07860813-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,11/23/1977,,23-Nov-77,,11/23/1977,,20775-bb07860813-0-2.tgz,document-source,VOLUME32_ISSUE27_WEDNESDAY23_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb61103567,Object,20775-bb61103567-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/16/1988,,16-Feb-88,,2/16/1988,,20775-bb61103567-0-2.tgz,document-source,VOLUME59_ISSUE33_TUESDAYFEBRUARY16_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 59, Issue 33",, +http://library.ucsd.edu/ark:/20775/bb9967054b,Object,20775-bb9967054b-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,11/17/1986,,17-Nov-86,,11/17/1986,,,,VOLUME58_ISSUE16_MONDAYNOVEMBER17_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb50864586,Object,20775-bb50864586-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/29/1979,,29-Jan-79,,1/29/1979,,20775-bb50864586-0-2.tgz,document-source,VOLUME36_ISSUE10_MONDAYJANUARY29_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 36, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb3482347v,Object,20775-bb3482347v-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,10/27/1980,,27-Oct-80,,10/27/1980,,20775-bb3482347v-0-2.tgz,document-source,VOLUME41_ISSUE27_MONDAYOCTOBER27_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb6485792n,Object,20775-bb6485792n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/20/1983,,20-Jan-83,,1/20/1983,,20775-bb6485792n-0-2.tgz,document-source,VOLUME48_ISSUE6_THURSDAYJANUARY20_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb52229874,Object,20775-bb52229874-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/6/1986,,6-Jan-86,,1/6/1986,,20775-bb52229874-0-2.tgz,document-source,VOLUME57_ISSUE1_MONDAYJANUARY6_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 57, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb08884723,Object,20775-bb08884723-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/22/1981,,22-Oct-81,,10/22/1981,,20775-bb08884723-0-2.tgz,document-source,VOLUME44_ISSUE11_THURSDAYOCTOBER22_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 44, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb0888471k,Object,20775-bb0888471k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/28/1985,,28-Jan-85,,1/28/1985,,20775-bb0888471k-0-2.tgz,document-source,VOLUME54_ISSUE7_MONDAYJANUARY28_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 54, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb7612081m,Object,20775-bb7612081m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,10/7/1985,,7-Oct-85,,10/7/1985,,20775-bb7612081m-0-2.tgz,document-source,VOLUME56_ISSUE4_MONDAYOCTOBER7_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 56, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb3482348c,Object,20775-bb3482348c-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,6/13/1979,,13-Jun-79,,6/13/1979,,20775-bb3482348c-0-2.tgz,document-source,VOLUME37_ISSUE32_WEDNESDAYJUNE13_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 32",, +http://library.ucsd.edu/ark:/20775/bb05130423,Object,20775-bb05130423-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/12/1982,,12-Apr-82,,4/12/1982,,20775-bb05130423-0-2.tgz,document-source,VOLUME46_ISSUE5_MONDAYAPRIL12_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb5222986m,Object,20775-bb5222986m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/2/1990,,2-Nov-90,,11/2/1990,,20775-bb5222986m-0-2.tgz,document-source,VOLUME71_ISSUE17_FRIDAYNOVEMBER2_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 71, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb3414218n,Object,20775-bb3414218n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/5/2009,,5-Jan-09,,1/5/2009,,,,01_05_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb6861223h,Object,20775-bb6861223h-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,3/12/1992,,12-Mar-92,,3/12/1992,,20775-bb6861223h-0-2.tgz,document-source,VOLUME75_ISSUE20_THURSDAYMARCH12_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 75, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb63492659,Object,20775-bb63492659-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,4/25/1985,,25-Apr-85,,4/25/1985,,20775-bb63492659-0-2.tgz,document-source,VOLUME55_ISSUE8_THURSDAYAPRIL25_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 55, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb68958382,Object,2014-05-05.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/5/2014,,5-May-14,,5/5/2014,,,,2014-05-05.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 51",,Newspaper +http://library.ucsd.edu/ark:/20775/bb9967049f,Object,20775-bb9967049f-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Triton Times,Daily Guardian,The Guardian,Guardian,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,10/29/1987,10/29/1987,29-Oct-87,29-Oct-87,10/29/1987,10/29/1987,20775-bb9967049f-0-2.tgz,document-source,VOLUME59_ISSUE11_THURSDAYOCTOBER29_1987.pdf,VOLUME59_ISSUE11_THURSDAYOCTOBER29_1987.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 59, Issue 11","Volume 59, Issue 11", +http://library.ucsd.edu/ark:/20775/bb8704238t,Object,20775-bb8704238t-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,Triton Times,UCSD Guardian,The Guardian,,,,,,,,,,,,,4/17/1980,,17-Apr-80,,4/17/1980,,20775-bb8704238t-0-2.tgz,document-source,VOLUME40_ISSUE14_THURSDAYAPRIL17_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb2594972n,Object,20775-bb2594972n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/4/2001,,4-Oct-01,,10/4/2001,,20775-bb2594972n-0-2.tgz,document-source,VOLUME104_ISSUE5_THURSDAYOCTOBER4_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 104, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb9352708m,Object,20775-bb9352708m-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,10/2/1980,,2-Oct-80,,10/2/1980,,20775-bb9352708m-0-2.tgz,document-source,VOLUME41_ISSUE10_THURSDAYOCTOBER2_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb2117150w,Object,20775-bb2117150w-0-1.pdf,document-service,text,,The Guardian,,,,Guardian,Daily Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,3/12/1981,,12-Mar-81,,3/12/1981,,20775-bb2117150w-0-2.tgz,document-source,VOLUME42_ISSUE20_THURSDAYMARCH12_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb6861221g,Object,20775-bb6861221g-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,Daily Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,9/19/1978,,19-Sep-78,,9/19/1978,,20775-bb6861221g-0-2.tgz,document-source,VOLUME35_ISSUE1_TUESDAYSEPTEMBER19_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 35, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb9216192z,Object,20775-bb9216192z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,5/20/2004,,20-May-04,,5/20/2004,,20775-bb9216192z-0-2.tgz,document-source,VOLUME112_ISSUE16_THURSDAYMAY20_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 112, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb94893573,Object,20775-bb94893573-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/8/2009,,8-Jan-09,,1/8/2009,,,,01_08_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb6861220z,Object,20775-bb6861220z-0-1.pdf,document-service,text,,The Guardian,,,,Daily Guardian,Triton Times,UCSD Guardian,Guardian,,,,,,,,,,,,,4/27/1981,,27-Apr-81,,4/27/1981,,20775-bb6861220z-0-2.tgz,document-source,VOLUME43_ISSUE10_MONDAYAPRIL27_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb9318579k,Object,20775-bb9318579k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,4/22/1985,,22-Apr-85,,4/22/1985,,20775-bb9318579k-0-2.tgz,document-source,VOLUME55_ISSUE7_MONDAYAPRIL22_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 55, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb24584548,Object,20775-bb24584548-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,3/8/1974,,8-Mar-74,,3/8/1974,,20775-bb24584548-0-2.tgz,document-source,VOLUME21_ISSUE18_FRIDAYMARCH8_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 21, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb8704239b,Object,20775-bb8704239b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,9/28/1987,,28-Sep-87,,9/28/1987,,20775-bb8704239b-0-2.tgz,document-source,VOLUME59_ISSUE2_MONDAYSEPTEMBER28_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 59, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb51888543,Object,20775-bb51888543-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,12/2/1985,,2-Dec-85,,12/2/1985,,20775-bb51888543-0-2.tgz,document-source,VOLUME56_ISSUE19_MONDAYDECEMBER2_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 56, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb1229770s,Object,20775-bb1229770s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,4/5/1993,,5-Apr-93,,4/5/1993,,20775-bb1229770s-0-2.tgz,document-source,VOLUME79_ISSUE3_MONDAYAPRIL5_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 79, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb9386844q,Object,20775-bb9386844q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,4/24/2006,,24-Apr-06,,4/24/2006,,20775-bb9386844q-0-2.tgz,document-source,MONDAYAPRIL24_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 118, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb9830529b,Object,20775-bb9830529b-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Daily Guardian,Guardian,The Guardian,Triton Times,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,6/5/1986,6/5/1986,5-Jun-86,5-Jun-86,6/5/1986,6/5/1986,,,VOLUME58_ISSUE20_THURSDAYJUNE5_1986.pdf,VOLUME58_ISSUE20_THURSDAYJUNE5_1986.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 58, Issue 20","Volume 58, Issue 20", +http://library.ucsd.edu/ark:/20775/bb9216193g,Object,20775-bb9216193g-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,10/8/1979,,8-Oct-79,,10/8/1979,,20775-bb9216193g-0-2.tgz,document-source,VOLUME38_ISSUE12_MONDAYOCTOBER8_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb25949735,Object,20775-bb25949735-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,10/3/1979,,3-Oct-79,,10/3/1979,,20775-bb25949735-0-2.tgz,document-source,VOLUME38_ISSUE9_WEDNESDAYOCTOBER3_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb9147936x,Object,20775-bb9147936x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,1/7/1999,,7-Jan-99,,1/7/1999,,20775-bb9147936x-0-2.tgz,document-source,VOLUME96_ISSUE2_THURSDAYJANUARY7_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 96, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb9967048x,Object,20775-bb9967048x-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Triton Times,The Guardian,Daily Guardian,Guardian,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,10/9/1989,10/9/1989,9-Oct-89,9-Oct-89,10/9/1989,10/9/1989,20775-bb9967048x-0-2.tgz,document-source,VOLUME68_ISSUE6_MONDAYOCTOBER9_1989.pdf,VOLUME68_ISSUE6_MONDAYOCTOBER9_1989.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 68, Issue 6","Volume 68, Issue 6", +http://library.ucsd.edu/ark:/20775/bb1366291n,Object,20775-bb1366291n-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/23/1969,,23-May-69,,5/23/1969,,20775-bb1366291n-0-2.tgz,document-source,VOLUME7_ISSUE8_MAY23_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 7, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb0888473m,Object,20775-bb0888473m-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,1/9/1976,,9-Jan-76,,1/9/1976,,20775-bb0888473m-0-2.tgz,document-source,VOLUME27_ISSUE3_FRIDAYJANUARY9_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb83630638,Object,20775-bb83630638-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/5/2008,,5-Jun-08,,6/5/2008,,,,06_05_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb7953382f,Object,20775-bb7953382f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/1/1985,,1-Apr-85,,4/1/1985,,20775-bb7953382f-0-2.tgz,document-source,VOLUME55_ISSUE1_MONDAYAPRIL1_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 55, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb9830528t,Object,20775-bb9830528t-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Daily Guardian,The Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,1/8/1998,1/8/1998,8-Jan-98,8-Jan-98,1/8/1998,1/8/1998,20775-bb9830528t-0-2.tgz,document-source,VOLUME93_ISSUE2_THURSDAYJANUARY8_1998.pdf,VOLUME93_ISSUE2_THURSDAYJANUARY8_1998.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 93, Issue 2","Volume 93, Issue 2", +http://library.ucsd.edu/ark:/20775/bb33799576,Object,20775-bb33799576-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,6/2/1978,,2-Jun-78,,6/2/1978,,20775-bb33799576-0-2.tgz,document-source,VOLUME34_ISSUE26_FRIDAYJUNE2_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 34, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb7953381x,Object,20775-bb7953381x-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,10/30/1973,,30-Oct-73,,10/30/1973,,20775-bb7953381x-0-2.tgz,document-source,VOLUME20_ISSUE11_OCTOBER30_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 20, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb9147935d,Object,20775-bb9147935d-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,10/21/1977,,21-Oct-77,,10/21/1977,,20775-bb9147935d-0-2.tgz,document-source,VOLUME32_ISSUE13_FRIDAYOCTOBER21_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 32, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb2458451q,Object,20775-bb2458451q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/12/2004,,12-Feb-04,,2/12/2004,,20775-bb2458451q-0-2.tgz,document-source,VOLUME111_ISSUE12_THURSDAYFEBRUARY12_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 111, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb92503210,Object,20775-bb92503210-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,5/28/1975,,28-May-75,,5/28/1975,,20775-bb92503210-0-2.tgz,document-source,VOLUME25_ISSUE25_WEDNESDAYMAY28_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 25, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb42673405,Object,20775-bb42673405-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,9/23/2003,,23-Sep-03,,9/23/2003,,20775-bb42673405-0-2.tgz,document-source,VOLUME110_ISSUE1_TUESDAYSEPTEMBER23_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 110, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb13662946,Object,20775-bb13662946-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/17/2001,,17-May-01,,5/17/2001,,20775-bb13662946-0-2.tgz,document-source,VOLUME103_ISSUE14_THURSDAYMAY17_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 103, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb49500640,Object,20775-bb49500640-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/13/2011,,13-Jan-11,,1/13/2011,,,,01_13_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb3379956p,Object,20775-bb3379956p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,1/4/1990,,4-Jan-90,,1/4/1990,,20775-bb3379956p-0-2.tgz,document-source,VOLUME69_ISSUE1_THURSDAYJANUARY4_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 69, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb5188853k,Object,20775-bb5188853k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/13/1984,,13-Feb-84,,2/13/1984,,20775-bb5188853k-0-2.tgz,document-source,VOLUME51_ISSUE11_MONDAYFEBRUARY13_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 51, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb5598413m,Object,20775-bb5598413m-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/28/1975,,28-Apr-75,,4/28/1975,,20775-bb5598413m-0-2.tgz,document-source,VOLUME25_ISSUE13_MONDAYAPRIL28_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 25, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb2117151d,Object,20775-bb2117151d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/7/2005,,7-Apr-05,,4/7/2005,,20775-bb2117151d-0-2.tgz,document-source,VOLUME115_ISSUE4_THURSDAYAPRIL7_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 115, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb8738535d,Object,20775-bb8738535d-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,5/29/2012,,29-May-12,,5/29/2012,,,,2012-05-29.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 57",, +http://library.ucsd.edu/ark:/20775/bb9352706k,Object,20775-bb9352706k-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/1/1998,,1-Oct-98,,10/1/1998,,20775-bb9352706k-0-2.tgz,document-source,VOLUME95_ISSUE3_THURSDAYOCTOBER1_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 95, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb6007968m,Object,20775-bb6007968m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,4/9/2001,,9-Apr-01,,4/9/2001,,20775-bb6007968m-0-2.tgz,document-source,VOLUME103_ISSUE3_MONDAYAPRIL9_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 103, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb8704236s,Object,20775-bb8704236s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/10/2001,,10-May-01,,5/10/2001,,20775-bb8704236s-0-2.tgz,document-source,VOLUME103_ISSUE12_THURSDAYMAY10_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 103, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb9967047d,Object,20775-bb9967047d-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,10/25/1974,10/25/1974,25-Oct-74,25-Oct-74,10/25/1974,10/25/1974,20775-bb9967047d-0-2.tgz,document-source,VOLUME23_ISSUE15_FRIDAYOCTOBER25_1974.pdf,VOLUME23_ISSUE15_FRIDAYOCTOBER25_1974.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 23, Issue 15","Volume 23, Issue 15", +http://library.ucsd.edu/ark:/20775/bb20488879,Object,20775-bb20488879-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/5/1995,,5-Oct-95,,10/5/1995,,20775-bb20488879-0-2.tgz,document-source,VOLUME86_ISSUE5_THURSDAYOCTOBER5_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 86, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb1229773b,Object,20775-bb1229773b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,11/12/1998,,12-Nov-98,,11/12/1998,,20775-bb1229773b-0-2.tgz,document-source,VOLUME95_ISSUE15_THURSDAYNOVEMBER12_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 95, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb2594970m,Object,20775-bb2594970m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/11/2001,,11-Jan-01,,1/11/2001,,20775-bb2594970m-0-2.tgz,document-source,VOLUME102_ISSUE2_THURSDAYJANUARY11_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 102, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb65204040,Object,2013-10-07.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/7/2013,,7-Oct-13,,10/7/2013,,,,2013-10-07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 4",,Newspaper +http://library.ucsd.edu/ark:/20775/bb4642771g,Object,20775-bb4642771g-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,UCSD Guardian,Guardian,Triton Times,,,,,,,,,,,,,3/13/1980,,13-Mar-80,,3/13/1980,,20775-bb4642771g-0-2.tgz,document-source,VOLUME39_ISSUE48_THURSDAYMARCH13_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 48",, +http://library.ucsd.edu/ark:/20775/bb93185782,Object,20775-bb93185782-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/17/2004,,17-May-04,,5/17/2004,,20775-bb93185782-0-2.tgz,document-source,VOLUME112_ISSUE15_MONDAYMAY17_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 112, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb24584527,Object,20775-bb24584527-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,6/5/1978,,5-Jun-78,,6/5/1978,,20775-bb24584527-0-2.tgz,document-source,VOLUME34_ISSUE27_MONDAYJUNE5_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 34, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb1229772t,Object,20775-bb1229772t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/13/1993,,13-May-93,,5/13/1993,,20775-bb1229772t-0-2.tgz,document-source,VOLUME79_ISSUE14_THURSDAYMAY13_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 79, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb0786082m,Object,20775-bb0786082m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/27/1997,,27-Oct-97,,10/27/1997,,20775-bb0786082m-0-2.tgz,document-source,VOLUME92_ISSUE10_MONDAYOCTOBER27_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 92, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb46427720,Object,20775-bb46427720-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,3/9/1971,,9-Mar-71,,3/9/1971,,20775-bb46427720-0-2.tgz,document-source,VOLUME12_ISSUE19_TUESDAYMARCH9_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 12, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb9216190x,Object,20775-bb9216190x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,2/13/1995,,13-Feb-95,,2/13/1995,,20775-bb9216190x-0-2.tgz,document-source,VOLUME84_ISSUE11_MONDAYFEBRUARY13_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 84, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb9318577j,Object,20775-bb9318577j-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Triton Times,UCSD Guardian,Guardian,,,,,,,,,,,,,11/9/1979,,9-Nov-79,,11/9/1979,,20775-bb9318577j-0-2.tgz,document-source,VOLUME38_ISSUE36_FRIDAYNOVEMBER9_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 36",, +http://library.ucsd.edu/ark:/20775/bb9216191f,Object,20775-bb9216191f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/22/1997,,22-May-97,,5/22/1997,,20775-bb9216191f-0-2.tgz,document-source,VOLUME91_ISSUE16_THURSDAYMAY22_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 91, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb25949714,Object,20775-bb25949714-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,10/8/1990,,8-Oct-90,,10/8/1990,,20775-bb25949714-0-2.tgz,document-source,VOLUME71_ISSUE6_MONDAYOCTOBER8_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 71, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb1366293p,Object,20775-bb1366293p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/12/2003,,12-May-03,,5/12/2003,,20775-bb1366293p-0-2.tgz,document-source,VOLUME109_ISSUE13_MONDAYMAY12_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 109, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb9386846r,Object,20775-bb9386846r-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,3/1/1999,,1-Mar-99,,3/1/1999,,20775-bb9386846r-0-2.tgz,document-source,VOLUME96_ISSUE17_MONDAYMARCH1_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 96, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb9147934w,Object,20775-bb9147934w-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,10/6/1975,,6-Oct-75,,10/6/1975,,20775-bb9147934w-0-2.tgz,document-source,VOLUME26_ISSUE7_MONDAYOCTOBER6_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb4642770z,Object,20775-bb4642770z-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,1/12/1971,,12-Jan-71,,1/12/1971,,20775-bb4642770z-0-2.tgz,document-source,VOLUME12_ISSUE3_JANUARY12_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 12, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb33799597,Object,20775-bb33799597-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/10/1988,,10-Oct-88,,10/10/1988,,20775-bb33799597-0-2.tgz,document-source,VOLUME65_ISSUE6_MONDAYOCTOBER10_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 65, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb68612220,Object,20775-bb68612220-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/20/1996,,20-Feb-96,,2/20/1996,,20775-bb68612220-0-2.tgz,document-source,VOLUME87_ISSUE13_TUESDAYFEBRUARY20_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 87, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb55984123,Object,20775-bb55984123-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,9/30/1996,,30-Sep-96,,9/30/1996,,20775-bb55984123-0-2.tgz,document-source,VOLUME89_ISSUE2_MONDAYSEPTEMBER30_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 89, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb7953380d,Object,20775-bb7953380d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/23/1986,,23-Oct-86,,10/23/1986,,,,VOLUME58_ISSUE9_THURSDAYOCTOBER23_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb93527094,Object,20775-bb93527094-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,2/24/1992,,24-Feb-92,,2/24/1992,,20775-bb93527094-0-2.tgz,document-source,VOLUME75_ISSUE15_MONDAYFEBRUARY24_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 75, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb36529960,Object,20775-bb36529960-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,2/26/1990,,26-Feb-90,,2/26/1990,,20775-bb36529960-0-2.tgz,document-source,VOLUME69_ISSUE16_MONDAYFEBRUARY26_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 69, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb6213234c,Object,2013-02-07.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/7/2013,,7-Feb-13,,2/7/2013,,,,2013-02-07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 31",,Newspaper +http://library.ucsd.edu/ark:/20775/bb2560847j,Object,20775-bb2560847j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,4/15/1993,,15-Apr-93,,4/15/1993,,20775-bb2560847j-0-2.tgz,document-source,VOLUME79_ISSUE6_THURSDAYAPRIL15_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 79, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb5461890b,Object,20775-bb5461890b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,6/5/1997,,5-Jun-97,,6/5/1997,,20775-bb5461890b-0-2.tgz,document-source,VOLUME91_ISSUE20_THURSDAYJUNE5_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 91, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb7407302m,Object,20775-bb7407302m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,4/19/1984,,19-Apr-84,,4/19/1984,,20775-bb7407302m-0-2.tgz,document-source,VOLUME52_ISSUE6_THURSDAYAPRIL19_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 52, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb7270784c,Object,20775-bb7270784c-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,10/29/1979,,29-Oct-79,,10/29/1979,,20775-bb7270784c-0-2.tgz,document-source,VOLUME38_ISSUE27_MONDAYOCTOBER29_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb9147933c,Object,20775-bb9147933c-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,11/14/1980,,14-Nov-80,,11/14/1980,,20775-bb9147933c-0-2.tgz,document-source,VOLUME41_ISSUE41_FRIDAYNOVEMBER14_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 41",, +http://library.ucsd.edu/ark:/20775/bb42673426,Object,20775-bb42673426-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,2/14/1991,,14-Feb-91,,2/14/1991,,20775-bb42673426-0-2.tgz,document-source,VOLUME72_ISSUE12_THURSDAYFEBRUARY14_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 72, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb1263899w,Object,20775-bb1263899w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,11/13/2006,,13-Nov-06,,11/13/2006,,20775-bb1263899w-0-2.tgz,document-source,MONDAYNOVEMBER13_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 119, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb98987886,Object,20775-bb98987886-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,5/9/1972,5/9/1972,9-May-72,9-May-72,5/9/1972,5/9/1972,20775-bb98987886-0-2.tgz,document-source,VOLUME16_ISSUE13_TUESDAYMAY9_1972.pdf,VOLUME16_ISSUE13_TUESDAYMAY9_1972.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 16, Issue 13","Volume 16, Issue 13", +http://library.ucsd.edu/ark:/20775/bb3379958q,Object,20775-bb3379958q-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,9/23/1974,,23-Sep-74,,9/23/1974,,20775-bb3379958q-0-2.tgz,document-source,VOLUME23_ISSUE1_MONDAYSEPTEMBER23_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 23, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb5598411k,Object,20775-bb5598411k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/16/1992,,16-Apr-92,,4/16/1992,,20775-bb5598411k-0-2.tgz,document-source,VOLUME76_ISSUE6_THURSDAYAPRIL16_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 76, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb61103635,Object,20775-bb61103635-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/15/1995,,15-May-95,,5/15/1995,,20775-bb61103635-0-2.tgz,document-source,VOLUME85_ISSUE13_MONDAYMAY15_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 85, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb48475470,Object,20775-bb48475470-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,3/7/1994,,7-Mar-94,,3/7/1994,,20775-bb48475470-0-2.tgz,document-source,VOLUME81_ISSUE19_MONDAYMARCH7_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 81, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb09567270,Object,20775-bb09567270-0-1.pdf,document-service,text,,The Guardian,,,,UCSD Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,4/2/1981,,2-Apr-81,,4/2/1981,,20775-bb09567270-0-2.tgz,document-source,VOLUME43_ISSUE2_THURSDAYAPRIL2_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb4745159j,Object,20775-bb4745159j-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/30/1979,,30-Oct-79,,10/30/1979,,20775-bb4745159j-0-2.tgz,document-source,VOLUME38_ISSUE28_TUESDAYOCTOBER30_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb2117154z,Object,20775-bb2117154z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/21/1989,,21-Feb-89,,2/21/1989,,20775-bb2117154z-0-2.tgz,document-source,VOLUME66_ISSUE14_TUESDAYFEBRUARY21_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 66, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb04452701,Object,2014-05-27.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/27/2014,,27-May-14,,5/27/2014,,,,2014-05-27.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 57",,Newspaper +http://library.ucsd.edu/ark:/20775/bb1332322f,Object,20775-bb1332322f-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,5/14/2012,,14-May-12,,5/14/2012,,,,2012-05-14.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 53",, +http://library.ucsd.edu/ark:/20775/bb84994563,Object,20775-bb84994563-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/20/1997,,20-Oct-97,,10/20/1997,,20775-bb84994563-0-2.tgz,document-source,VOLUME92_ISSUE8_MONDAYOCTOBER20_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 92, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb3005018d,Object,2014-05-19.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/19/2014,,19-May-14,,5/19/2014,,,,2014-05-19.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 55",,Newspaper +http://library.ucsd.edu/ark:/20775/bb5973842w,Object,20775-bb5973842w-0-1.pdf,document-service,text,,The Guardian,,,,UCSD Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,6/1/1981,,1-Jun-81,,6/1/1981,,20775-bb5973842w-0-2.tgz,document-source,VOLUME43_ISSUE20_MONDAYJUNE1_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb8465328f,Object,20775-bb8465328f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,12/1/1988,,1-Dec-88,,12/1/1988,,20775-bb8465328f-0-2.tgz,document-source,VOLUME65_ISSUE20_THURSDAYDECEMBER1_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 65, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb6007966k,Object,20775-bb6007966k-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,2/21/1969,,21-Feb-69,,2/21/1969,,20775-bb6007966k-0-2.tgz,document-source,VOLUME6_ISSUE6_FEBRUARY21_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 6, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb7373168c,Object,20775-bb7373168c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/8/2006,,8-May-06,,5/8/2006,,20775-bb7373168c-0-2.tgz,document-source,MONDAYMAY8_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 118, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb1366295q,Object,20775-bb1366295q-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,10/5/1979,,5-Oct-79,,10/5/1979,,20775-bb1366295q-0-2.tgz,document-source,VOLUME38_ISSUE11_FRIDAYOCTOBER5_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb4267341p,Object,20775-bb4267341p-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,11/2/1973,,2-Nov-73,,11/2/1973,,20775-bb4267341p-0-2.tgz,document-source,VOLUME20_ISSUE12_FRIDAYNOVEMBER2_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 20, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb26295823,Object,2013-10-21.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/21/2013,,21-Oct-13,,10/21/2013,,,,2013-10-21.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 8",,Newspaper +http://library.ucsd.edu/ark:/20775/bb4915937p,Object,20775-bb4915937p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/26/2010,,26-Apr-10,,4/26/2010,,,,04_26_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 49",, +http://library.ucsd.edu/ark:/20775/bb5973843d,Object,20775-bb5973843d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,6/6/1988,,6-Jun-88,,6/6/1988,,20775-bb5973843d-0-2.tgz,document-source,VOLUME64_ISSUE19_MONDAYJUNE6_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 64, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb3755389z,Object,20775-bb3755389z-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,UCSD Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/16/1979,,16-Oct-79,,10/16/1979,,20775-bb3755389z-0-2.tgz,document-source,VOLUME38_ISSUE18_TUESDAYOCTOBER16_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb46091249,Object,2013-04-22.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/22/2013,,22-Apr-13,,4/22/2013,,,,2013-04-22.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 47",,Newspaper +http://library.ucsd.edu/ark:/20775/bb4847546g,Object,20775-bb4847546g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,5/7/1990,,7-May-90,,5/7/1990,,20775-bb4847546g-0-2.tgz,document-source,VOLUME70_ISSUE11_MONDAYMAY7_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 70, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb51888501,Object,20775-bb51888501-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,2/15/1996,,15-Feb-96,,2/15/1996,,20775-bb51888501-0-2.tgz,document-source,VOLUME87_ISSUE12_THURSDAYFEBRUARY15_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 87, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb6110362n,Object,20775-bb6110362n-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/21/1977,,21-Nov-77,,11/21/1977,,20775-bb6110362n-0-2.tgz,document-source,VOLUME32_ISSUE26_MONDAYNOVEMBER21_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb7373169w,Object,20775-bb7373169w-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,UCSD Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/16/1980,,16-Oct-80,,10/16/1980,,20775-bb7373169w-0-2.tgz,document-source,VOLUME41_ISSUE20_THURSDAYOCTOBER16_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb3994299s,Object,20775-bb3994299s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,2/17/1983,,17-Feb-83,,2/17/1983,,20775-bb3994299s-0-2.tgz,document-source,VOLUME48_ISSUE14_WEDNESDAYFEBRUARY17_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb87042379,Object,20775-bb87042379-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/20/1997,,20-Feb-97,,2/20/1997,,20775-bb87042379-0-2.tgz,document-source,VOLUME90_ISSUE14_THURSDAYFEBRUARY20_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 90, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb2560845h,Object,20775-bb2560845h-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/21/1979,,21-Feb-79,,2/21/1979,,20775-bb2560845h-0-2.tgz,document-source,VOLUME36_ISSUE19_WEDNESDAYFEBRUARY21_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 36, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb3141052f,Object,20775-bb3141052f-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,2/14/1980,,14-Feb-80,,2/14/1980,,20775-bb3141052f-0-2.tgz,document-source,VOLUME39_ISSUE29_THURSDAYFEBRUARY14_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb5461892c,Object,20775-bb5461892c-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,5/19/1972,,19-May-72,,5/19/1972,,20775-bb5461892c-0-2.tgz,document-source,VOLUME16_ISSUE18_FRIDAYMAY19_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 16, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb60079694,Object,20775-bb60079694-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/21/2003,,21-Jan-03,,1/21/2003,,20775-bb60079694-0-2.tgz,document-source,VOLUME108_ISSUE5_TUESDAYJANUARY21_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 108, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb56325412,Object,20775-bb56325412-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,11/3/1997,,3-Nov-97,,11/3/1997,,20775-bb56325412-0-2.tgz,document-source,VOLUME92_ISSUE12_MONDAYNOVEMBER3_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 92, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb55984102,Object,20775-bb55984102-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,3/10/1997,,10-Mar-97,,3/10/1997,,20775-bb55984102-0-2.tgz,document-source,VOLUME90_ISSUE19_MONDAYMARCH10_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 90, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb5461891v,Object,20775-bb5461891v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/7/2005,,7-Feb-05,,2/7/2005,,20775-bb5461891v-0-2.tgz,document-source,VOLUME114_ISSUE11_MONDAYFEBRUARY7_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 114, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb42673447,Object,20775-bb42673447-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/27/1992,,27-Feb-82,,2/27/1992,,20775-bb42673447-0-2.tgz,document-source,VOLUME74_ISSUE16_THURSDAYFEBRUARY27_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 74, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb5632540j,Object,20775-bb5632540j-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,3/11/1999,,11-Mar-99,,3/11/1999,,20775-bb5632540j-0-2.tgz,document-source,VOLUME96_ISSUE20_THURSDAYMARCH11_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 96, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb1263898c,Object,20775-bb1263898c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,6/3/1999,,3-Jun-99,,6/3/1999,,20775-bb1263898c-0-2.tgz,document-source,VOLUME97_ISSUE20_THURSDAYJUNE3_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 97, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb3141051x,Object,20775-bb3141051x-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/4/1977,,4-Mar-77,,3/4/1977,,20775-bb3141051x-0-2.tgz,document-source,VOLUME30_ISSUE23_MARCH4_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 30, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb2458455s,Object,20775-bb2458455s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,5/22/1989,,22-May-89,,5/22/1989,,20775-bb2458455s-0-2.tgz,document-source,VOLUME67_ISSUE15_MONDAYMAY22_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 67, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb1263897v,Object,20775-bb1263897v-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,2/23/1979,,23-Feb-79,,2/23/1979,,20775-bb1263897v-0-2.tgz,document-source,VOLUME36_ISSUE20_FRIDAYFEBRUARY23_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 36, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb8465329z,Object,20775-bb8465329z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/11/1988,,11-Jan-88,,1/11/1988,,20775-bb8465329z-0-2.tgz,document-source,VOLUME59_ISSUE23_MONDAYJANUARY11_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 59, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb2117152x,Object,20775-bb2117152x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/2/1985,,2-May-85,,5/2/1985,,20775-bb2117152x-0-2.tgz,document-source,VOLUME55_ISSUE10_THURSDAYMAY2_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 55, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb61103614,Object,20775-bb61103614-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,11/3/1983,,3-Nov-83,,11/3/1983,,20775-bb61103614-0-2.tgz,document-source,VOLUME50_ISSUE13_NOVEMBER03_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 50, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb0410649t,Object,20775-bb0410649t-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,4/10/1970,,10-Apr-70,,4/10/1970,,20775-bb0410649t-0-2.tgz,document-source,VOLUME10_ISSUE3_FRIDAYAPRIL10_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 10, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb09567291,Object,20775-bb09567291-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,11/19/1998,,19-Nov-98,,11/19/1998,,20775-bb09567291-0-2.tgz,document-source,VOLUME95_ISSUE17_THURSDAYNOVEMBER19_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 95, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb4745157h,Object,20775-bb4745157h-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,4/28/1976,,28-Apr-76,,4/28/1976,,20775-bb4745157h-0-2.tgz,document-source,VOLUME28_ISSUE14_WEDNESDAYAPRIL28_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 28, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb48475491,Object,20775-bb48475491-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,9/15/1973,,15-Sep-73,,9/15/1973,,20775-bb48475491-0-2.tgz,document-source,VOLUME20_ISSUE1_TUESDAYSEPTEMBER15_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 20, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb3755388f,Object,20775-bb3755388f-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,4/11/1972,,11-Apr-72,,4/11/1972,,20775-bb3755388f-0-2.tgz,document-source,VOLUME16_ISSUE5_TUESDAYAPRIL11_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 16, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb25608461,Object,20775-bb25608461-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/9/2004,,9-Feb-04,,2/9/2004,,20775-bb25608461-0-2.tgz,document-source,VOLUME111_ISSUE11_MONDAYFEBRUARY9_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 111, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb8465326d,Object,20775-bb8465326d-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/9/1975,,9-May-75,,5/9/1975,,20775-bb8465326d-0-2.tgz,document-source,VOLUME25_ISSUE18_FRIDAYMAY9_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 25, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb5973840v,Object,20775-bb5973840v-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,Triton Times,UCSD Guardian,The Guardian,,,,,,,,,,,,,5/9/1980,,9-May-80,,5/9/1980,,20775-bb5973840v-0-2.tgz,document-source,VOLUME40_ISSUE30_FRIDAYMAY9_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 30",, +http://library.ucsd.edu/ark:/20775/bb2594974p,Object,20775-bb2594974p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,2/22/1999,,22-Feb-99,,2/22/1999,,20775-bb2594974p-0-2.tgz,document-source,VOLUME96_ISSUE15_MONDAYFEBRUARY22_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 96, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb0547170r,Object,20775-bb0547170r-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/18/1979,,18-Oct-79,,10/18/1979,,20775-bb0547170r-0-2.tgz,document-source,VOLUME38_ISSUE20_THURSDAYOCTOBER18_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb8192775z,Object,2012-10-11.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/11/2012,,11-Oct-12,,10/11/2012,,,,2012-10-11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 5",,Newspaper +http://library.ucsd.edu/ark:/20775/bb4267343q,Object,20775-bb4267343q-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,11/30/1973,,30-Nov-73,,11/30/1973,,20775-bb4267343q-0-2.tgz,document-source,VOLUME20_ISSUE19_FRIDAYNOVEMBER30_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 20, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb6110360m,Object,20775-bb6110360m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/11/1993,,11-Oct-93,,10/11/1993,,20775-bb6110360m-0-2.tgz,document-source,VOLUME80_ISSUE6_MONDAYOCTOBER11_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 80, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb1742204t,Object,2012-11-08.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/8/2012,,8-Nov-12,,11/8/2012,,,,2012-11-08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 13",,Newspaper +http://library.ucsd.edu/ark:/20775/bb51888522,Object,20775-bb51888522-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,10/24/1977,,24-Oct-77,,10/24/1977,,20775-bb51888522-0-2.tgz,document-source,VOLUME32_ISSUE14_MONDAYOCTOBER24_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb24584569,Object,20775-bb24584569-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/5/1980,,5-Nov-80,,11/5/1980,,20775-bb24584569-0-2.tgz,document-source,VOLUME41_ISSUE34_WEDNESDAYNOVEMBER5_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 34",, +http://library.ucsd.edu/ark:/20775/bb26973622,Object,20775-bb26973622-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,9/20/1984,,20-Sep-84,,9/20/1984,,20775-bb26973622-0-2.tgz,document-source,VOLUME53_ISSUE2_THURSDAYSEPTEMBER20_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 53, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb0956728h,Object,20775-bb0956728h-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/28/1988,,28-Apr-88,,4/28/1988,,20775-bb0956728h-0-2.tgz,document-source,VOLUME64_ISSUE8_THURSDAYAPRIL28_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 64, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb3755387x,Object,20775-bb3755387x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/7/1992,,7-May-92,,5/7/1992,,20775-bb3755387x-0-2.tgz,document-source,VOLUME76_ISSUE12_THURSDAYMAY7_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 76, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb47451581,Object,20775-bb47451581-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,3/15/2001,,15-Mar-01,,3/15/2001,,20775-bb47451581-0-2.tgz,document-source,VOLUME102_ISSUE20_THURSDAYMARCH15_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 102, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb4847548h,Object,20775-bb4847548h-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,Daily Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,10/6/1978,,6-Oct-78,,10/6/1978,,20775-bb4847548h-0-2.tgz,document-source,VOLUME35_ISSUE7_FRIDAYOCTOBER6_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 35, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb5973841c,Object,20775-bb5973841c-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/30/1977,,30-Sep-77,,9/30/1977,,20775-bb5973841c-0-2.tgz,document-source,VOLUME32_ISSUE4_FRIDAYSEPTEMBER30_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb8806634q,Object,20775-bb8806634q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/22/1986,,22-May-86,,5/22/1986,,,,VOLUME58_ISSUE16_THURSDAYMAY22_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb7953383z,Object,20775-bb7953383z-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,5/3/1974,,3-May-74,,5/3/1974,,20775-bb7953383z-0-2.tgz,document-source,VOLUME22_ISSUE10_FRIDAYMAY3_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 22, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb3141050d,Object,20775-bb3141050d-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,2/5/1971,,5-Feb-71,,2/5/1971,,20775-bb3141050d-0-2.tgz,document-source,VOLUME12_ISSUE10_FRIDAYFEBRUARY5_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 12, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb2560843g,Object,20775-bb2560843g-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,11/6/1974,,6-Nov-74,,11/6/1974,,20775-bb2560843g-0-2.tgz,document-source,VOLUME23_ISSUE20_WEDNESDAYNOVEMBER6_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 23, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb87042358,Object,20775-bb87042358-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,1/17/1979,,17-Jan-79,,1/17/1979,,20775-bb87042358-0-2.tgz,document-source,VOLUME36_ISSUE5_WEDNESDAYJANUARY17_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 36, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb60079673,Object,20775-bb60079673-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,11/14/1996,,14-Nov-96,,11/14/1996,,20775-bb60079673-0-2.tgz,document-source,VOLUME89_ISSUE15_THURSDAYNOVEMBER14_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 89, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb6213238f,Object,2014-10-27.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/27/2014,,27-Oct-14,,10/27/2014,,,,2014-10-27.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 8",,Newspaper +http://library.ucsd.edu/ark:/20775/bb52572347,Object,20775-bb52572347-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/11/2010,,11-Jan-10,,1/11/2010,,,,01_11_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb9762393b,Object,20775-bb9762393b-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Triton Times,Guardian,Daily Guardian,The Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,10/10/2011,10/10/2011,10-Oct-11,10-Oct-11,10/10/2011,10/10/2011,,,10_10_11.pdf,10_10_11.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 45, Issue 6","Volume 45, Issue 6", +http://library.ucsd.edu/ark:/20775/bb9455100c,Object,20775-bb9455100c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/6/1995,,6-Nov-95,,11/6/1995,,20775-bb9455100c-0-2.tgz,document-source,VOLUME86_ISSUE14_MONDAYNOVEMBER6_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 86, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb5325377j,Object,20775-bb5325377j-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,UCSD Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/21/1980,,21-Oct-80,,10/21/1980,,20775-bb5325377j-0-2.tgz,document-source,VOLUME41_ISSUE23_TUESDAYOCTOBER21_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb56325433,Object,20775-bb56325433-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/5/1986,,5-May-86,,5/5/1986,,,,VOLUME58_ISSUE11_MONDAYMAY5_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb8192417r,Object,20775-bb8192417r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/20/2009,,20-Apr-09,,4/20/2009,,,,04_20_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb20152505,Object,2014-12-08.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,12/8/2014,,8-Dec-14,,12/8/2014,,,,2014-12-08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 48, Issue 19",,Newspaper +http://library.ucsd.edu/ark:/20775/bb2117153f,Object,20775-bb2117153f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/3/1996,,3-Oct-96,,10/3/1996,,20775-bb2117153f-0-2.tgz,document-source,VOLUME89_ISSUE3_THURSDAYOCTOBER3_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 89, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb2697361j,Object,20775-bb2697361j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,4/16/1990,,16-Apr-90,,4/16/1990,,20775-bb2697361j-0-2.tgz,document-source,VOLUME70_ISSUE5_MONDAYAPRIL16_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 70, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb5188851j,Object,20775-bb5188851j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,1/13/2003,,13-Jan-03,,1/13/2003,,20775-bb5188851j-0-2.tgz,document-source,VOLUME108_ISSUE3_MONDAYJANUARY13_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 108, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb5461893w,Object,20775-bb5461893w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,9/21/1992,,21-Sep-92,,9/21/1992,,20775-bb5461893w-0-2.tgz,document-source,VOLUME77_ISSUE1_MONDAYSEPTEMBER21_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 77, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb2560842z,Object,20775-bb2560842z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,3/12/1990,,12-Mar-90,,3/12/1990,,20775-bb2560842z-0-2.tgz,document-source,VOLUME69_ISSUE20_MONDAYMARCH12_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 69, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb5632542k,Object,20775-bb5632542k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/2/1991,,2-May-91,,5/2/1991,,20775-bb5632542k-0-2.tgz,document-source,VOLUME73_ISSUE10_THURSDAYMAY2_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 73, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb28338800,Object,20775-bb28338800-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,5/18/1973,,18-May-73,,5/18/1973,,20775-bb28338800-0-2.tgz,document-source,VOLUME19_ISSUE14_FRIDAYMAY18_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 19, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb42673468,Object,20775-bb42673468-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,11/23/1987,,23-Nov-87,,11/23/1987,,20775-bb42673468-0-2.tgz,document-source,VOLUME59_ISSUE18_MONDAYNOVEMBER23_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 59, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb8465327x,Object,20775-bb8465327x-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/30/1974,,30-Apr-74,,4/30/1974,,20775-bb8465327x-0-2.tgz,document-source,VOLUME22_ISSUE9_TUESDAYAPRIL30_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 22, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb2458453r,Object,20775-bb2458453r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/19/2000,,19-Oct-00,,10/19/2000,,20775-bb2458453r-0-2.tgz,document-source,VOLUME101_ISSUE7_THURSDAYOCTOBER19_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 101, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb05471718,Object,20775-bb05471718-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/20/1986,,20-Nov-86,,11/20/1986,,,,VOLUME58_ISSUE17_THURSDAYNOVEMBER20_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb5461894d,Object,20775-bb5461894d-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/11/1980,,11-Nov-80,,11/11/1980,,20775-bb5461894d-0-2.tgz,document-source,VOLUME41_ISSUE38_TUESDAYNOVEMBER11_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 38",, +http://library.ucsd.edu/ark:/20775/bb2356187r,Object,20775-bb2356187r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/10/2011,,10-Nov-11,,11/10/2011,,,,11_10_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb1332159m,Object,20775-bb1332159m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,3/10/2005,,10-Mar-05,,3/10/2005,,20775-bb1332159m-0-2.tgz,document-source,VOLUME114_ISSUE20_THURSDAYMARCH10_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 114, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb53936279,Object,20775-bb53936279-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,2/18/1977,,18-Feb-77,,2/18/1977,,20775-bb53936279-0-2.tgz,document-source,VOLUME30_ISSUE18_FRIDAYFEBRUARY18_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 30, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb8397196h,Object,20775-bb8397196h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/1/2010,,1-Jun-10,,6/1/2010,,,,06_01_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 59",, +http://library.ucsd.edu/ark:/20775/bb0547172s,Object,20775-bb0547172s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,4/5/1984,,5-Apr-84,,4/5/1984,,20775-bb0547172s-0-2.tgz,document-source,VOLUME52_ISSUE2_THURSDAYAPRIL5_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 52, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb43356020,Object,20775-bb43356020-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,2/24/2003,,24-Feb-03,,2/24/2003,,20775-bb43356020-0-2.tgz,document-source,VOLUME108_ISSUE15_MONDAYFEBRUARY24_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 108, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb74755606,Object,20775-bb74755606-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/2/2005,,2-May-05,,5/2/2005,,20775-bb74755606-0-2.tgz,document-source,VOLUME115_ISSUE11_MONDAYMAY2_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 115, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb8772983m,Object,2013-11-04.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/31/2013,,4-Nov-13,,10/31/2013,,,,2013-11-04.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 12",,Newspaper +http://library.ucsd.edu/ark:/20775/bb8772502f,Object,20775-bb8772502f-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,Daily Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,1/10/1979,,10-Jan-79,,1/10/1979,,20775-bb8772502f-0-2.tgz,document-source,VOLUME35_ISSUE32_WEDNESDAYJANUARY10_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 35, Issue 32",, +http://library.ucsd.edu/ark:/20775/bb25608440,Object,20775-bb25608440-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,11/14/1988,,14-Nov-88,,11/14/1988,,20775-bb25608440-0-2.tgz,document-source,VOLUME65_ISSUE16_MONDAYNOVEMBER14_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 65, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb78509921,Object,20775-bb78509921-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,1/14/1985,,14-Jan-85,,1/14/1985,,20775-bb78509921-0-2.tgz,document-source,VOLUME54_ISSUE3_MONDAYJANUARY14_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 54, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb2663721m,Object,2014-10-09.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/9/2014,,9-Oct-14,,10/9/2014,,,,2014-10-09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 48, Issue 3",,Newspaper +http://library.ucsd.edu/ark:/20775/bb55988917,Object,2012-10-18.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/18/2012,,18-Oct-12,,10/18/2012,,,,2012-10-18.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 7",,Newspaper +http://library.ucsd.edu/ark:/20775/bb72707809,Object,20775-bb72707809-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,6/3/1991,,3-Jun-91,,6/3/1991,,20775-bb72707809-0-2.tgz,document-source,VOLUME73_ISSUE19_MONDAYJUNE3_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 73, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb8772501x,Object,20775-bb8772501x-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,11/12/1971,,12-Nov-71,,11/12/1971,,20775-bb8772501x-0-2.tgz,document-source,VOLUME14_ISSUE13_NOVEMBER12_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 14, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb1435037r,Object,2014-02-13.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/13/2014,,13-Feb-14,,2/13/2014,,,,2014-02-13.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 32",,Newspaper +http://library.ucsd.edu/ark:/20775/bb0410647s,Object,20775-bb0410647s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,1/13/1983,,13-Jan-83,,1/13/1983,,20775-bb0410647s-0-2.tgz,document-source,VOLUME48_ISSUE4_THURSDAYJANUARY13_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb0035703p,Object,2013-10-31.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/29/2013,,31-Oct-13,,10/29/2013,,,,2013-10-31.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 11",,Newspaper +http://library.ucsd.edu/ark:/20775/bb8158156s,Object,20775-bb8158156s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/26/2004,,26-Jan-04,,1/26/2004,,20775-bb8158156s-0-2.tgz,document-source,VOLUME111_ISSUE7_MONDAYJANUARY26_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 111, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb2902265q,Object,20775-bb2902265q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,12/6/2007,,6-Dec-07,,12/6/2007,,,,12_06_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb4335601g,Object,20775-bb4335601g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/12/1993,,12-Apr-93,,4/12/1993,,20775-bb4335601g-0-2.tgz,document-source,VOLUME79_ISSUE5_MONDAYAPRIL12_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 79, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb9455101w,Object,20775-bb9455101w-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,1/4/1972,,4-Jan-72,,1/4/1972,,20775-bb9455101w-0-2.tgz,document-source,VOLUME15_ISSUE1_TUESDAYJANUARY4_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 15, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb05471739,Object,20775-bb05471739-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/27/1995,,27-Feb-95,,2/27/1995,,20775-bb05471739-0-2.tgz,document-source,VOLUME84_ISSUE15_MONDAYFEBRUARY27_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 84, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb73390419,Object,20775-bb73390419-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,3/8/1984,,8-Mar-84,,3/8/1984,,20775-bb73390419-0-2.tgz,document-source,VOLUME51_ISSUE18_THURSDAYMARCH8_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 51, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb05472989,Object,20775-bb05472989-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/24/2008,,24-Apr-08,,4/24/2008,,,,04_24_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb5393626s,Object,20775-bb5393626s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/3/1982,,3-May-82,,5/3/1982,,20775-bb5393626s-0-2.tgz,document-source,VOLUME46_ISSUE11_MONDAYMAY3_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb5632544m,Object,20775-bb5632544m-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,3/8/1968,,8-Mar-68,,3/8/1968,,20775-bb5632544m-0-2.tgz,document-source,VOLUME3_ISSUE5_MARCH8_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 3, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb2560840x,Object,20775-bb2560840x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,6/2/1997,,2-Jun-97,,6/2/1997,,20775-bb2560840x-0-2.tgz,document-source,VOLUME91_ISSUE19_MONDAYJUNE2_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 91, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb5871455z,Object,20775-bb5871455z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/1/1988,,1-Feb-88,,2/1/1988,,20775-bb5871455z-0-2.tgz,document-source,VOLUME59_ISSUE29_MONDAYFEBRUARY1_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 59, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb5461895x,Object,20775-bb5461895x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/18/1987,,18-May-87,,5/18/1987,,20775-bb5461895x-0-2.tgz,document-source,VOLUME58_ISSUE55_MONDAYMAY18_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 55",, +http://library.ucsd.edu/ark:/20775/bb3072790p,Object,20775-bb3072790p-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/28/1977,,28-Nov-77,,11/28/1977,,20775-bb3072790p-0-2.tgz,document-source,VOLUME32_ISSUE28_MONDAYNOVEMBER28_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 32, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb39260395,Object,20775-bb39260395-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/17/1997,,17-Apr-97,,4/17/1997,,20775-bb39260395-0-2.tgz,document-source,VOLUME91_ISSUE6_THURSDAYAPRIL17_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 91, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb30727916,Object,20775-bb30727916-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,3/7/1988,,7-Mar-88,,3/7/1988,,20775-bb30727916-0-2.tgz,document-source,VOLUME60_ISSUE39_MONDAYMARCH7_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 60, Issue 39",, +http://library.ucsd.edu/ark:/20775/bb46087651,Object,20775-bb46087651-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/4/2011,,4-Apr-11,,4/4/2011,,,,04_04_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 43",, +http://library.ucsd.edu/ark:/20775/bb56325454,Object,20775-bb56325454-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,3/5/1974,,5-Mar-74,,3/5/1974,,20775-bb56325454-0-2.tgz,document-source,VOLUME21_ISSUE17_TUESDAYMARCH5_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 21, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb3550609p,Object,20775-bb3550609p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/20/1999,,20-May-99,,5/20/1999,,20775-bb3550609p-0-2.tgz,document-source,VOLUME97_ISSUE16_THURSDAYMAY20_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 97, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb9455102d,Object,20775-bb9455102d-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,11/21/1991,,21-Nov-91,,11/21/1991,,20775-bb9455102d-0-2.tgz,document-source,VOLUME74_ISSUE17_THURSDAYNOVEMBER21_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 74, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb6042224x,Object,20775-bb6042224x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/20/2008,,20-Nov-08,,11/20/2008,,,,11_20_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb5871456g,Object,20775-bb5871456g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/7/1999,,7-Oct-99,,10/7/1999,,20775-bb5871456g-0-2.tgz,document-source,VOLUME98_ISSUE3_THURSDAYOCTOBER7_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 98, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb8499459n,Object,20775-bb8499459n-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,6/2/2003,,2-Jun-03,,6/2/2003,,20775-bb8499459n-0-2.tgz,document-source,VOLUME109_ISSUE19_MONDAYJUNE2_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 109, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb2560841f,Object,20775-bb2560841f-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,Triton Times,The Guardian,UCSD Guardian,,,,,,,,,,,,,5/2/1979,,2-May-79,,5/2/1979,,20775-bb2560841f-0-2.tgz,document-source,VOLUME37_ISSUE14_WEDNESDAYMAY2_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb4335600z,Object,20775-bb4335600z-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/22/1995,,22-May-95,,5/22/1995,,20775-bb4335600z-0-2.tgz,document-source,VOLUME85_ISSUE15_MONDAYMAY22_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 85, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb72371397,Object,2014-04-07.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/7/2014,,7-Apr-14,,4/7/2014,,,,2014-04-07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 43",,Newspaper +http://library.ucsd.edu/ark:/20775/bb8806632p,Object,20775-bb8806632p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,10/20/1983,,20-Oct-83,,10/20/1983,,20775-bb8806632p-0-2.tgz,document-source,VOLUME50_ISSUE9_THURSDAYOCTOBER20_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 50, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb7850991h,Object,20775-bb7850991h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,6/1/1982,,1-Jun-82,,6/1/1982,,20775-bb7850991h-0-2.tgz,document-source,VOLUME46_ISSUE19_TUESDAYJUNE1_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb60079652,Object,20775-bb60079652-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,11/30/1987,,30-Nov-87,,11/30/1987,,20775-bb60079652-0-2.tgz,document-source,VOLUME59_ISSUE19_MONDAYNOVEMBER30_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 59, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb6554050b,Object,20775-bb6554050b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/5/2000,,5-Oct-00,,10/5/2000,,20775-bb6554050b-0-2.tgz,document-source,VOLUME101_ISSUE5_THURSDAYOCTOBER5_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 101, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb0547175b,Object,20775-bb0547175b-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/4/1980,,4-Nov-80,,11/4/1980,,20775-bb0547175b-0-2.tgz,document-source,VOLUME41_ISSUE33_TUESDAYNOVEMBER4_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 33",, +http://library.ucsd.edu/ark:/20775/bb49841956,Object,20775-bb49841956-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/13/2009,,13-Apr-09,,4/13/2009,,,,04_13_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb74755627,Object,20775-bb74755627-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/30/1986,,30-Oct-86,,10/30/1986,,,,VOLUME58_ISSUE11_THURSDAYOCTOBER30_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb0547174t,Object,20775-bb0547174t-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,9/28/1979,,28-Sep-79,,9/28/1979,,20775-bb0547174t-0-2.tgz,document-source,VOLUME38_ISSUE6_FRIDAYSEPTEMBER28_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb8772504g,Object,20775-bb8772504g-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,10/1/1976,,1-Oct-76,,10/1/1976,,20775-bb8772504g-0-2.tgz,document-source,VOLUME29_ISSUE4_FRIDAYOCTOBER1_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 29, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb2629262s,Object,20775-bb2629262s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,4/2/2012,,2-Apr-12,,4/2/2012,,,,2012-04-02.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 41",, +http://library.ucsd.edu/ark:/20775/bb84994584,Object,20775-bb84994584-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,10/25/1978,,25-Oct-78,,10/25/1978,,20775-bb84994584-0-2.tgz,document-source,VOLUME35_ISSUE15_WEDNESDAYOCTOBER25_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 35, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb88066336,Object,20775-bb88066336-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,10/26/1989,,26-Oct-89,,10/26/1989,,20775-bb88066336-0-2.tgz,document-source,VOLUME68_ISSUE11_THURSDAYOCTOBER26_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 68, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb7339040s,Object,20775-bb7339040s-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,10/20/1976,,20-Oct-76,,10/20/1976,,20775-bb7339040s-0-2.tgz,document-source,VOLUME29_ISSUE12_WEDNESDAYOCTOBER20_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 29, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb8089899m,Object,20775-bb8089899m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,3/12/1998,,12-Mar-98,,3/12/1998,,20775-bb8089899m-0-2.tgz,document-source,VOLUME93_ISSUE20_THURSDAYMARCH12_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 93, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb8772503z,Object,20775-bb8772503z-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,2/8/1988,,8-Feb-88,,2/8/1988,,20775-bb8772503z-0-2.tgz,document-source,VOLUME59_ISSUE31_MONDAYFEBRUARY8_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 59, Issue 31",, +http://library.ucsd.edu/ark:/20775/bb9250324j,Object,20775-bb9250324j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/19/2001,,19-Apr-01,,4/19/2001,,20775-bb9250324j-0-2.tgz,document-source,VOLUME103_ISSUE6_THURSDAYAPRIL19_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 103, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb9455103x,Object,20775-bb9455103x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/19/1997,,19-May-97,,5/19/1997,,20775-bb9455103x-0-2.tgz,document-source,VOLUME91_ISSUE15_MONDAYMAY19_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 91, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb0069349q,Object,20775-bb0069349q-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/18/1977,,18-May-77,,5/18/1977,,20775-bb0069349q-0-2.tgz,document-source,VOLUME31_ISSUE20_WEDNESDAYMAY18_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 31, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb8635979m,Object,20775-bb8635979m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/13/1997,,13-Nov-97,,11/13/1997,,20775-bb8635979m-0-2.tgz,document-source,VOLUME92_ISSUE15_THURSDAYNOVEMBER13_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 92, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb0001089q,Object,20775-bb0001089q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/22/1999,,22-Nov-99,,11/22/1999,,20775-bb0001089q-0-2.tgz,document-source,VOLUME98_ISSUE16_MONDAYNOVEMBER22_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 98, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb93868415,Object,20775-bb93868415-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,5/24/2004,,24-May-04,,5/24/2004,,20775-bb93868415-0-2.tgz,document-source,VOLUME112_ISSUE17_MONDAYMAY24_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 112, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb47110269,Object,20775-bb47110269-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/21/2001,,21-May-01,,5/21/2001,,20775-bb47110269-0-2.tgz,document-source,VOLUME103_ISSUE15_MONDAYMAY21_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 103, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb78509900,Object,20775-bb78509900-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,9/28/1989,,28-Sep-89,,9/28/1989,,20775-bb78509900-0-2.tgz,document-source,VOLUME68_ISSUE3_THURSDAYSEPTEMBER28_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 68, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb5393628t,Object,20775-bb5393628t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,3/3/2005,,3-Mar-05,,3/3/2005,,20775-bb5393628t-0-2.tgz,document-source,VOLUME114_ISSUE18_THURSDAYMARCH3_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 114, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb3550607n,Object,20775-bb3550607n-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,2/28/1975,,28-Feb-75,,2/28/1975,,,,VOLUME24_ISSUE23_FRIDAYFEBRUARY28_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 24, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb9455104f,Object,20775-bb9455104f-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,Triton Times,The Guardian,UCSD Guardian,,,,,,,,,,,,,3/11/1980,,11-Mar-80,,3/11/1980,,20775-bb9455104f-0-2.tgz,document-source,VOLUME39_ISSUE46_TUESDAYMARCH11_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 46",, +http://library.ucsd.edu/ark:/20775/bb04106489,Object,20775-bb04106489-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/9/1992,,9-Nov-92,,11/9/1992,,20775-bb04106489-0-2.tgz,document-source,VOLUME77_ISSUE14_MONDAYNOVEMBER9_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 77, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb8806630n,Object,20775-bb8806630n-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/8/1971,,8-Oct-71,,10/8/1971,,20775-bb8806630n-0-2.tgz,document-source,VOLUME14_ISSUE4_FRIDAYOCTOBER8_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 14, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb81581579,Object,20775-bb81581579-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,2/4/1977,,4-Feb-77,,2/4/1977,,20775-bb81581579-0-2.tgz,document-source,VOLUME30_ISSUE12_FRIDAYFEBRUARY4_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 30, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb35849026,Object,20775-bb35849026-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,4/30/2012,,30-Apr-12,,4/30/2012,,,,2012-04-30.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 49",, +http://library.ucsd.edu/ark:/20775/bb8499457m,Object,20775-bb8499457m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/1/1999,,1-Apr-99,,4/1/1999,,20775-bb8499457m-0-2.tgz,document-source,VOLUME97_ISSUE2_THURSDAYAPRIL1_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 97, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb9386840n,Object,20775-bb9386840n-0-1.pdf,document-service,text,,The Guardian,,,,Guardian,UCSD Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,3/2/1981,,2-Mar-81,,3/2/1981,,20775-bb9386840n-0-2.tgz,document-source,VOLUME42_ISSUE17_MONDAYMARCH2_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb7270783v,Object,20775-bb7270783v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/24/1983,,24-Jan-83,,1/24/1983,,20775-bb7270783v-0-2.tgz,document-source,VOLUME48_ISSUE7_MONDAYJANUARY24_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 48, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb0547176v,Object,20775-bb0547176v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,4/10/2000,,10-Apr-00,,4/10/2000,,20775-bb0547176v-0-2.tgz,document-source,VOLUME100_ISSUE3_MONDAYAPRIL10_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 100, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb7339043b,Object,20775-bb7339043b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/20/2001,,20-Feb-01,,2/20/2001,,20775-bb7339043b-0-2.tgz,document-source,VOLUME102_ISSUE13_TUESDAYFEBRUARY20_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 102, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb7851478b,Object,2014-06-02.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/2/2014,,2-Jun-14,,6/2/2014,,,,2014-06-02.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 59",,Newspaper +http://library.ucsd.edu/ark:/20775/bb00010886,Object,20775-bb00010886-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,5/16/2002,,16-May-02,,5/16/2002,,20775-bb00010886-0-2.tgz,document-source,VOLUME106_ISSUE14_THURSDAYMAY16_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 106, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb74755648,Object,20775-bb74755648-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,2/2/1987,,2-Feb-87,,2/2/1987,,,,VOLUME58_ISSUE29_MONDAYFEBRUARY2_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb1878237s,Object,20775-bb1878237s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,5/1/2006,,1-May-06,,5/1/2006,,20775-bb1878237s-0-2.tgz,document-source,MONDAYMAY1_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 118, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb6554052c,Object,20775-bb6554052c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/6/2002,,6-May-02,,5/6/2002,,20775-bb6554052c-0-2.tgz,document-source,VOLUME106_ISSUE11_MONDAYMAY6_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 106, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb62127503,Object,20775-bb62127503-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,2/13/1970,,13-Feb-70,,2/13/1970,,20775-bb62127503-0-2.tgz,document-source,VOLUME9_ISSUE6_FEBRUARY13_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 9, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb0547177c,Object,20775-bb0547177c-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,UCSD Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/17/1980,,17-Oct-80,,10/17/1980,,20775-bb0547177c-0-2.tgz,document-source,VOLUME41_ISSUE21_FRIDAYOCTOBER17_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb3619361n,Object,2014-11-03.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/3/2014,,3-Nov-14,,11/3/2014,,,,2014-11-03.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 10",,Newspaper +http://library.ucsd.edu/ark:/20775/bb9250322h,Object,20775-bb9250322h-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/4/1988,,4-Apr-88,,4/4/1988,,20775-bb9250322h-0-2.tgz,document-source,VOLUME64_ISSUE1_MONDAYAPRIL4_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 64, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb7339042t,Object,20775-bb7339042t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/22/2001,,22-Oct-01,,10/22/2001,,20775-bb7339042t-0-2.tgz,document-source,VOLUME104_ISSUE10_MONDAYOCTOBER22_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 104, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb24584506,Object,20775-bb24584506-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/25/2001,,25-Jan-01,,1/25/2001,,20775-bb24584506-0-2.tgz,document-source,VOLUME102_ISSUE6_THURSDAYJANUARY25_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 102, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb3652997h,Object,20775-bb3652997h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,4/20/1987,,20-Apr-87,,4/20/1987,,20775-bb3652997h-0-2.tgz,document-source,VOLUME58_ISSUE47_MONDAYAPRIL20_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 47",, +http://library.ucsd.edu/ark:/20775/bb1434675x,Object,20775-bb1434675x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/19/2009,,19-Nov-09,,11/19/2009,,,,11_19_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb13321562,Object,20775-bb13321562-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/18/1998,,18-May-98,,5/18/1998,,20775-bb13321562-0-2.tgz,document-source,VOLUME94_ISSUE15_MONDAYMAY18_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 94, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb55301497,Object,20775-bb55301497-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,1/4/1999,,4-Jan-99,,1/4/1999,,20775-bb55301497-0-2.tgz,document-source,VOLUME96_ISSUE1_MONDAYJANUARY4_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 96, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb4881806x,Object,20775-bb4881806x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/21/2011,,21-Apr-11,,4/21/2011,,,,04_21_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 47",, +http://library.ucsd.edu/ark:/20775/bb1844111g,Object,20775-bb1844111g-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,2/13/1973,,13-Feb-73,,2/13/1973,,20775-bb1844111g-0-2.tgz,document-source,VOLUME18_ISSUE11_TUESDAYFEBRUARY13_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 18, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb98305279,Object,20775-bb98305279-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,Triton Times,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,9/25/1978,,25-Sep-78,,9/25/1978,,20775-bb98305279-0-2.tgz,document-source,VOLUME35_ISSUE2_MONDAYSEPTEMBER25_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 35, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb6554051v,Object,20775-bb6554051v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/13/1994,,13-Jan-94,,1/13/1994,,20775-bb6554051v-0-2.tgz,document-source,VOLUME81_ISSUE4_THURSDAYJANUARY13_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 81, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb88066315,Object,20775-bb88066315-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,9/30/1982,,30-Sep-82,,9/30/1982,,20775-bb88066315-0-2.tgz,document-source,VOLUME47_ISSUE3_THURSDAYSEPTEMBER30_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb7475563r,Object,20775-bb7475563r-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,11/1/1978,,1-Nov-78,,11/1/1978,,20775-bb7475563r-0-2.tgz,document-source,VOLUME35_ISSUE18_WEDNESDAYNOVEMBER1_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 35, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb1844110z,Object,20775-bb1844110z-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/12/1976,,12-Apr-76,,4/12/1976,,20775-bb1844110z-0-2.tgz,document-source,VOLUME28_ISSUE7_MONDAYAPRIL12_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 28, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb7475561q,Object,20775-bb7475561q-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,UCSD Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/15/1979,,15-Jan-79,,1/15/1979,,20775-bb7475561q-0-2.tgz,document-source,VOLUME36_ISSUE4_MONDAYJANUARY15_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 36, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb18782389,Object,20775-bb18782389-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,9/21/1993,,21-Sep-93,,9/21/1993,,20775-bb18782389-0-2.tgz,document-source,VOLUME80_ISSUE1_TUESDAYSEPTEMBER21_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 80, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb91820616,Object,20775-bb91820616-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/20/2003,,20-Nov-03,,11/20/2003,,20775-bb91820616-0-2.tgz,document-source,VOLUME110_ISSUE16_THURSDAYNOVEMBER20_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 110, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb98305258,Object,20775-bb98305258-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Triton Times,The Guardian,Guardian,Daily Guardian,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,12/2/1999,12/2/1999,2-Dec-99,2-Dec-99,12/2/1999,12/2/1999,20775-bb98305258-0-2.tgz,document-source,VOLUME98_ISSUE18_THURSDAYDECEMBER2_1999.pdf,VOLUME98_ISSUE18_THURSDAYDECEMBER2_1999.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 98, Issue 18","Volume 98, Issue 18", +http://library.ucsd.edu/ark:/20775/bb30729159,Object,20775-bb30729159-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/12/2009,,12-Jan-09,,1/12/2009,,,,01_12_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb0001087p,Object,20775-bb0001087p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/9/1986,,9-Jan-86,,1/9/1986,,20775-bb0001087p-0-2.tgz,document-source,VOLUME57_ISSUE2_THURSDAYJANUARY9_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 57, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb92503252,Object,20775-bb92503252-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/2/2006,,2-Feb-06,,2/2/2006,,20775-bb92503252-0-2.tgz,document-source,THURSDAYFEBRUARY2_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 117, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb0069347p,Object,20775-bb0069347p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,5/11/2000,,11-May-00,,5/11/2000,,20775-bb0069347p-0-2.tgz,document-source,VOLUME100_ISSUE12_THURSDAYMAY11_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 100, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb7100133r,Object,20775-bb7100133r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,11/12/1981,,12-Nov-81,,11/12/1981,,20775-bb7100133r-0-2.tgz,document-source,VOLUME44_ISSUE17_THURSDAYNOVEMBER12_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 44, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb93868436,Object,20775-bb93868436-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/26/1971,,26-Oct-71,,10/26/1971,,20775-bb93868436-0-2.tgz,document-source,VOLUME14_ISSUE9_TUESDAYOCTOBER26_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 14, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb2048886s,Object,20775-bb2048886s-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,9/16/1980,,16-Sep-80,,9/16/1980,,20775-bb2048886s-0-2.tgz,document-source,VOLUME41_ISSUE1_TUESDAYSEPTEMBER16_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb7270782b,Object,20775-bb7270782b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,12/4/2003,,4-Dec-03,,12/4/2003,,20775-bb7270782b-0-2.tgz,document-source,VOLUME110_ISSUE19_THURSDAYDECEMBER4_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 110, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb71001348,Object,20775-bb71001348-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,3/7/1975,,7-Mar-75,,3/7/1975,,20775-bb71001348-0-2.tgz,document-source,VOLUME24_ISSUE26_FRIDAYMARCH7_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 24, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb36529981,Object,20775-bb36529981-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,2/21/1985,,21-Feb-85,,2/21/1985,,20775-bb36529981-0-2.tgz,document-source,VOLUME54_ISSUE14_THURSDAYFEBRUARY21_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 54, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb13662904,Object,20775-bb13662904-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,9/24/1980,,24-Sep-80,,9/24/1980,,20775-bb13662904-0-2.tgz,document-source,VOLUME41_ISSUE4_WEDNESDAYSEPTEMBER24_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb18441120,Object,20775-bb18441120-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,10/30/1980,,30-Oct-80,,10/30/1980,,20775-bb18441120-0-2.tgz,document-source,VOLUME41_ISSUE30_THURSDAYOCTOBER30_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 30",, +http://library.ucsd.edu/ark:/20775/bb9182060p,Object,20775-bb9182060p-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/3/1978,,3-Apr-78,,4/3/1978,,20775-bb9182060p-0-2.tgz,document-source,VOLUME34_ISSUE1_MONDAYAPRIL3_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 34, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb7339045c,Object,20775-bb7339045c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,2/28/1985,,28-Feb-85,,2/28/1985,,20775-bb7339045c-0-2.tgz,document-source,VOLUME54_ISSUE16_THURSDAYFEBRUARY28_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 54, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb1878239t,Object,20775-bb1878239t-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,5/31/1978,,31-May-78,,5/31/1978,,20775-bb1878239t-0-2.tgz,document-source,VOLUME34_ISSUE25_WEDNESDAYMAY31_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 34, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb86359783,Object,20775-bb86359783-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,4/21/1972,,21-Apr-72,,4/21/1972,,20775-bb86359783-0-2.tgz,document-source,VOLUME16_ISSUE8_FRIDAYAPRIL21_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 16, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb9386842p,Object,20775-bb9386842p-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,5/30/1972,,30-May-72,,5/30/1972,,20775-bb9386842p-0-2.tgz,document-source,VOLUME16_ISSUE21_TUESDAYMAY30_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 16, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb74755669,Object,20775-bb74755669-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/20/1973,,20-Apr-73,,4/20/1973,,20775-bb74755669-0-2.tgz,document-source,VOLUME19_ISSUE6_FRIDAYAPRIL20_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 19, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb7270781t,Object,20775-bb7270781t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/30/1995,,30-May-95,,5/30/1995,,20775-bb7270781t-0-2.tgz,document-source,VOLUME85_ISSUE17_TUESDAYMAY30_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 85, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb1332157k,Object,20775-bb1332157k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/7/1993,,7-Oct-93,,10/7/1993,,20775-bb1332157k-0-2.tgz,document-source,VOLUME80_ISSUE5_THURSDAYOCTOBER7_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 80, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb2936270d,Object,20775-bb2936270d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/8/2002,,8-Apr-02,,4/8/2002,,20775-bb2936270d-0-2.tgz,document-source,VOLUME106_ISSUE3_MONDAYAPRIL8_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 106, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb62127524,Object,20775-bb62127524-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,5/19/1975,,19-May-75,,5/19/1975,,20775-bb62127524-0-2.tgz,document-source,VOLUME25_ISSUE22_MONDAYMAY19_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 25, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb00693486,Object,20775-bb00693486-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,2/14/1979,,14-Feb-79,,2/14/1979,,20775-bb00693486-0-2.tgz,document-source,VOLUME36_ISSUE17_WEDNESDAYFEBRUARY14_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 36, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb4711027t,Object,20775-bb4711027t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,4/6/1995,,6-Apr-95,,4/6/1995,,20775-bb4711027t-0-2.tgz,document-source,VOLUME85_ISSUE2_THURSDAYAPRIL6_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 85, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb8158158t,Object,20775-bb8158158t-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,Daily Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,5/16/1979,,16-May-79,,5/16/1979,,20775-bb8158158t-0-2.tgz,document-source,VOLUME37_ISSUE20_WEDNESDAYMAY16_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb13321583,Object,20775-bb13321583-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,3/5/1987,,5-Mar-87,,3/5/1987,,20775-bb13321583-0-2.tgz,document-source,VOLUME58_ISSUE38_THURSDAYMARCH5_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 38",, +http://library.ucsd.edu/ark:/20775/bb6212751m,Object,20775-bb6212751m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/15/2004,,15-Nov-04,,11/15/2004,,20775-bb6212751m-0-2.tgz,document-source,VOLUME113_ISSUE15_MONDAYNOVEMBER15_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 113, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb1844113h,Object,20775-bb1844113h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,4/30/1998,,30-Apr-98,,4/30/1998,,20775-bb1844113h-0-2.tgz,document-source,VOLUME94_ISSUE10_THURSDAYAPRIL30_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 94, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb7339044v,Object,20775-bb7339044v-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,11/3/1980,,3-Nov-80,,11/3/1980,,20775-bb7339044v-0-2.tgz,document-source,VOLUME41_ISSUE32_MONDAYNOVEMBER3_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 32",, +http://library.ucsd.edu/ark:/20775/bb3652999j,Object,20775-bb3652999j-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,2/1/1972,,1-Feb-72,,2/1/1972,,20775-bb3652999j-0-2.tgz,document-source,VOLUME15_ISSUE9_TUESDAYFEBRUARY1_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 15, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb7100131q,Object,20775-bb7100131q-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,5/16/1972,,16-May-72,,5/16/1972,,20775-bb7100131q-0-2.tgz,document-source,VOLUME16_ISSUE17_TUESDAYMAY16_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 16, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb9250320g,Object,20775-bb9250320g-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,10/24/1980,,24-Oct-80,,10/24/1980,,20775-bb9250320g-0-2.tgz,document-source,VOLUME41_ISSUE26_FRIDAYOCTOBER24_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb7475565s,Object,20775-bb7475565s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/21/1982,,21-Oct-82,,10/21/1982,,20775-bb7475565s-0-2.tgz,document-source,VOLUME47_ISSUE9_THURSDAYOCTOBER28_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb4711028b,Object,20775-bb4711028b-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/14/2001,,14-May-01,,5/14/2001,,20775-bb4711028b-0-2.tgz,document-source,VOLUME103_ISSUE13_MONDAYMAY14_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 103, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb2219665c,Object,20775-bb2219665c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/10/2008,,10-Nov-08,,11/10/2008,,,,11_10_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb5120588p,Object,20775-bb5120588p-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/21/1993,,21-Oct-93,,10/21/1993,,20775-bb5120588p-0-2.tgz,document-source,VOLUME80_ISSUE9_THURSDAYOCTOBER21_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 80, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb6554053w,Object,20775-bb6554053w-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,1/12/1973,,12-Jan-73,,1/12/1973,,20775-bb6554053w-0-2.tgz,document-source,VOLUME18_ISSUE2_FRIDAYJANUARY12_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 18, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb8158159b,Object,20775-bb8158159b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/5/1997,,5-May-97,,5/5/1997,,20775-bb8158159b-0-2.tgz,document-source,VOLUME91_ISSUE11_MONDAYMAY5_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 91, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb3072792q,Object,20775-bb3072792q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/19/2006,,19-Oct-06,,10/19/2006,,20775-bb3072792q-0-2.tgz,document-source,THURSDAYOCTOBER19_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 119, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb91820637,Object,20775-bb91820637-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,5/4/1987,,4-May-87,,5/4/1987,,20775-bb91820637-0-2.tgz,document-source,VOLUME58_ISSUE51_MONDAYMAY4_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 51",, +http://library.ucsd.edu/ark:/20775/bb7168514p,Object,20775-bb7168514p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/4/2010,,4-Jan-10,,1/4/2010,,,,01_04_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb0786562w,Object,2012-10-04.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/4/2012,,4-Oct-12,,10/4/2012,,,,2012-10-04.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 3",,Newspaper +http://library.ucsd.edu/ark:/20775/bb93868457,Object,20775-bb93868457-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/22/2006,,22-May-06,,5/22/2006,,20775-bb93868457-0-2.tgz,document-source,MONDAYMAY22_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 118, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb3516607m,Object,20775-bb3516607m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/1/2008,,1-May-08,,5/1/2008,,,,05_01_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb92503231,Object,20775-bb92503231-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,4/29/1999,,29-Apr-99,,4/29/1999,,20775-bb92503231-0-2.tgz,document-source,VOLUME97_ISSUE10_THURSDAYAPRIL29_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 97, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb71001327,Object,20775-bb71001327-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,12/2/1996,,2-Dec-96,,12/2/1996,,20775-bb71001327-0-2.tgz,document-source,VOLUME89_ISSUE19_MONDAYDECEMBER2_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 89, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb7850993j,Object,20775-bb7850993j-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,3/3/1980,,3-Mar-80,,3/3/1980,,20775-bb7850993j-0-2.tgz,document-source,VOLUME39_ISSUE40_MONDAYMARCH3_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 39, Issue 40",, +http://library.ucsd.edu/ark:/20775/bb2048888t,Object,20775-bb2048888t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,1/29/1998,,29-Jan-98,,1/29/1998,,20775-bb2048888t-0-2.tgz,document-source,VOLUME93_ISSUE8_THURSDAYJANUARY29_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 93, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb13662925,Object,20775-bb13662925-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,5/21/1984,,21-May-84,,5/21/1984,,20775-bb13662925-0-2.tgz,document-source,VOLUME52_ISSUE15_MONDAYMAY21_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 52, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb18441141,Object,20775-bb18441141-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,UCSD Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/30/1980,,30-Apr-80,,4/30/1980,,20775-bb18441141-0-2.tgz,document-source,VOLUME40_ISSUE23_WEDNESDAYAPRIL30_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb2048889b,Object,20775-bb2048889b-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,9/21/1987,,21-Sep-87,,9/21/1987,,20775-bb2048889b-0-2.tgz,document-source,VOLUME59_ISSUE1_MONDAYSEPTEMBER21_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 59, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb9830526s,Object,20775-bb9830526s-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,The Guardian,Daily Guardian,Guardian,Triton Times,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,10/12/1995,10/12/1995,12-Oct-95,12-Oct-95,10/12/1995,10/12/1995,20775-bb9830526s-0-2.tgz,document-source,VOLUME86_ISSUE7_THURSDAYOCTOBER12_1995.pdf,VOLUME86_ISSUE7_THURSDAYOCTOBER12_1995.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 86, Issue 7","Volume 86, Issue 7", +http://library.ucsd.edu/ark:/20775/bb37896453,Object,20775-bb37896453-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/17/2008,,17-Jan-08,,1/17/2008,,,,01_17_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb9182062q,Object,20775-bb9182062q-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,5/31/1974,,31-May-74,,5/31/1974,,20775-bb9182062q-0-2.tgz,document-source,VOLUME22_ISSUE18_FRIDAYMAY31_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 22, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb30727937,Object,20775-bb30727937-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,5/10/2004,,10-May-04,,5/10/2004,,20775-bb30727937-0-2.tgz,document-source,VOLUME112_ISSUE13_MONDAYMAY10_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 112, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb51205896,Object,20775-bb51205896-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,1/11/1996,,11-Jan-96,,1/11/1996,,20775-bb51205896-0-2.tgz,document-source,VOLUME87_ISSUE2_THURSDAYJANUARY11_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 87, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb2936273z,Object,20775-bb2936273z-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/19/1979,,19-Nov-79,,11/19/1979,,20775-bb2936273z-0-2.tgz,document-source,VOLUME38_ISSUE42_MONDAYNOVEMBER19_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 42",, +http://library.ucsd.edu/ark:/20775/bb3857776w,Object,20775-bb3857776w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/14/1993,,14-Jan-93,,1/14/1993,,20775-bb3857776w-0-2.tgz,document-source,VOLUME78_ISSUE4_THURSDAYJANUARY14_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 78, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb0410650n,Object,20775-bb0410650n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,10/19/1998,,19-Oct-98,,10/19/1998,,20775-bb0410650n-0-2.tgz,document-source,VOLUME95_ISSUE8_MONDAYOCTOBER19_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 95, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb06836926,Object,20775-bb06836926-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,3/11/1977,,11-Mar-77,,3/11/1977,,20775-bb06836926-0-2.tgz,document-source,VOLUME30_ISSUE26_FRIDAYMARCH11_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 30, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb5700798c,Object,20775-bb5700798c-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,1/16/1980,,16-Jan-80,,1/16/1980,,20775-bb5700798c-0-2.tgz,document-source,VOLUME39_ISSUE8_WEDNESDAYJANUARY16_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb3857777d,Object,20775-bb3857777d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/29/2001,,29-Oct-01,,10/29/2001,,20775-bb3857777d-0-2.tgz,document-source,VOLUME104_ISSUE12_MONDAYOCTOBER29_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 104, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb5291242q,Object,20775-bb5291242q-0-1.pdf,document-service,text,,The Guardian,,,,UCSD Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/4/1981,,4-May-81,,5/4/1981,,20775-bb5291242q-0-2.tgz,document-source,VOLUME43_ISSUE12_MONDAYMAY4_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb7441427n,Object,20775-bb7441427n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,6/1/1989,,1-Jun-89,,6/1/1989,,20775-bb7441427n-0-2.tgz,document-source,VOLUME67_ISSUE18_THURSDAYJUNE1_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 67, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb1707595k,Object,20775-bb1707595k-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/23/1978,,23-Oct-78,,10/23/1978,,20775-bb1707595k-0-2.tgz,document-source,VOLUME35_ISSUE14_MONDAYOCTOBER23_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 35, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb91484164,Object,2012-11-26.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/26/2012,,26-Nov-12,,11/26/2012,,,,2012-11-26.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 17",,Newspaper +http://library.ucsd.edu/ark:/20775/bb5700797v,Object,20775-bb5700797v-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,Triton Times,UCSD Guardian,The Guardian,,,,,,,,,,,,,6/5/1979,,5-Jun-79,,6/5/1979,,20775-bb5700797v-0-2.tgz,document-source,VOLUME37_ISSUE28_TUESDAYJUNE5_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 37, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb4813419b,Object,20775-bb4813419b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/6/2003,,6-Nov-03,,11/6/2003,,20775-bb4813419b-0-2.tgz,document-source,VOLUME110_ISSUE12_THURSDAYNOVEMBER6_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 110, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb78169852,Object,20775-bb78169852-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/5/2011,,5-May-11,,5/5/2011,,,,05_05_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 52",, +http://library.ucsd.edu/ark:/20775/bb0683691p,Object,20775-bb0683691p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/26/1990,,26-Oct-90,,10/26/1990,,20775-bb0683691p-0-2.tgz,document-source,VOLUME71_ISSUE14_FRIDAYOCTOBER26_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 71, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb9762269j,Object,20775-bb9762269j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,2/6/1997,,6-Feb-97,,2/6/1997,,20775-bb9762269j-0-2.tgz,document-source,VOLUME90_ISSUE10_THURSDAYFEBRUARY6_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 90, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb17075963,Object,20775-bb17075963-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,3/9/1998,,9-Mar-98,,3/9/1998,,20775-bb17075963-0-2.tgz,document-source,VOLUME93_ISSUE19_MONDAYMARCH9_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 93, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb04106515,Object,20775-bb04106515-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/9/2006,,9-Mar-06,,3/9/2006,,20775-bb04106515-0-2.tgz,document-source,THURSDAYMARCH9_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 117, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb30727869,Object,20775-bb30727869-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,3/7/1972,,7-Mar-72,,3/7/1972,,20775-bb30727869-0-2.tgz,document-source,VOLUME15_ISSUE19_TUESDAYMARCH7_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 15, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb9079673k,Object,20775-bb9079673k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/13/1991,,13-May-91,,5/13/1991,,20775-bb9079673k-0-2.tgz,document-source,VOLUME73_ISSUE13_MONDAYMAY13_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 73, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb5837319m,Object,20775-bb5837319m-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,11/21/1979,,21-Nov-79,,11/21/1979,,20775-bb5837319m-0-2.tgz,document-source,VOLUME38_ISSUE44_WEDNESDAYNOVEMBER21_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 44",, +http://library.ucsd.edu/ark:/20775/bb4813418t,Object,20775-bb4813418t-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,4/14/1972,,14-Apr-72,,4/14/1972,,20775-bb4813418t-0-2.tgz,document-source,VOLUME16_ISSUE6_APRIL14_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 16, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb68954744,Object,20775-bb68954744-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/9/2009,,9-Mar-09,,3/9/2009,,,,03_09_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb71002535,Object,20775-bb71002535-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/8/2007,,8-Nov-07,,11/8/2007,,,,11_08_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb96940106,Object,20775-bb96940106-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Guardian,Daily Guardian,The Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,11/29/1982,11/29/1982,29-Nov-82,29-Nov-82,11/29/1982,11/29/1982,20775-bb96940106-0-2.tgz,document-source,VOLUME47_ISSUE19_MONDAYNOVEMBER29_1982.pdf,VOLUME47_ISSUE19_MONDAYNOVEMBER29_1982.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 47, Issue 19","Volume 47, Issue 19", +http://library.ucsd.edu/ark:/20775/bb7816984j,Object,20775-bb7816984j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/1/2010,,1-Mar-10,,3/1/2010,,,,03_01_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 37",, +http://library.ucsd.edu/ark:/20775/bb74414285,Object,20775-bb74414285-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/19/1970,,19-May-70,,5/19/1970,,20775-bb74414285-0-2.tgz,document-source,VOLUME10_ISSUE13_TUESDAYMAY19_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 10, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb79192510,Object,20775-bb79192510-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,Triton Times,UCSD Guardian,The Guardian,,,,,,,,,,,,,4/7/1980,,7-Apr-80,,4/7/1980,,20775-bb79192510-0-2.tgz,document-source,VOLUME40_ISSUE6_MONDAYAPRIL7_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb21512790,Object,20775-bb21512790-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/27/1987,,27-Apr-87,,4/27/1987,,20775-bb21512790-0-2.tgz,document-source,VOLUME58_ISSUE49_MONDAYAPRIL27_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 49",, +http://library.ucsd.edu/ark:/20775/bb2936274g,Object,20775-bb2936274g-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/25/1970,,25-Nov-70,,11/25/1970,,20775-bb2936274g-0-2.tgz,document-source,VOLUME11_ISSUE18_WEDNESDAYNOVEMBER25_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 11, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb65199184,Object,20775-bb65199184-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,2/23/1971,,23-Feb-71,,2/23/1971,,20775-bb65199184-0-2.tgz,document-source,VOLUME12_ISSUE15_TUESDAYFEBRUARY23_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 12, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb0410652p,Object,20775-bb0410652p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/13/1986,,13-Feb-86,,2/13/1986,,20775-bb0410652p-0-2.tgz,document-source,VOLUME57_ISSUE12_THURSDAYFEBRUARY13_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 57, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb1127375d,Object,20775-bb1127375d-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,10/6/1972,,6-Oct-72,,10/6/1972,,20775-bb1127375d-0-2.tgz,document-source,VOLUME17_ISSUE4_FRIDAYOCTOBER6_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 17, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb13321630,Object,20775-bb13321630-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/8/1998,,8-Oct-98,,10/8/1998,,20775-bb13321630-0-2.tgz,document-source,VOLUME95_ISSUE5_THURSDAYOCTOBER8_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 95, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb2936271x,Object,20775-bb2936271x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/30/2006,,30-Jan-06,,1/30/2006,,20775-bb2936271x-0-2.tgz,document-source,MONDAYJANUARY30_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 117, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb10591178,Object,20775-bb10591178-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,3/10/1975,,10-Mar-75,,3/10/1975,,20775-bb10591178-0-2.tgz,document-source,VOLUME24_ISSUE27_MONDAYMARCH10_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 24, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb9591625c,Object,20775-bb9591625c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/8/1992,,8-Oct-92,,10/8/1992,,20775-bb9591625c-0-2.tgz,document-source,VOLUME77_ISSUE5_THURSDAYOCTOBER8_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 77, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb5700796b,Object,20775-bb5700796b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,4/8/1991,,8-Apr-91,,4/8/1991,,20775-bb5700796b-0-2.tgz,document-source,VOLUME73_ISSUE3_MONDAYAPRIL8_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 73, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb7476046h,Object,2013-11-07.pdf,document-service,text,eng - English,UCSD Guardian,,,,,,,,,,,,,,,,,,,,11/4/2013,,7-Nov-13,,11/4/2013,,,,2013-11-07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 13",,Newspaper +http://library.ucsd.edu/ark:/20775/bb0035346c,Object,20775-bb0035346c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/15/2010,,15-Nov-10,,11/15/2010,,,,11_15_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb06836947,Object,20775-bb06836947-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/21/1974,,21-May-74,,5/21/1974,,20775-bb06836947-0-2.tgz,document-source,VOLUME22_ISSUE15_TUESDAYMAY21_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 22, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb0649565t,Object,20775-bb0649565t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/27/1995,,27-Nov-95,,11/27/1995,,20775-bb0649565t-0-2.tgz,document-source,VOLUME86_ISSUE19_MONDAYNOVEMBER27_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 86, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb1195639q,Object,20775-bb1195639q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/14/1999,,14-Oct-99,,10/14/1999,,20775-bb1195639q-0-2.tgz,document-source,VOLUME98_ISSUE5_THURSDAYOCTOBER14_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 98, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb52912416,Object,20775-bb52912416-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,6/6/1969,,6-Jun-69,,6/6/1969,,20775-bb52912416-0-2.tgz,document-source,VOLUME7_ISSUE9_JUNE6_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 7, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb8977280p,Object,20775-bb8977280p-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,2/29/1980,,29-Feb-80,,2/29/1980,,20775-bb8977280p-0-2.tgz,document-source,VOLUME39_ISSUE39_FRIDAYFEBRUARY29_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 39",, +http://library.ucsd.edu/ark:/20775/bb3038785r,Object,20775-bb3038785r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/4/2009,,4-May-09,,5/4/2009,,,,05_04_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb27656190,Object,20775-bb27656190-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,10/16/1974,,16-Oct-74,,10/16/1974,,20775-bb27656190-0-2.tgz,document-source,VOLUME23_ISSUE11_WEDNESDAYOCTOBER16_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 23, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb5291240p,Object,20775-bb5291240p-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/28/1974,,28-Oct-74,,10/28/1974,,20775-bb5291240p-0-2.tgz,document-source,VOLUME23_ISSUE16_MONDAYOCTOBER28_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 23, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb1332161z,Object,20775-bb1332161z-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,5/9/1977,,9-May-77,,5/9/1977,,20775-bb1332161z-0-2.tgz,document-source,VOLUME31_ISSUE16_MONDAYMAY9_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 31, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb57690615,Object,20775-bb57690615-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,2/1/1996,,1-Feb-96,,2/1/1996,,20775-bb57690615-0-2.tgz,document-source,VOLUME87_ISSUE8_THURSDAYFEBRUARY1_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 87, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb1332162g,Object,20775-bb1332162g-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/28/1979,,28-Feb-79,,2/28/1979,,20775-bb1332162g-0-2.tgz,document-source,VOLUME36_ISSUE22_WEDNESDAYFEBRUARY28_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 36, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb48134179,Object,20775-bb48134179-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/21/1975,,21-Feb-75,,2/21/1975,,20775-bb48134179-0-2.tgz,document-source,VOLUME24_ISSUE20_FRIDAYFEBRUARY21_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 24, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb0649566b,Object,20775-bb0649566b-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,3/12/1975,,12-Mar-75,,3/12/1975,,20775-bb0649566b-0-2.tgz,document-source,VOLUME24_ISSUE28_WEDNESDAYMARCH12_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 24, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb7612078r,Object,20775-bb7612078r-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/29/1977,,29-Apr-77,,4/29/1977,,20775-bb7612078r-0-2.tgz,document-source,VOLUME31_ISSUE12_FRIDAYAPRIL29_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 31, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb1707593j,Object,20775-bb1707593j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,1/9/1995,,9-Jan-95,,1/9/1995,,20775-bb1707593j-0-2.tgz,document-source,VOLUME84_ISSUE1_MONDAYJANUARY9_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 84, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb7339046w,Object,20775-bb7339046w-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,1/16/1976,,16-Jan-76,,1/16/1976,,20775-bb7339046w-0-2.tgz,document-source,VOLUME27_ISSUE6_JANUARY16_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 27, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb6281138t,Object,20775-bb6281138t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/26/2009,,26-Feb-09,,2/26/2009,,,,02_26_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb17075942,Object,20775-bb17075942-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,3/2/2006,,2-Mar-06,,3/2/2006,,20775-bb17075942-0-2.tgz,document-source,THURSDAYMARCH2_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 117, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb5769060n,Object,20775-bb5769060n-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/27/1977,,27-May-77,,5/27/1977,,20775-bb5769060n-0-2.tgz,document-source,VOLUME31_ISSUE24_FRIDAYMAY27_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 31, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb0683693q,Object,20775-bb0683693q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,3/1/2001,,1-Mar-01,,3/1/2001,,20775-bb0683693q-0-2.tgz,document-source,VOLUME102_ISSUE16_THURSDAYMARCH1_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 102, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb04106536,Object,20775-bb04106536-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,UCSD Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/10/1980,,10-Oct-80,,10/10/1980,,20775-bb04106536-0-2.tgz,document-source,VOLUME41_ISSUE16_FRIDAYOCTOBER10_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb9694011q,Object,20775-bb9694011q-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Guardian,Daily Guardian,The Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,2/10/1986,2/10/1986,10-Feb-86,10-Feb-86,2/10/1986,2/10/1986,20775-bb9694011q-0-2.tgz,document-source,VOLUME57_ISSUE11_MONDAYFEBRUARY10_1986.pdf,VOLUME57_ISSUE11_MONDAYFEBRUARY10_1986.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 57, Issue 11","Volume 57, Issue 11", +http://library.ucsd.edu/ark:/20775/bb9591626w,Object,20775-bb9591626w-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,3/3/1972,,3-Mar-72,,3/3/1972,,20775-bb9591626w-0-2.tgz,document-source,VOLUME15_ISSUE18_FRIDAYMARCH3_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 15, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb96940127,Object,20775-bb96940127-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,6/4/1998,,4-Jun-98,,6/4/1998,,20775-bb96940127-0-2.tgz,document-source,VOLUME94_ISSUE20_THURSDAYJUNE4_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 94, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb3072787t,Object,20775-bb3072787t-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,3/7/1980,,7-Mar-80,,3/7/1980,,20775-bb3072787t-0-2.tgz,document-source,VOLUME39_ISSUE44_FRIDAYMARCH7_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 44",, +http://library.ucsd.edu/ark:/20775/bb89772816,Object,20775-bb89772816-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,UCSD Guardian,Guardian,Triton Times,,,,,,,,,,,,,4/25/1980,,25-Apr-80,,4/25/1980,,20775-bb89772816-0-2.tgz,document-source,VOLUME40_ISSUE20_FRIDAYAPRIL25_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb2765618g,Object,20775-bb2765618g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/24/1982,,24-May-82,,5/24/1982,,20775-bb2765618g-0-2.tgz,document-source,VOLUME46_ISSUE17_MONDAYMAY24_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb2936272f,Object,20775-bb2936272f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,10/4/2004,,4-Oct-04,,10/4/2004,,20775-bb2936272f-0-2.tgz,document-source,VOLUME113_ISSUE4_MONDAYOCTOBER4_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 113, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb6929478j,Object,20775-bb6929478j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/8/1990,,8-Jan-90,,1/8/1990,,20775-bb6929478j-0-2.tgz,document-source,VOLUME69_ISSUE2_MONDAYJANUARY8_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 69, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb1844236g,Object,20775-bb1844236g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/5/2008,,5-May-08,,5/5/2008,,,,05_05_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb19806281,Object,20775-bb19806281-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,8/12/2002,,12-Aug-02,,8/12/2002,,20775-bb19806281-0-2.tgz,document-source,VOLUME106_ISSUE22_MONDAYAUGUST12_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 106, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb1161514x,Object,20775-bb1161514x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,7/1/1991,,1-Jul-91,,7/1/1991,,20775-bb1161514x-0-2.tgz,document-source,VOLUME74_ISSUE1_MONDAYJULY1_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 74, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb4164957c,Object,20775-bb4164957c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,3/6/2003,,6-Mar-03,,3/6/2003,,20775-bb4164957c-0-2.tgz,document-source,VOLUME108_ISSUE18_THURSDAYMARCH6_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 108, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb3072788b,Object,20775-bb3072788b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/9/1986,,9-Oct-86,,10/9/1986,,,,VOLUME58_ISSUE5_THURSDAYOCTOBER9_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb10591199,Object,20775-bb10591199-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,10/10/1977,,10-Oct-77,,10/10/1977,,20775-bb10591199-0-2.tgz,document-source,VOLUME32_ISSUE6_MONDAYOCTOBER10_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb97622660,Object,20775-bb97622660-0-1.pdf,document-service,text,,The Guardian,The Guardian,,,UCSD Guardian,Guardian,Triton Times,Daily Guardian,UCSD Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,5/7/1981,5/7/1981,7-May-81,7-May-81,5/7/1981,5/7/1981,20775-bb97622660-0-2.tgz,document-source,VOLUME43_ISSUE13_THURSDAYMAY7_1981.pdf,VOLUME43_ISSUE13_THURSDAYMAY7_1981.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 43, Issue 13","Volume 43, Issue 13", +http://library.ucsd.edu/ark:/20775/bb6178785j,Object,20775-bb6178785j-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,3/5/2012,,5-Mar-12,,3/5/2012,,,,2012-03-05.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 37",, +http://library.ucsd.edu/ark:/20775/bb9591623b,Object,20775-bb9591623b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/11/1993,,11-Jan-93,,1/11/1993,,20775-bb9591623b-0-2.tgz,document-source,VOLUME78_ISSUE3_MONDAYJANUARY11_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 78, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb9250317m,Object,20775-bb9250317m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,11/17/1988,,17-Nov-88,,11/17/1988,,20775-bb9250317m-0-2.tgz,document-source,VOLUME65_ISSUE17_THURSDAYNOVEMBER17_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 65, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb05814259,Object,20775-bb05814259-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/24/2008,,24-Nov-08,,11/24/2008,,,,11_24_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb90796722,Object,20775-bb90796722-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,11/15/1993,,15-Nov-93,,11/15/1993,,20775-bb90796722-0-2.tgz,document-source,VOLUME80_ISSUE16_MONDAYNOVEMBER15_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 80, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb2629097x,Object,20775-bb2629097x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/12/1997,,12-May-97,,5/12/1997,,20775-bb2629097x-0-2.tgz,document-source,VOLUME91_ISSUE13_MONDAYMAY12_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 91, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb6178747n,Object,20775-bb6178747n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/28/2011,,28-Apr-11,,4/28/2011,,,,04_28_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb4882165k,Object,2013-11-14.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/12/2013,,14-Nov-13,,11/12/2013,,,,2013-11-14.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 15",,Newspaper +http://library.ucsd.edu/ark:/20775/bb4676899t,Object,20775-bb4676899t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,10/26/2006,,26-Oct-06,,10/26/2006,,20775-bb4676899t-0-2.tgz,document-source,THURSDAYOCTOBER26_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 119, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb65881775,Object,20775-bb65881775-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,4/21/1975,,21-Apr-75,,4/21/1975,,20775-bb65881775-0-2.tgz,document-source,VOLUME25_ISSUE10_MONDAYAPRIL21_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 25, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb0649563s,Object,20775-bb0649563s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,3/16/1995,,16-Mar-95,,3/16/1995,,20775-bb0649563s-0-2.tgz,document-source,VOLUME84_ISSUE20_THURSDAYMARCH16_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 84, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb75438221,Object,20775-bb75438221-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/26/1984,,26-Apr-84,,4/26/1984,,20775-bb75438221-0-2.tgz,document-source,VOLUME52_ISSUE8_THURSDAYAPRIL26_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 52, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb80899044,Object,20775-bb80899044-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/27/1989,,27-Nov-89,,11/27/1989,,20775-bb80899044-0-2.tgz,document-source,VOLUME68_ISSUE19_MONDAYNOVEMBER27_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 68, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb3653000x,Object,20775-bb3653000x-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,3/8/1993,,8-Mar-93,,3/8/1993,,20775-bb3653000x-0-2.tgz,document-source,VOLUME78_ISSUE19_MONDAYMARCH8_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 78, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb1059118s,Object,20775-bb1059118s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/3/1989,,3-Apr-89,,4/3/1989,,20775-bb1059118s-0-2.tgz,document-source,VOLUME67_ISSUE1_MONDAYAPRIL3_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 67, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb9455224v,Object,20775-bb9455224v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/20/2010,,20-May-10,,5/20/2010,,,,05_20_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 56",, +http://library.ucsd.edu/ark:/20775/bb1775974q,Object,20775-bb1775974q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,12/3/2009,,3-Dec-09,,12/3/2009,,,,12_03_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb2629096d,Object,20775-bb2629096d-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,10/13/1976,,13-Oct-76,,10/13/1976,,20775-bb2629096d-0-2.tgz,document-source,VOLUME29_ISSUE9_WEDNESDAYOCTOBER13_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 29, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb8089903m,Object,20775-bb8089903m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/22/1993,,22-Feb-93,,2/22/1993,,20775-bb8089903m-0-2.tgz,document-source,VOLUME78_ISSUE15_MONDAYFEBRUARY22_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 78, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb1161635v,Object,20775-bb1161635v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/28/2009,,28-Sep-09,,9/28/2009,,,,09_28_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb1980627h,Object,20775-bb1980627h-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/14/1985,,14-Nov-85,,11/14/1985,,20775-bb1980627h-0-2.tgz,document-source,VOLUME56_ISSUE15_THURSDAYNOVEMBER14_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 56, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb4643257s,Object,2014-04-14.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/14/2014,,14-Apr-14,,4/14/2014,,,,2014-04-14.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 45",,Newspaper +http://library.ucsd.edu/ark:/20775/bb1332160f,Object,20775-bb1332160f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/25/2002,,25-Nov-02,,11/25/2002,,20775-bb1332160f-0-2.tgz,document-source,VOLUME107_ISSUE18_MONDAYNOVEMBER25_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 107, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb0683695r,Object,20775-bb0683695r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,2/23/1989,,23-Feb-89,,2/23/1989,,20775-bb0683695r-0-2.tgz,document-source,VOLUME66_ISSUE15_THURSDAYFEBRUARY23_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 66, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb16736238,Object,20775-bb16736238-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,2/6/2012,,6-Feb-12,,2/6/2012,,,,2012-02-06.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb1161513d,Object,20775-bb1161513d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/26/1984,,19-Jan-84,,1/26/1984,,20775-bb1161513d-0-2.tgz,document-source,VOLUME51_ISSUE6_THURSDAYJANUARY26_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 51, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb2083019t,Object,20775-bb2083019t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,9/17/1984,,17-Sep-84,,9/17/1984,,20775-bb2083019t-0-2.tgz,document-source,VOLUME53_ISSUE1_MONDAYSEPTEMBER17_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 53, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb92503184,Object,20775-bb92503184-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/24/1983,,24-Oct-83,,10/24/1983,,20775-bb92503184-0-2.tgz,document-source,VOLUME50_ISSUE10_MONDAYOCTOBER24_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 50, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb7543821h,Object,20775-bb7543821h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,4/25/1996,,25-Apr-96,,4/25/1996,,20775-bb7543821h-0-2.tgz,document-source,VOLUME88_ISSUE8_THURSDAYAPRIL25_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 88, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb3653001f,Object,20775-bb3653001f-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,3/14/1977,,14-Mar-77,,3/14/1977,,20775-bb3653001f-0-2.tgz,document-source,VOLUME30_ISSUE27_MONDAYMARCH14_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 30, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb3072789v,Object,20775-bb3072789v-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,2/19/1974,,19-Feb-74,,2/19/1974,,20775-bb3072789v-0-2.tgz,document-source,VOLUME21_ISSUE13_TUESDAYFEBRUARY19_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 21, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb6588176n,Object,20775-bb6588176n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/4/1993,,4-Oct-93,,10/4/1993,,20775-bb6588176n-0-2.tgz,document-source,VOLUME80_ISSUE4_MONDAYOCTOBER4_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 80, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb4164956v,Object,20775-bb4164956v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,7/15/2002,,15-Jul-02,,7/15/2002,,20775-bb4164956v-0-2.tgz,document-source,VOLUME106_ISSUE21_MONDAYJULY15_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 106, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb76120798,Object,20775-bb76120798-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,2/6/2006,,6-Feb-06,,2/6/2006,,20775-bb76120798-0-2.tgz,document-source,MONDAYFEBRUARY6_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 117, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb9591624v,Object,20775-bb9591624v-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,10/1/1971,,1-Oct-71,,10/1/1971,,20775-bb9591624v-0-2.tgz,document-source,VOLUME14_ISSUE2_FRIDAYOCTOBER1_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 14, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb1161512w,Object,20775-bb1161512w-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,11/13/1970,,13-Nov-70,,11/13/1970,,20775-bb1161512w-0-2.tgz,document-source,VOLUME11_ISSUE14_FRIDAYNOVEMBER13_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 11, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb4199080c,Object,20775-bb4199080c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/25/1982,,25-Feb-82,,2/25/1982,,20775-bb4199080c-0-2.tgz,document-source,VOLUME45_ISSUE16_THURSDAYFEBRUARY25_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb7066002r,Object,20775-bb7066002r-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/8/1974,,8-Nov-74,,11/8/1974,,20775-bb7066002r-0-2.tgz,document-source,VOLUME23_ISSUE21_FRIDAYNOVEMBER8_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 23, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb86701093,Object,20775-bb86701093-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,11/20/1980,,20-Nov-80,,11/20/1980,,20775-bb86701093-0-2.tgz,document-source,VOLUME41_ISSUE45_THURSDAYNOVEMBER20_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 45",, +http://library.ucsd.edu/ark:/20775/bb97622681,Object,20775-bb97622681-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,5/17/1978,,17-May-78,,5/17/1978,,20775-bb97622681-0-2.tgz,document-source,VOLUME34_ISSUE20_WEDNESDAYMAY17_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 34, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb58031904,Object,20775-bb58031904-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,2/28/1994,,28-Feb-94,,2/28/1994,,20775-bb58031904-0-2.tgz,document-source,VOLUME81_ISSUE17_MONDAYFEBRUARY28_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 81, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb8260674c,Object,20775-bb8260674c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/12/2009,,12-Mar-09,,3/12/2009,,,,03_12_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb90796743,Object,20775-bb90796743-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/27/1978,,27-Jan-78,,1/27/1978,,20775-bb90796743-0-2.tgz,document-source,VOLUME33_ISSUE9_FRIDAYJANUARY27_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 33, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb9250319n,Object,20775-bb9250319n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,9/28/1990,,28-Sep-90,,9/28/1990,,20775-bb9250319n-0-2.tgz,document-source,VOLUME71_ISSUE2_FRIDAYSEPTEMBER28_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 71, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb0752440n,Object,2014-04-24.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/24/2014,,24-Apr-14,,4/24/2014,,,,2014-04-24.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 48",,Newspaper +http://library.ucsd.edu/ark:/20775/bb4164955b,Object,20775-bb4164955b-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,10/27/1976,,27-Oct-76,,10/27/1976,,20775-bb4164955b-0-2.tgz,document-source,VOLUME29_ISSUE15_WEDNESDAYOCTOBER27_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 29, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb1707597m,Object,20775-bb1707597m-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,Triton Times,UCSD Guardian,The Guardian,,,,,,,,,,,,,1/15/1980,,15-Jan-80,,1/15/1980,,20775-bb1707597m-0-2.tgz,document-source,VOLUME39_ISSUE7_TUESDAYJANUARY15_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb5700799w,Object,20775-bb5700799w-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,10/31/1969,,31-Oct-69,,10/31/1969,,20775-bb5700799w-0-2.tgz,document-source,VOLUME8_ISSUE5_OCTOBER31_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 8, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb0649561r,Object,20775-bb0649561r-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,4/21/1980,,21-Apr-80,,4/21/1980,,20775-bb0649561r-0-2.tgz,document-source,VOLUME40_ISSUE16_MONDAYAPRIL21_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb75438200,Object,20775-bb75438200-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,10/28/2004,,28-Oct-04,,10/28/2004,,20775-bb75438200-0-2.tgz,document-source,VOLUME113_ISSUE11_THURSDAYOCTOBER28_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 113, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb80899065,Object,20775-bb80899065-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,10/27/1972,,27-Oct-72,,10/27/1972,,20775-bb80899065-0-2.tgz,document-source,VOLUME17_ISSUE10_FRIDAYOCTOBER27_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 17, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb2629099z,Object,20775-bb2629099z-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/26/1977,,26-Oct-77,,10/26/1977,,20775-bb2629099z-0-2.tgz,document-source,VOLUME32_ISSUE15_WEDNESDAYOCTOBER26_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb83288083,Object,20775-bb83288083-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,11/14/1972,,14-Nov-72,,11/14/1972,,20775-bb83288083-0-2.tgz,document-source,VOLUME17_ISSUE15_TUESDAYNOVEMBER14_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 17, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb2629098f,Object,20775-bb2629098f-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/24/1994,,24-Oct-94,,10/24/1994,,20775-bb2629098f-0-2.tgz,document-source,VOLUME83_ISSUE10_MONDAYOCTOBER24_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 83, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb8089905n,Object,20775-bb8089905n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,1/10/1991,,10-Jan-91,,1/10/1991,,20775-bb8089905n-0-2.tgz,document-source,VOLUME72_ISSUE2_THURSDAYJANUARY10_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 72, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb9079671j,Object,20775-bb9079671j-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,1/18/1996,,18-Jan-96,,1/18/1996,,20775-bb9079671j-0-2.tgz,document-source,VOLUME87_ISSUE4_THURSDAYJANUARY18_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 87, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb58373183,Object,20775-bb58373183-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/3/1985,,3-Oct-85,,10/3/1985,,20775-bb58373183-0-2.tgz,document-source,VOLUME56_ISSUE3_THURSDAYOCTOBER3_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 56, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb6008095w,Object,20775-bb6008095w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/5/2009,,5-Mar-09,,3/5/2009,,,,03_05_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb5393629b,Object,20775-bb5393629b-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/2/2006,,2-Oct-06,,10/2/2006,,20775-bb5393629b-0-2.tgz,document-source,MONDAYOCTOBER2_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 119, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb6519919n,Object,20775-bb6519919n-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/16/1979,,16-Nov-79,,11/16/1979,,20775-bb6519919n-0-2.tgz,document-source,VOLUME38_ISSUE41_FRIDAYNOVEMBER16_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 41",, +http://library.ucsd.edu/ark:/20775/bb1980629j,Object,20775-bb1980629j-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,10/3/1988,,3-Oct-88,,10/3/1988,,20775-bb1980629j-0-2.tgz,document-source,VOLUME65_ISSUE4_MONDAYOCTOBER3_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 65, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb9762267h,Object,20775-bb9762267h-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Triton Times,The Guardian,Daily Guardian,Guardian,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,2/4/1993,2/4/1993,4-Feb-93,4-Feb-93,2/4/1993,2/4/1993,20775-bb9762267h-0-2.tgz,document-source,VOLUME78_ISSUE10_THURSDAYFEBRUARY4_1993.pdf,VOLUME78_ISSUE10_THURSDAYFEBRUARY4_1993.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 78, Issue 10","Volume 78, Issue 10", +http://library.ucsd.edu/ark:/20775/bb1161511c,Object,20775-bb1161511c-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,10/14/1977,,14-Oct-77,,10/14/1977,,20775-bb1161511c-0-2.tgz,document-source,VOLUME32_ISSUE10_FRIDAYOCTOBER14_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb8670108k,Object,20775-bb8670108k-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/9/1979,,9-Oct-79,,10/9/1979,,20775-bb8670108k-0-2.tgz,document-source,VOLUME38_ISSUE13_TUESDAYOCTOBER9_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb1161510v,Object,20775-bb1161510v-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,1/14/1972,,14-Jan-72,,1/14/1972,,20775-bb1161510v-0-2.tgz,document-source,VOLUME15_ISSUE4_FRIDAYJANUARY14_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 15, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb9591622t,Object,20775-bb9591622t-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,UCSD Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,11/6/1978,,6-Nov-78,,11/6/1978,,20775-bb9591622t-0-2.tgz,document-source,VOLUME35_ISSUE20_MONDAYNOVEMBER6_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 35, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb76120777,Object,20775-bb76120777-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,3/4/1985,,4-Mar-85,,3/4/1985,,20775-bb76120777-0-2.tgz,document-source,VOLUME54_ISSUE17_MONDAYMARCH4_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 54, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb06495649,Object,20775-bb06495649-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,3/3/1997,,3-Mar-97,,3/3/1997,,20775-bb06495649-0-2.tgz,document-source,VOLUME90_ISSUE17_MONDAYMARCH3_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 90, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb4164954t,Object,20775-bb4164954t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,11/24/2003,,24-Nov-03,,11/24/2003,,20775-bb4164954t-0-2.tgz,document-source,VOLUME110_ISSUE17_MONDAYNOVEMBER24_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 110, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb8601849x,Object,20775-bb8601849x-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,2/27/1973,,27-Feb-73,,2/27/1973,,20775-bb8601849x-0-2.tgz,document-source,VOLUME18_ISSUE15_TUESDAYFEBRUARY27_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 18, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb09908619,Object,20775-bb09908619-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/3/1983,,3-Feb-83,,2/3/1983,,20775-bb09908619-0-2.tgz,document-source,VOLUME48_ISSUE10_THURSDAYFEBRUARY3_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb53253740,Object,20775-bb53253740-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,5/31/1994,,31-May-94,,5/31/1994,,20775-bb53253740-0-2.tgz,document-source,VOLUME82_ISSUE19_TUESDAYMAY31_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 82, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb64175300,Object,20775-bb64175300-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/13/1996,,13-May-96,,5/13/1996,,20775-bb64175300-0-2.tgz,document-source,VOLUME88_ISSUE13_MONDAYMAY13_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 88, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb4062564b,Object,20775-bb4062564b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/14/2005,,14-Nov-05,,11/14/2005,,20775-bb4062564b-0-2.tgz,document-source,VOLUME116_ISSUE16_MONDAYNOVEMBER14_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 116, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb2868016b,Object,20775-bb2868016b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/13/2006,,13-Apr-06,,4/13/2006,,20775-bb2868016b-0-2.tgz,document-source,THURSDAYAPRIL13_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 118, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb8533591g,Object,20775-bb8533591g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,4/1/1991,,1-Apr-91,,4/1/1991,,20775-bb8533591g-0-2.tgz,document-source,VOLUME73_ISSUE1_MONDAYAPRIL1_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 73, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb20830189,Object,20775-bb20830189-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,1/18/1972,,18-Jan-72,,1/18/1972,,20775-bb20830189-0-2.tgz,document-source,VOLUME15_ISSUE5_TUESDAYJANUARY18_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 15, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb5427762f,Object,20775-bb5427762f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,11/8/1982,,8-Nov-82,,11/8/1982,,20775-bb5427762f-0-2.tgz,document-source,VOLUME47_ISSUE14_MONDAYNOVEMBER8_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb4199081w,Object,20775-bb4199081w-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,5/29/1970,,29-May-70,,5/29/1970,,20775-bb4199081w-0-2.tgz,document-source,VOLUME10_ISSUE16_FRIDAYMAY29_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 10, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb5905580m,Object,20775-bb5905580m-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,9/24/1967,,24-Sep-67,,9/24/1967,,20775-bb5905580m-0-2.tgz,document-source,VOLUME2_ISSUE1_SEPTEMBER24_1967.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 2, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb5325372z,Object,20775-bb5325372z-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/17/1975,,17-Jan-75,,1/17/1975,,20775-bb5325372z-0-2.tgz,document-source,VOLUME24_ISSUE6_FRIDAYJANUARY17_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 24, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb85335920,Object,20775-bb85335920-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,11/17/2005,,17-Nov-05,,11/17/2005,,20775-bb85335920-0-2.tgz,document-source,VOLUME116_ISSUE17_THURSDAYNOVEMBER17_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 116, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb3687127r,Object,20775-bb3687127r-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/9/1973,,9-Feb-73,,2/9/1973,,20775-bb3687127r-0-2.tgz,document-source,VOLUME18_ISSUE10_FRIDAYFEBRUARY9_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 18, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb6861216k,Object,20775-bb6861216k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/21/2005,,21-Nov-05,,11/21/2005,,20775-bb6861216k-0-2.tgz,document-source,VOLUME116_ISSUE18_MONDAYNOVEMBER21_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 116, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb5427761x,Object,20775-bb5427761x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/12/1998,,12-Oct-98,,10/12/1998,,20775-bb5427761x-0-2.tgz,document-source,VOLUME95_ISSUE6_MONDAYOCTOBER12_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 95, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb9557491r,Object,20775-bb9557491r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/22/1993,,22-Apr-93,,4/22/1993,,20775-bb9557491r-0-2.tgz,document-source,VOLUME79_ISSUE8_THURSDAYAPRIL22_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 79, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb4199082d,Object,20775-bb4199082d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/18/1984,,18-Oct-84,,10/18/1984,,20775-bb4199082d-0-2.tgz,document-source,VOLUME53_ISSUE10_THURSDAYOCTOBER18_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 53, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb2868015t,Object,20775-bb2868015t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/24/1997,,24-Apr-97,,4/24/1997,,20775-bb2868015t-0-2.tgz,document-source,VOLUME91_ISSUE8_THURSDAYAPRIL24_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 91, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb0103969z,Object,2014-10-16.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/16/2014,,16-Oct-14,,10/16/2014,,,,2014-10-16.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 5",,Newspaper +http://library.ucsd.edu/ark:/20775/bb9352711g,Object,20775-bb9352711g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,9/27/2004,,27-Sep-04,,9/27/2004,,20775-bb9352711g-0-2.tgz,document-source,VOLUME113_ISSUE2_MONDAYSEPTEMBER27_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 113, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb86701072,Object,20775-bb86701072-0-1.pdf,document-service,text,,The Guardian,,,,Daily Guardian,Triton Times,UCSD Guardian,Guardian,,,,,,,,,,,,,3/5/1981,,5-Mar-81,,3/5/1981,,20775-bb86701072-0-2.tgz,document-source,VOLUME42_ISSUE18_THURSDAYMARCH5_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb3516485j,Object,20775-bb3516485j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/17/1989,,17-Apr-89,,4/17/1989,,20775-bb3516485j-0-2.tgz,document-source,VOLUME67_ISSUE5_MONDAYAPRIL17_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 67, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb17418462,Object,20775-bb17418462-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/17/2009,,17-Feb-09,,2/17/2009,,,,02_17_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb5325373g,Object,20775-bb5325373g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/22/2002,,22-Apr-02,,4/22/2002,,20775-bb5325373g-0-2.tgz,document-source,VOLUME106_ISSUE7_MONDAYAPRIL22_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 106, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb8533590z,Object,20775-bb8533590z-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,The Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,1/22/1979,,22-Jan-79,,1/22/1979,,20775-bb8533590z-0-2.tgz,document-source,VOLUME36_ISSUE7_MONDAYJANUARY22_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 36, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb06495628,Object,20775-bb06495628-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,9/28/2006,,28-Sep-06,,9/28/2006,,20775-bb06495628-0-2.tgz,document-source,THURSDAYSEPTEMBER28_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 119, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb5564277w,Object,20775-bb5564277w-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,5/15/1978,,15-May-78,,5/15/1978,,20775-bb5564277w-0-2.tgz,document-source,VOLUME34_ISSUE19_MONDAYMAY15_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 34, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb5496143j,Object,20775-bb5496143j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/1/2007,,1-Nov-07,,11/1/2007,,,,11_01_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb46768989,Object,20775-bb46768989-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,2/6/1973,,6-Feb-73,,2/6/1973,,20775-bb46768989-0-2.tgz,document-source,VOLUME18_ISSUE9_TUESDAYFEBRUARY6_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 18, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb52575971,Object,2014-09-30.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/20/2014,,20-Sep-14,,9/20/2014,,,,2014-09-30.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 48,, Issue 1",,Newspaper +http://library.ucsd.edu/ark:/20775/bb93527120,Object,20775-bb93527120-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/6/1994,,6-Jan-94,,1/6/1994,,20775-bb93527120-0-2.tgz,document-source,VOLUME81_ISSUE2_THURSDAYJANUARY6_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 81, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb8055770r,Object,20775-bb8055770r-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/4/1975,,4-Apr-75,,4/4/1975,,20775-bb8055770r-0-2.tgz,document-source,VOLUME25_ISSUE3_FRIDAYAPRIL4_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 25, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb0478910n,Object,20775-bb0478910n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,3/7/2002,,7-Mar-02,,3/7/2002,,20775-bb0478910n-0-2.tgz,document-source,VOLUME105_ISSUE18_THURSDAYMARCH7_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 105, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb6690575b,Object,20775-bb6690575b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,6/3/1982,,3-Jun-82,,6/3/1982,,20775-bb6690575b-0-2.tgz,document-source,VOLUME46_ISSUE20_THURSDAYJUNE3_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb9352710z,Object,20775-bb9352710z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/12/1989,,12-Jan-89,,1/12/1989,,20775-bb9352710z-0-2.tgz,document-source,VOLUME66_ISSUE3_THURSDAYJANUARY12_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 66, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb0990860s,Object,20775-bb0990860s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,2/26/1996,,26-Feb-96,,2/26/1996,,20775-bb0990860s-0-2.tgz,document-source,VOLUME87_ISSUE15_MONDAYFEBRUARY26_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 87, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb7543825k,Object,20775-bb7543825k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,1/3/2005,,3-Jan-05,,1/3/2005,,20775-bb7543825k-0-2.tgz,document-source,VOLUME114_ISSUE1_MONDAYJANUARY3_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 114, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb0103478p,Object,20775-bb0103478p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/22/1987,,22-Jan-87,,1/22/1987,,,,VOLUME58_ISSUE26_THURSDAYJANUARY22_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb23901889,Object,20775-bb23901889-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,4/14/2003,,14-Apr-03,,4/14/2003,,20775-bb23901889-0-2.tgz,document-source,VOLUME109_ISSUE5_MONDAYAPRIL14_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 109, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb35164862,Object,20775-bb35164862-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/23/1984,,23-Jan-84,,1/23/1984,,20775-bb35164862-0-2.tgz,document-source,VOLUME51_ISSUE5_MONDAYJANUARY23_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 51, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb4062565v,Object,20775-bb4062565v-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,1/6/1975,,6-Jan-75,,1/6/1975,,20775-bb4062565v-0-2.tgz,document-source,VOLUME24_ISSUE1_MONDAYJANUARY6_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 24, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb38236487,Object,20775-bb38236487-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,10/20/1970,,20-Oct-70,,10/20/1970,,20775-bb38236487-0-2.tgz,document-source,VOLUME11_ISSUE7_TUESDAYOCTOBER20_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 11, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb59055835,Object,20775-bb59055835-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/25/1999,,25-Jan-99,,1/25/1999,,20775-bb59055835-0-2.tgz,document-source,VOLUME96_ISSUE7_MONDAYJANUARY25_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 96, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb04789115,Object,20775-bb04789115-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/9/1987,,9-Apr-87,,4/9/1987,,20775-bb04789115-0-2.tgz,document-source,VOLUME58_ISSUE44_THURSDAYAPRIL9_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 44",, +http://library.ucsd.edu/ark:/20775/bb5564278d,Object,20775-bb5564278d-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/2/1975,,2-May-75,,5/2/1975,,20775-bb5564278d-0-2.tgz,document-source,VOLUME25_ISSUE15_FRIDAYMAY2_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 25, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb80557718,Object,20775-bb80557718-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,9/26/1983,,26-Sep-83,,9/26/1983,,20775-bb80557718-0-2.tgz,document-source,VOLUME50_ISSUE2_MONDAYSEPTEMBER26_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 50, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb36871288,Object,20775-bb36871288-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/2/1995,,2-Nov-95,,11/2/1995,,20775-bb36871288-0-2.tgz,document-source,VOLUME86_ISSUE13_THURSDAYNOVEMBER2_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 86, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb2390187s,Object,20775-bb2390187s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/1/1993,,1-Apr-93,,4/1/1993,,20775-bb2390187s-0-2.tgz,document-source,VOLUME79_ISSUE2_THURSDAYAPRIL1_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 79, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb20830168,Object,20775-bb20830168-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,1/5/1998,,5-Jan-98,,1/5/1998,,20775-bb20830168-0-2.tgz,document-source,VOLUME93_ISSUE1_MONDAYJANUARY5_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 93, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb5905704q,Object,20775-bb5905704q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/26/2011,,26-May-11,,5/26/2011,,,,05_26_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 44, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb54961442,Object,20775-bb54961442-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/3/2011,,3-Mar-11,,3/3/2011,,,,03_03_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 38",, +http://library.ucsd.edu/ark:/20775/bb68612173,Object,20775-bb68612173-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/3/1994,,3-Nov-94,,11/3/1994,,20775-bb68612173-0-2.tgz,document-source,VOLUME83_ISSUE13_THURSDAYNOVEMBER3_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 83, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb95574928,Object,20775-bb95574928-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,1/16/1978,,16-Jan-78,,1/16/1978,,20775-bb95574928-0-2.tgz,document-source,VOLUME33_ISSUE4_MONDAYJANUARY16_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 33, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb4062566c,Object,20775-bb4062566c-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,11/10/1975,,10-Nov-75,,11/10/1975,,20775-bb4062566c-0-2.tgz,document-source,VOLUME26_ISSUE22_MONDAYNOVEMBER10_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 26, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb53253761,Object,20775-bb53253761-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,2/20/1986,,20-Feb-86,,2/20/1986,,20775-bb53253761-0-2.tgz,document-source,VOLUME57_ISSUE14_THURSDAYFEBRUARY20_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 57, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb75438242,Object,20775-bb75438242-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,10/10/1979,,10-Oct-79,,10/10/1979,,20775-bb75438242-0-2.tgz,document-source,VOLUME38_ISSUE14_WEDNESDAYOCTOBER10_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb65881796,Object,20775-bb65881796-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/21/2006,,21-Feb-06,,2/21/2006,,20775-bb65881796-0-2.tgz,document-source,TUESDAYFEBRUARY21_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 117, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb4916299w,Object,2014-10-30.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/30/2014,,30-Oct-14,,10/30/2014,,,,2014-10-30.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 9",,Newspaper +http://library.ucsd.edu/ark:/20775/bb5427760d,Object,20775-bb5427760d-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/16/1969,,16-May-69,,5/16/1969,,20775-bb5427760d-0-2.tgz,document-source,VOLUME7_ISSUE7_MAY16_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 7, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb20147584,Object,20775-bb20147584-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,11/17/2003,,17-Nov-03,,11/17/2003,,20775-bb20147584-0-2.tgz,document-source,VOLUME110_ISSUE15_MONDAYNOVEMBER17_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 110, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb5905582n,Object,20775-bb5905582n-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,Triton Times,The Guardian,UCSD Guardian,,,,,,,,,,,,,10/20/1978,,20-Oct-78,,10/20/1978,,20775-bb5905582n-0-2.tgz,document-source,VOLUME35_ISSUE13_FRIDAYOCTOBER20_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 35, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb1366288s,Object,20775-bb1366288s-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/11/1968,,11-Oct-68,,10/11/1968,,20775-bb1366288s-0-2.tgz,document-source,VOLUME5_ISSUE2_OCTOBER11_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 5, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb8328809m,Object,20775-bb8328809m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,11/21/1985,,21-Nov-85,,11/21/1985,,20775-bb8328809m-0-2.tgz,document-source,VOLUME56_ISSUE17_THURSDAYNOVEMBER21_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 56, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb6861218m,Object,20775-bb6861218m-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,4/5/1968,,5-Apr-68,,4/5/1968,,20775-bb6861218m-0-2.tgz,document-source,VOLUME4_ISSUE1_APRIL5_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 4, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb90796701,Object,20775-bb90796701-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,1/25/1990,,25-Jan-90,,1/25/1990,,20775-bb90796701-0-2.tgz,document-source,VOLUME69_ISSUE7_THURSDAYJANUARY25_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 69, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb9557493s,Object,20775-bb9557493s-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,9/24/1979,,24-Sep-79,,9/24/1979,,20775-bb9557493s-0-2.tgz,document-source,VOLUME38_ISSUE2_MONDAYSEPTEMBER24_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb10932476,Object,20775-bb10932476-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/7/1975,,7-Nov-75,,11/7/1975,,20775-bb10932476-0-2.tgz,document-source,VOLUME26_ISSUE21_FRIDAYNOVEMBER7_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb2868013s,Object,20775-bb2868013s-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,10/13/1967,,13-Oct-67,,10/13/1967,,20775-bb2868013s-0-2.tgz,document-source,VOLUME2_ISSUE2_OCTOBER13_1967.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 2, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb9352713h,Object,20775-bb9352713h-0-1.pdf,document-service,text,,The Guardian,,,,UCSD Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/8/1981,,8-Jan-81,,1/8/1981,,20775-bb9352713h-0-2.tgz,document-source,VOLUME42_ISSUE2_THURSDAYJANUARY8_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb5325375h,Object,20775-bb5325375h-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,3/16/1973,,16-Mar-73,,3/16/1973,,20775-bb5325375h-0-2.tgz,document-source,VOLUME18_ISSUE20_FRIDAYMARCH16_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 18, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb3516487k,Object,20775-bb3516487k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/13/1988,,13-Oct-88,,10/13/1988,,20775-bb3516487k-0-2.tgz,document-source,VOLUME65_ISSUE7_THURSDAYOCTOBER13_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 65, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb5188848p,Object,20775-bb5188848p-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,5/9/1979,,9-May-79,,5/9/1979,,20775-bb5188848p-0-2.tgz,document-source,VOLUME37_ISSUE17_WEDNESDAYMAY9_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb2458448v,Object,20775-bb2458448v-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,5/30/1985,,30-May-85,,5/30/1985,,20775-bb2458448v-0-2.tgz,document-source,VOLUME55_ISSUE18_THURSDAYMAY30_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 55, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb93527141,Object,20775-bb93527141-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/4/1969,,4-Apr-69,,4/4/1969,,20775-bb93527141-0-2.tgz,document-source,VOLUME7_ISSUE1_APRIL4_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 7, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb06495607,Object,20775-bb06495607-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,10/23/1973,,23-Oct-73,,10/23/1973,,20775-bb06495607-0-2.tgz,document-source,VOLUME20_ISSUE9_TUESDAYOCTOBER23_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 20, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb28680149,Object,20775-bb28680149-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,9/24/1984,,24-Sep-84,,9/24/1984,,20775-bb28680149-0-2.tgz,document-source,VOLUME53_ISSUE3_MONDAYSEPTEMBER24_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 53, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb6588178p,Object,20775-bb6588178p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/12/1990,,12-Feb-90,,2/12/1990,,20775-bb6588178p-0-2.tgz,document-source,VOLUME69_ISSUE12_MONDAYFEBRUARY12_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 69, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb13662899,Object,20775-bb13662899-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/22/1996,,22-Feb-96,,2/22/1996,,20775-bb13662899-0-2.tgz,document-source,VOLUME87_ISSUE14_THURSDAYFEBRUARY22_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 87, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb2083017s,Object,20775-bb2083017s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/11/2002,,11-Apr-02,,4/11/2002,,20775-bb2083017s-0-2.tgz,document-source,VOLUME106_ISSUE4_THURSDAYAPRIL11_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 106, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb23901868,Object,20775-bb23901868-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,1/22/1971,,22-Jan-71,,1/22/1971,,20775-bb23901868-0-2.tgz,document-source,VOLUME12_ISSUE6_FRIDAYJANUARY22_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 12, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb3653003g,Object,20775-bb3653003g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,2/10/2000,,10-Feb-00,,2/10/2000,,20775-bb3653003g-0-2.tgz,document-source,VOLUME99_ISSUE10_THURSDAYFEBRUARY10_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 99, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb7543823j,Object,20775-bb7543823j-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,1/29/1971,,29-Jan-71,,1/29/1971,,20775-bb7543823j-0-2.tgz,document-source,VOLUME12_ISSUE8_FRIDAYJANUARY29_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 12, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb7577947t,Object,20775-bb7577947t-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,11/12/1980,,12-Nov-80,,11/12/1980,,20775-bb7577947t-0-2.tgz,document-source,VOLUME41_ISSUE39_WEDNESDAYNOVEMBER12_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 39",, +http://library.ucsd.edu/ark:/20775/bb6246883b,Object,20775-bb6246883b-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,5/8/1973,,8-May-73,,5/8/1973,,20775-bb6246883b-0-2.tgz,document-source,VOLUME19_ISSUE11_TUESDAYMAY8_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 19, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb5359499s,Object,20775-bb5359499s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,12/5/1996,,5-Dec-96,,12/5/1996,,20775-bb5359499s-0-2.tgz,document-source,VOLUME89_ISSUE20_THURSDAYDECEMBER5_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 89, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb36530040,Object,20775-bb36530040-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,2/13/1997,,13-Feb-97,,2/13/1997,,20775-bb36530040-0-2.tgz,document-source,VOLUME90_ISSUE12_THURSDAYFEBRUARY13_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 90, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb4643251p,Object,2012-09-25.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/25/2012,,25-Sep-12,,9/25/2012,,,,2012-09-25.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 1",,Newspaper +http://library.ucsd.edu/ark:/20775/bb87383691,Object,20775-bb87383691-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Triton Times,Guardian,UCSD Guardian,,,,,,,,,,,,,10/15/1979,,15-Oct-79,,10/15/1979,,20775-bb87383691-0-2.tgz,document-source,VOLUME38_ISSUE17_MONDAYOCTOBER15_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb2458449c,Object,20775-bb2458449c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/18/1992,,18-May-92,,5/18/1992,,20775-bb2458449c-0-2.tgz,document-source,VOLUME76_ISSUE15_MONDAYMAY18_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 76, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb6246882t,Object,20775-bb6246882t-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,10/22/1990,,22-Oct-90,,10/22/1990,,20775-bb6246882t-0-2.tgz,document-source,VOLUME71_ISSUE12_MONDAYOCTOBER22_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 71, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb7236655z,Object,20775-bb7236655z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,3/2/1995,,2-Mar-95,,3/2/1995,,20775-bb7236655z-0-2.tgz,document-source,VOLUME84_ISSUE16_THURSDAYMARCH2_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 84, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb1639456b,Object,20775-bb1639456b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/2/2011,,2-May-11,,5/2/2011,,,,05_02_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 51",, +http://library.ucsd.edu/ark:/20775/bb95574949,Object,20775-bb95574949-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/3/1993,,3-May-93,,5/3/1993,,20775-bb95574949-0-2.tgz,document-source,VOLUME79_ISSUE11_MONDAYMAY3_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 79, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb68612194,Object,20775-bb68612194-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,5/8/1978,,8-May-78,,5/8/1978,,20775-bb68612194-0-2.tgz,document-source,VOLUME34_ISSUE16_MONDAYMAY8_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 34, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb3653002z,Object,20775-bb3653002z-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,10/24/1975,,24-Oct-75,,10/24/1975,,20775-bb3653002z-0-2.tgz,document-source,VOLUME26_ISSUE15_FRIDAYOCTOBER24_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb36871267,Object,20775-bb36871267-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/23/1988,,23-May-88,,5/23/1988,,20775-bb36871267-0-2.tgz,document-source,VOLUME64_ISSUE15_MONDAYMAY23_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 64, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb1707591h,Object,20775-bb1707591h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/29/1987,,29-Jan-87,,1/29/1987,,,,VOLUME58_ISSUE28_THURSDAYJANUARY29_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb24244440,Object,20775-bb24244440-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/19/2009,,19-Oct-09,,10/19/2009,,,,10_19_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb51888496,Object,20775-bb51888496-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,12/1/1972,,1-Dec-72,,12/1/1972,,20775-bb51888496-0-2.tgz,document-source,VOLUME17_ISSUE19_FRIDAYDECEMBER1_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 17, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb5427766h,Object,20775-bb5427766h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,11/18/2002,,18-Nov-02,,11/18/2002,,20775-bb5427766h-0-2.tgz,document-source,VOLUME107_ISSUE16_MONDAYNOVEMBER18_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 107, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb69294792,Object,20775-bb69294792-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,1/29/1974,,29-Jan-74,,1/29/1974,,20775-bb69294792-0-2.tgz,document-source,VOLUME21_ISSUE7_TUESDAYJANUARY29_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 21, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb64175342,Object,20775-bb64175342-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,3/11/2004,,11-Mar-04,,3/11/2004,,20775-bb64175342-0-2.tgz,document-source,VOLUME111_ISSUE20_THURSDAYMARCH11_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 111, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb01034775,Object,20775-bb01034775-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,11/25/1969,,25-Nov-69,,11/25/1969,,20775-bb01034775-0-2.tgz,document-source,VOLUME8_ISSUE9_NOVEMBER25_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 8, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb1127376x,Object,20775-bb1127376x-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,2/17/1978,,17-Feb-78,,2/17/1978,,20775-bb1127376x-0-2.tgz,document-source,VOLUME33_ISSUE18_FRIDAYFEBRUARY17_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 33, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb30045276,Object,20775-bb30045276-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/27/1994,,27-Oct-94,,10/27/1994,,20775-bb30045276-0-2.tgz,document-source,VOLUME83_ISSUE11_THURSDAYOCTOBER27_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 83, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb8977282q,Object,20775-bb8977282q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/10/1993,,10-May-93,,5/10/1993,,20775-bb8977282q-0-2.tgz,document-source,VOLUME79_ISSUE13_MONDAYMAY10_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 79, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb6417533j,Object,20775-bb6417533j-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,9/23/1991,,23-Sep-91,,9/23/1991,,20775-bb6417533j-0-2.tgz,document-source,VOLUME74_ISSUE1_MONDAYSEPTEMBER23_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 74, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb9352715j,Object,20775-bb9352715j-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,5/6/1980,,6-May-80,,5/6/1980,,20775-bb9352715j-0-2.tgz,document-source,VOLUME40_ISSUE27_TUESDAYMAY6_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb3516481g,Object,20775-bb3516481g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/8/2001,,8-Oct-01,,10/8/2001,,20775-bb3516481g-0-2.tgz,document-source,VOLUME104_ISSUE6_MONDAYOCTOBER8_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 104, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb2868011r,Object,20775-bb2868011r-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/18/1979,,18-May-79,,5/18/1979,,20775-bb2868011r-0-2.tgz,document-source,VOLUME37_ISSUE21_FRIDAYMAY18_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 37, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb10932497,Object,20775-bb10932497-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,10/24/1985,,24-Oct-85,,10/24/1985,,20775-bb10932497-0-2.tgz,document-source,VOLUME56_ISSUE9_THURSDAYOCTOBER24_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 56, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb12297719,Object,20775-bb12297719-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/13/2003,,13-Feb-03,,2/13/2003,,20775-bb12297719-0-2.tgz,document-source,VOLUME108_ISSUE12_THURSDAYFEBRUARY13_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 108, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb55302773,Object,20775-bb55302773-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,12/2/2010,,2-Dec-10,,12/2/2010,,,,12_02_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb1127377f,Object,20775-bb1127377f-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/1/1975,,1-Oct-75,,10/1/1975,,20775-bb1127377f-0-2.tgz,document-source,VOLUME26_ISSUE5_WEDNESDAYOCTOBER1_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 26, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb54277671,Object,20775-bb54277671-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,4/30/2001,,30-Apr-01,,4/30/2001,,20775-bb54277671-0-2.tgz,document-source,VOLUME103_ISSUE9_MONDAYAPRIL30_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 103, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb5973838h,Object,20775-bb5973838h-0-1.pdf,document-service,text,,The Guardian,,,,Daily Guardian,Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,1/19/1981,,19-Jan-81,,1/19/1981,,20775-bb5973838h-0-2.tgz,document-source,VOLUME42_ISSUE5_MONDAYJANUARY19_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb7577948b,Object,20775-bb7577948b-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,12/1/1994,,1-Dec-94,,12/1/1994,,20775-bb7577948b-0-2.tgz,document-source,VOLUME83_ISSUE20_THURSDAYDECEMBER1_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 83, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb7577949v,Object,20775-bb7577949v-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/14/1988,,14-Jan-88,,1/14/1988,,20775-bb7577949v-0-2.tgz,document-source,VOLUME59_ISSUE24_THURSDAYJANUARY14_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 59, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb3141175d,Object,20775-bb3141175d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/27/2008,,27-May-08,,5/27/2008,,,,05_27_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb8055774t,Object,20775-bb8055774t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/18/1993,,18-Oct-93,,10/18/1993,,20775-bb8055774t-0-2.tgz,document-source,VOLUME80_ISSUE8_MONDAYOCTOBER18_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 80, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb2014757m,Object,20775-bb2014757m-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/12/1971,,12-Feb-71,,2/12/1971,,20775-bb2014757m-0-2.tgz,document-source,VOLUME12_ISSUE12_FRIDAYFEBRUARY12_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 12, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb49158089,Object,20775-bb49158089-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,11/19/1971,,19-Nov-71,,11/19/1971,,20775-bb49158089-0-2.tgz,document-source,VOLUME14_ISSUE15_FRIDAYNOVEMBER19_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 14, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb1127504d,Object,20775-bb1127504d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/19/2009,,19-Feb-09,,2/19/2009,,,,02_19_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb0990864v,Object,20775-bb0990864v-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,6/4/1979,,4-Jun-79,,6/4/1979,,20775-bb0990864v-0-2.tgz,document-source,VOLUME37_ISSUE27_MONDAYJUNE4_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb59738391,Object,20775-bb59738391-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,4/15/1991,,15-Apr-91,,4/15/1991,,20775-bb59738391-0-2.tgz,document-source,VOLUME73_ISSUE5_MONDAYAPRIL15_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 73, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb2185413p,Object,20775-bb2185413p-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/23/1998,,23-Feb-98,,2/23/1998,,20775-bb2185413p-0-2.tgz,document-source,VOLUME93_ISSUE14_MONDAYFEBRUARY23_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 93, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb28680128,Object,20775-bb28680128-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/30/1991,,30-May-91,,5/30/1991,,20775-bb28680128-0-2.tgz,document-source,VOLUME73_ISSUE18_THURSDAYMAY30_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 73, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb3516480z,Object,20775-bb3516480z-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,1/23/1978,,23-Jan-78,,1/23/1978,,20775-bb3516480z-0-2.tgz,document-source,VOLUME33_ISSUE7_MONDAYJANUARY23_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 33, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb9147930t,Object,20775-bb9147930t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/23/2003,,23-Jan-03,,1/23/2003,,20775-bb9147930t-0-2.tgz,document-source,VOLUME108_ISSUE6_THURSDAYJANUARY23_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 108, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb73049126,Object,20775-bb73049126-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/24/1986,,24-Apr-86,,4/24/1986,,,,VOLUME58_ISSUE8_THURSDAYAPRIL24_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb7304911p,Object,20775-bb7304911p-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,9/24/1981,,24-Sep-81,,9/24/1981,,20775-bb7304911p-0-2.tgz,document-source,VOLUME44_ISSUE3_THURSDAYSEPTEMBER24_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 44, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb7885125t,Object,20775-bb7885125t-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,11/26/1984,,26-Nov-84,,11/26/1984,,20775-bb7885125t-0-2.tgz,document-source,VOLUME53_ISSUE20_MONDAYNOVEMBER26_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 53, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb0990865c,Object,20775-bb0990865c-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,12/1/1976,,1-Dec-76,,12/1/1976,,20775-bb0990865c-0-2.tgz,document-source,VOLUME29_ISSUE29_WEDNESDAYDECEMBER1_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 29, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb6246880s,Object,20775-bb6246880s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/30/1997,,30-Jan-97,,1/30/1997,,20775-bb6246880s-0-2.tgz,document-source,VOLUME90_ISSUE8_THURSDAYJANUARY30_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 90, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb89772837,Object,20775-bb89772837-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,2/6/1978,,6-Feb-78,,2/6/1978,,20775-bb89772837-0-2.tgz,document-source,VOLUME33_ISSUE13_MONDAYFEBRUARY6_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 33, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb43698565,Object,20775-bb43698565-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/5/2009,,5-Feb-09,,2/5/2009,,,,02_05_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb17075921,Object,20775-bb17075921-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/12/2006,,12-Oct-06,,10/12/2006,,,,THURSDAYOCTOBER12_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 119, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb74073013,Object,20775-bb74073013-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,5/2/1972,,2-May-72,,5/2/1972,,20775-bb74073013-0-2.tgz,document-source,VOLUME16_ISSUE11_TUESDAYMAY2_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 16, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb62470039,Object,20775-bb62470039-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/7/2011,,7-Mar-11,,3/7/2011,,,,03_07_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 39",, +http://library.ucsd.edu/ark:/20775/bb7885126b,Object,20775-bb7885126b-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/1/2004,,1-Nov-04,,11/1/2004,,20775-bb7885126b-0-2.tgz,document-source,VOLUME113_ISSUE12_MONDAYNOVEMBER1_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 113, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb5496181f,Object,20775-bb5496181f-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,5/17/2012,,17-May-12,,5/17/2012,,,,2012-05-17.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 54",, +http://library.ucsd.edu/ark:/20775/bb1093248q,Object,20775-bb1093248q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,11/28/2005,,28-Nov-05,,11/28/2005,,20775-bb1093248q-0-2.tgz,document-source,VOLUME116_ISSUE19_MONDAYNOVEMBER28_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 116, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb35164820,Object,20775-bb35164820-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/29/1975,,29-Oct-75,,10/29/1975,,20775-bb35164820-0-2.tgz,document-source,VOLUME26_ISSUE17_WEDNESDAYOCTOBER29_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 26, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb5427764g,Object,20775-bb5427764g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/6/1986,,6-Nov-86,,11/6/1986,,,,VOLUME58_ISSUE13_THURSDAYNOVEMBER6_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb0376646p,Object,20775-bb0376646p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/10/2011,,10-Jan-11,,1/10/2011,,,,01_10_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb0103964c,Object,2013-01-10.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/10/2013,,10-Jan-13,,1/10/2013,,,,2013-01-10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 22",,Newspaper +http://library.ucsd.edu/ark:/20775/bb51888475,Object,20775-bb51888475-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,5/24/1990,,24-May-90,,5/24/1990,,20775-bb51888475-0-2.tgz,document-source,VOLUME70_ISSUE16_THURSDAYMAY24_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 70, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb8533593h,Object,20775-bb8533593h-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/11/1977,,11-Nov-77,,11/11/1977,,20775-bb8533593h-0-2.tgz,document-source,VOLUME32_ISSUE22_FRIDAYNOVEMBER11_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 32, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb64175321,Object,20775-bb64175321-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/28/1982,,28-Oct-82,,10/28/1982,,20775-bb64175321-0-2.tgz,document-source,VOLUME47_ISSUE11_THURSDAYOCTOBER28_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb9079833j,Object,20775-bb9079833j-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,5/10/2012,,10-May-12,,5/10/2012,,,,2012-05-10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 52",, +http://library.ucsd.edu/ark:/20775/bb7202522q,Object,20775-bb7202522q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/20/1997,,20-Nov-97,,11/20/1997,,20775-bb7202522q-0-2.tgz,document-source,VOLUME92_ISSUE17_THURSDAYNOVEMBER20_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 92, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb1127378z,Object,20775-bb1127378z-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,3/14/1979,,14-Mar-79,,3/14/1979,,20775-bb1127378z-0-2.tgz,document-source,VOLUME36_ISSUE28_WEDNESDAYMARCH14_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 36, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb01034796,Object,20775-bb01034796-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,5/20/1980,,20-May-80,,5/20/1980,,20775-bb01034796-0-2.tgz,document-source,VOLUME40_ISSUE37_TUESDAYMAY20_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 37",, +http://library.ucsd.edu/ark:/20775/bb3004528q,Object,20775-bb3004528q-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,4/8/1993,,8-Apr-93,,4/8/1993,,20775-bb3004528q-0-2.tgz,document-source,VOLUME79_ISSUE4_THURSDAYAPRIL8_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 79, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb3857779f,Object,20775-bb3857779f-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/5/1981,,5-Oct-81,,10/5/1981,,20775-bb3857779f-0-2.tgz,document-source,VOLUME44_ISSUE6_MONDAYOCTOBER5_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 44, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb6417531h,Object,20775-bb6417531h-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,1/31/1977,,31-Jan-77,,1/31/1977,,20775-bb6417531h-0-2.tgz,document-source,VOLUME30_ISSUE10_MONDAYJANUARY31_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 30, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb3516483h,Object,20775-bb3516483h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/17/1983,,17-Jan-83,,1/17/1983,,20775-bb3516483h-0-2.tgz,document-source,VOLUME48_ISSUE5_MONDAYJANUARY17_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb5325371f,Object,20775-bb5325371f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/30/1989,,30-Nov-89,,11/30/1989,,20775-bb5325371f-0-2.tgz,document-source,VOLUME68_ISSUE20_THURSDAYNOVEMBER30_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 68, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb72025237,Object,20775-bb72025237-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,6/2/1983,,2-Jun-83,,6/2/1983,,20775-bb72025237-0-2.tgz,document-source,VOLUME49_ISSUE18_THURSDAYJUNE2_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 49, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb30045297,Object,20775-bb30045297-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,11/29/2004,,29-Nov-04,,11/29/2004,,20775-bb30045297-0-2.tgz,document-source,VOLUME113_ISSUE18_MONDAYNOVEMBER29_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 113, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb5427763z,Object,20775-bb5427763z-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/14/2000,,14-Feb-00,,2/14/2000,,20775-bb5427763z-0-2.tgz,document-source,VOLUME99_ISSUE9_MONDAYFEBRUARY14_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 99, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb29704020,Object,20775-bb29704020-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,4/29/1985,,29-Apr-85,,4/29/1985,,20775-bb29704020-0-2.tgz,document-source,VOLUME55_ISSUE9_MONDAYAPRIL29_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 55, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb54277650,Object,20775-bb54277650-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/8/1978,,8-Nov-78,,11/8/1978,,20775-bb54277650-0-2.tgz,document-source,VOLUME35_ISSUE21_WEDNESDAYNOVEMBER8_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 35, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb7407300k,Object,20775-bb7407300k-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,10/27/1970,,27-Oct-70,,10/27/1970,,20775-bb7407300k-0-2.tgz,document-source,VOLUME11_ISSUE9_TUESDAYOCTOBER27_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 11, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb9147931b,Object,20775-bb9147931b-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,2/26/1971,,26-Feb-71,,2/26/1971,,20775-bb9147931b-0-2.tgz,document-source,VOLUME12_ISSUE16_FRIDAYFEBRUARY26_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 12, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb62468819,Object,20775-bb62468819-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,3/10/1994,,10-Mar-94,,3/10/1994,,20775-bb62468819-0-2.tgz,document-source,VOLUME81_ISSUE20_THURSDAYMARCH10_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 81, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb3687129s,Object,20775-bb3687129s-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,9/25/1989,,25-Sep-89,,9/25/1989,,20775-bb3687129s-0-2.tgz,document-source,VOLUME68_ISSUE2_MONDAYSEPTEMBER25_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 68, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb3857778x,Object,20775-bb3857778x-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,10/31/1975,,31-Oct-75,,10/31/1975,,20775-bb3857778x-0-2.tgz,document-source,VOLUME26_ISSUE18_FRIDAYOCTOBER31_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb1127379g,Object,20775-bb1127379g-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/9/1980,,9-Jan-80,,1/9/1980,,20775-bb1127379g-0-2.tgz,document-source,VOLUME39_ISSUE3_WEDNESDAYJANUARY9_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 39, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb5325370x,Object,20775-bb5325370x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,10/15/1984,,15-Oct-84,,10/15/1984,,20775-bb5325370x-0-2.tgz,document-source,VOLUME53_ISSUE9_MONDAYOCTOBER15_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 53, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb85335941,Object,20775-bb85335941-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/23/1984,,23-Feb-84,,2/23/1984,,20775-bb85335941-0-2.tgz,document-source,VOLUME51_ISSUE14_THURSDAYFEBRUARY23_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 51, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb0990862t,Object,20775-bb0990862t-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/24/1975,,24-Nov-75,,11/24/1975,,20775-bb0990862t-0-2.tgz,document-source,VOLUME26_ISSUE28_MONDAYNOVEMBER24_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 26, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb0103476n,Object,20775-bb0103476n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,1/24/2005,,24-Jan-05,,1/24/2005,,20775-bb0103476n-0-2.tgz,document-source,VOLUME114_ISSUE7_MONDAYJANUARY24_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 114, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb0478912p,Object,20775-bb0478912p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/4/1992,,4-Jun-92,,6/4/1992,,20775-bb0478912p-0-2.tgz,document-source,VOLUME76_ISSUE20_THURSDAYJUNE4_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 76, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb4267468q,Object,20775-bb4267468q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/22/2011,,22-Sep-11,,9/22/2011,,,,09_22_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb8055772s,Object,20775-bb8055772s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/7/1994,,7-Feb-94,,2/7/1994,,20775-bb8055772s-0-2.tgz,document-source,VOLUME81_ISSUE11_MONDAYFEBRUARY7_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 81, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb2014759n,Object,20775-bb2014759n-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,3/31/1972,,31-Mar-72,,3/31/1972,,20775-bb2014759n-0-2.tgz,document-source,VOLUME16_ISSUE2_FRIDAYMARCH31_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 16, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb28680107,Object,20775-bb28680107-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,1/21/1972,,21-Jan-72,,1/21/1972,,20775-bb28680107-0-2.tgz,document-source,VOLUME15_ISSUE6_JANUARY21_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 15, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb75780764,Object,20775-bb75780764-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/9/2009,,9-Apr-09,,4/9/2009,,,,04_09_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb2287796m,Object,20775-bb2287796m-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,11/29/1978,,29-Nov-78,,11/29/1978,,20775-bb2287796m-0-2.tgz,document-source,VOLUME35_ISSUE29_WEDNESDAYNOVEMBER29_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 35, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb5564279x,Object,20775-bb5564279x-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,UCSD Guardian,Triton Times,The Guardian,,,,,,,,,,,,,4/25/1979,,25-Apr-79,,4/25/1979,,20775-bb5564279x-0-2.tgz,document-source,VOLUME37_ISSUE11_WEDNESDAYAPRIL25_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb0308384d,Object,20775-bb0308384d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/15/2007,,15-Oct-07,,10/15/2007,,,,10_15_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb9147932v,Object,20775-bb9147932v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,1/10/2000,,10-Jan-00,,1/10/2000,,20775-bb9147932v-0-2.tgz,document-source,VOLUME99_ISSUE1_MONDAYJANUARY10_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 99, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb2970400z,Object,20775-bb2970400z-0-1.pdf,document-service,text,,The Guardian,,,,Daily Guardian,Triton Times,UCSD Guardian,Guardian,,,,,,,,,,,,,2/9/1981,,9-Feb-81,,2/9/1981,,20775-bb2970400z-0-2.tgz,document-source,VOLUME42_ISSUE11_MONDAYFEBRUARY9_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb2970401g,Object,20775-bb2970401g-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,5/20/1977,,20-May-77,,5/20/1977,,20775-bb2970401g-0-2.tgz,document-source,VOLUME31_ISSUE21_FRIDAYMAY20_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 31, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb7304913q,Object,20775-bb7304913q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,6/2/1988,,2-Jun-88,,6/2/1988,,20775-bb7304913q-0-2.tgz,document-source,VOLUME64_ISSUE18_THURSDAYJUNE2_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 64, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb0990863b,Object,20775-bb0990863b-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,11/14/1977,,14-Nov-77,,11/14/1977,,20775-bb0990863b-0-2.tgz,document-source,VOLUME32_ISSUE23_MONDAYNOVEMBER14_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 23",, +http://library.ucsd.edu/ark:/20775/bb22877974,Object,20775-bb22877974-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/13/2000,,13-Apr-00,,4/13/2000,,20775-bb22877974-0-2.tgz,document-source,VOLUME100_ISSUE4_THURSDAYAPRIL13_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 100, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb80557739,Object,20775-bb80557739-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/15/1976,,15-Oct-76,,10/15/1976,,20775-bb80557739-0-2.tgz,document-source,VOLUME29_ISSUE10_FRIDAYOCTOBER15_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 29, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb2390189t,Object,20775-bb2390189t-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/7/1976,,7-Apr-76,,4/7/1976,,20775-bb2390189t-0-2.tgz,document-source,VOLUME28_ISSUE5_WEDNESDAYAPRIL7_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 28, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb35164841,Object,20775-bb35164841-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,UCSD Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/1/1979,,1-Nov-79,,11/1/1979,,20775-bb35164841-0-2.tgz,document-source,VOLUME38_ISSUE30_THURSDAYNOVEMBER1_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 30",, +http://library.ucsd.edu/ark:/20775/bb74073034,Object,20775-bb74073034-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,4/6/1979,,6-Apr-79,,4/6/1979,,20775-bb74073034-0-2.tgz,document-source,VOLUME37_ISSUE3_FRIDAYAPRIL6_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb17075900,Object,20775-bb17075900-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/14/1987,,14-May-87,,5/14/1987,,20775-bb17075900-0-2.tgz,document-source,VOLUME58_ISSUE54_THURSDAYMAY14_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 54",, +http://library.ucsd.edu/ark:/20775/bb8943157m,Object,20775-bb8943157m-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,UCSD Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/30/1979,,30-May-79,,5/30/1979,,20775-bb8943157m-0-2.tgz,document-source,VOLUME37_ISSUE25_WEDNESDAYMAY30_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb8806627s,Object,20775-bb8806627s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,12/6/1999,,6-Dec-99,,12/6/1999,,20775-bb8806627s-0-2.tgz,document-source,VOLUME98_ISSUE19_MONDAYDECEMBER6_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 98, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb31751803,Object,20775-bb31751803-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/29/1996,,29-Jan-96,,1/29/1996,,20775-bb31751803-0-2.tgz,document-source,VOLUME87_ISSUE7_MONDAYJANUARY29_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 87, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb7885121r,Object,20775-bb7885121r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,6/1/1992,,1-Jun-92,,6/1/1992,,20775-bb7885121r-0-2.tgz,document-source,VOLUME76_ISSUE19_MONDAYJUNE1_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 76, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb8055766c,Object,20775-bb8055766c-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/27/1970,,27-Feb-70,,2/27/1970,,20775-bb8055766c-0-2.tgz,document-source,VOLUME9_ISSUE8_FEBRUARY27_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 9, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb22877995,Object,20775-bb22877995-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Triton Times,UCSD Guardian,Guardian,,,,,,,,,,,,,10/7/1980,,7-Oct-80,,10/7/1980,,20775-bb22877995-0-2.tgz,document-source,VOLUME41_ISSUE13_TUESDAYOCTOBER7_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb83970742,Object,20775-bb83970742-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,1/21/1992,,21-Jan-92,,1/21/1992,,20775-bb83970742-0-2.tgz,document-source,VOLUME75_ISSUE5_TUESDAYJANUARY21_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 75, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb07178175,Object,20775-bb07178175-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,1/27/2000,,27-Jan-00,,1/27/2000,,20775-bb07178175-0-2.tgz,document-source,VOLUME99_ISSUE5_THURSDAYJANUARY27_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 99, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb39260421,Object,20775-bb39260421-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,9/25/1974,,25-Sep-74,,9/25/1974,,20775-bb39260421-0-2.tgz,document-source,VOLUME23_ISSUE2_WEDNESDAYSEPTEMBER25_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 23, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb77827290,Object,20775-bb77827290-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,11/16/1981,,16-Nov-81,,11/16/1981,,20775-bb77827290-0-2.tgz,document-source,VOLUME44_ISSUE18_MONDAYNOVEMBER16_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 44, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb8397073j,Object,20775-bb8397073j-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,3/9/1979,,9-Mar-79,,3/9/1979,,20775-bb8397073j-0-2.tgz,document-source,VOLUME36_ISSUE26_FRIDAYMARCH9_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 36, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb64175274,Object,20775-bb64175274-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/26/1982,,26-Apr-82,,4/26/1982,,20775-bb64175274-0-2.tgz,document-source,VOLUME46_ISSUE9_MONDAYAPRIL26_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb2287798n,Object,20775-bb2287798n-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,9/29/1983,,29-Sep-83,,9/29/1983,,20775-bb2287798n-0-2.tgz,document-source,VOLUME50_ISSUE3_THURSDAYSEPTEMBER29_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 50, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb3721261m,Object,20775-bb3721261m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,2/3/2005,,3-Feb-05,,2/3/2005,,20775-bb3721261m-0-2.tgz,document-source,VOLUME114_ISSUE10_THURSDAYFEBRUARY3_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 114, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb89431584,Object,20775-bb89431584-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,9/27/2001,,27-Sep-01,,9/27/2001,,20775-bb89431584-0-2.tgz,document-source,VOLUME104_ISSUE3_THURSDAYSEPTEMBER27_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 104, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb5393631p,Object,20775-bb5393631p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,10/18/2001,,18-Oct-01,,10/18/2001,,20775-bb5393631p-0-2.tgz,document-source,VOLUME104_ISSUE9_THURSDAYOCTOBER18_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 104, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb65540480,Object,20775-bb65540480-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,Triton Times,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,4/30/1979,,30-Apr-79,,4/30/1979,,20775-bb65540480-0-2.tgz,document-source,VOLUME37_ISSUE13_MONDAYAPRIL30_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 37, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb0001092k,Object,20775-bb0001092k-0-1.pdf,document-service,text,,The Guardian,,,,Daily Guardian,Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,2/26/1981,,26-Feb-81,,2/26/1981,,20775-bb0001092k-0-2.tgz,document-source,VOLUME42_ISSUE16_THURSDAYFEBRUARY26_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb2629100d,Object,20775-bb2629100d-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,5/31/1984,,31-May-84,,5/31/1984,,20775-bb2629100d-0-2.tgz,document-source,VOLUME52_ISSUE18_THURSDAYMAY31_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 52, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb20830215,Object,20775-bb20830215-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,4/10/1980,,10-Apr-80,,4/10/1980,,20775-bb20830215-0-2.tgz,document-source,VOLUME40_ISSUE9_THURSDAYAPRIL10_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb04789068,Object,20775-bb04789068-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,4/20/2006,,20-Apr-06,,4/20/2006,,20775-bb04789068-0-2.tgz,document-source,THURSDAYAPRIL20_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 118, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb88066289,Object,20775-bb88066289-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/16/1984,,16-Apr-84,,4/16/1984,,20775-bb88066289-0-2.tgz,document-source,VOLUME52_ISSUE5_MONDAYAPRIL16_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 52, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb67589559,Object,20775-bb67589559-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/29/2007,,29-Nov-07,,11/29/2007,,,,11_29_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb0717816n,Object,20775-bb0717816n-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,1/26/1971,,26-Jan-71,,1/26/1971,,20775-bb0717816n-0-2.tgz,document-source,VOLUME12_ISSUE7_TUESDAYJANUARY26_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 12, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb78851228,Object,20775-bb78851228-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/15/1977,,15-Apr-77,,4/15/1977,,20775-bb78851228-0-2.tgz,document-source,VOLUME31_ISSUE6_FRIDAYAPRIL15_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 31, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb7782728g,Object,20775-bb7782728g-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,3/30/1987,,30-Mar-87,,3/30/1987,,20775-bb7782728g-0-2.tgz,document-source,VOLUME58_ISSUE42_MONDAYMARCH30_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 42",, +http://library.ucsd.edu/ark:/20775/bb8601852s,Object,20775-bb8601852s-0-1.pdf,document-service,text,,The Guardian,,,,Daily Guardian,UCSD Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/9/1981,,9-Apr-81,,4/9/1981,,20775-bb8601852s-0-2.tgz,document-source,VOLUME43_ISSUE4_THURSDAYAPRIL9_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb5086464m,Object,20775-bb5086464m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,3/8/2004,,8-Mar-04,,3/8/2004,,20775-bb5086464m-0-2.tgz,document-source,VOLUME111_ISSUE19_MONDAYMARCH8_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 111, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb6963735f,Object,20775-bb6963735f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/1/2009,,1-Jun-09,,6/1/2009,,,,06_01_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb6554046z,Object,20775-bb6554046z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,4/18/2002,,18-Apr-02,,4/18/2002,,20775-bb6554046z-0-2.tgz,document-source,VOLUME106_ISSUE6_THURSDAYAPRIL18_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 106, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb91820569,Object,20775-bb91820569-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/25/1994,,25-Apr-94,,4/25/1994,,20775-bb91820569-0-2.tgz,document-source,VOLUME82_ISSUE9_MONDAYAPRIL25_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 82, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb6895833g,Object,2012-10-15.pdf,document-service,text,eng - English,UCSD Guardian,,,,,,,,,,,,,,,,,,,,10/15/2012,,15-Oct-12,,10/15/2012,,,,2012-10-15.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 6",,Newspaper +http://library.ucsd.edu/ark:/20775/bb37212645,Object,20775-bb37212645-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,11/22/1974,,22-Nov-74,,11/22/1974,,20775-bb37212645-0-2.tgz,document-source,VOLUME23_ISSUE27_FRIDAYNOVEMBER22_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 23, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb00010954,Object,20775-bb00010954-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/2/2001,,2-Apr-01,,4/2/2001,,20775-bb00010954-0-2.tgz,document-source,VOLUME103_ISSUE1_MONDAYAPRIL2_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 103, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb26973554,Object,20775-bb26973554-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/16/1999,,16-Feb-99,,2/16/1999,,20775-bb26973554-0-2.tgz,document-source,VOLUME96_ISSUE13_TUESDAYFEBRUARY16_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 96, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb6554047g,Object,20775-bb6554047g-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/8/1974,,8-Feb-74,,2/8/1974,,20775-bb6554047g-0-2.tgz,document-source,VOLUME21_ISSUE10_FRIDAYFEBRUARY8_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 21, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb23219277,Object,20775-bb23219277-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,12/6/1968,,6-Dec-68,,12/6/1968,,20775-bb23219277-0-2.tgz,document-source,VOLUME5_ISSUE10_DECEMBER6_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 5, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb68272172,Object,20775-bb68272172-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/25/2010,,25-Jan-10,,1/25/2010,,,,01_25_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb3926525v,Object,2013-10-14.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/14/2013,,14-Oct-13,,10/14/2013,,,,2013-10-14.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 6",,Newspaper +http://library.ucsd.edu/ark:/20775/bb0478905r,Object,20775-bb0478905r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,9/19/1995,,19-Sep-95,,9/19/1995,,20775-bb0478905r-0-2.tgz,document-source,VOLUME86_ISSUE1_TUESDAYSEPTEMBER19_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 86, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb4915809t,Object,20775-bb4915809t-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,5/28/1980,,28-May-80,,5/28/1980,,20775-bb4915809t-0-2.tgz,document-source,VOLUME40_ISSUE42_WEDNESDAYMAY28_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 42",, +http://library.ucsd.edu/ark:/20775/bb2083020n,Object,20775-bb2083020n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/25/2005,,25-Apr-05,,4/25/2005,,20775-bb2083020n-0-2.tgz,document-source,VOLUME115_ISSUE9_MONDAYAPRIL25_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 115, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb8806629t,Object,20775-bb8806629t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,2/3/1997,,3-Feb-97,,2/3/1997,,20775-bb8806629t-0-2.tgz,document-source,VOLUME90_ISSUE9_MONDAYFEBRUARY3_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 90, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb9455095v,Object,20775-bb9455095v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,6/1/1999,,1-Jun-99,,6/1/1999,,20775-bb9455095v-0-2.tgz,document-source,VOLUME97_ISSUE19_TUESDAYJUNE1_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 97, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb9421457z,Object,2014-2015ssg.pdf,document-service,text,eng - English,UCSD Guardian,,Student Survival Guide 2014-15,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/30/2014,,30-Sep-14,,9/30/2014,,,,2014-2015ssg.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,,Newspaper +http://library.ucsd.edu/ark:/20775/bb50864654,Object,20775-bb50864654-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,4/22/1977,,22-Apr-77,,4/22/1977,,20775-bb50864654-0-2.tgz,document-source,VOLUME31_ISSUE9_FRIDAYAPRIL22_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 31, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb39260442,Object,20775-bb39260442-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/18/2005,,18-Jan-05,,1/18/2005,,20775-bb39260442-0-2.tgz,document-source,VOLUME114_ISSUE5_TUESDAYJANUARY18_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 114, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb83970721,Object,20775-bb83970721-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,10/20/1972,,20-Oct-72,,10/20/1972,,20775-bb83970721-0-2.tgz,document-source,VOLUME17_ISSUE8_FRIDAYOCTOBER20_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 17, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb7885123s,Object,20775-bb7885123s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/12/1983,,12-May-83,,5/12/1983,,20775-bb7885123s-0-2.tgz,document-source,VOLUME49_ISSUE12_THURSDAYMAY12_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 49, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb5223466t,Object,2013-10-10.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/10/2013,,10-Oct-13,,10/10/2013,,,,2013-10-10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 5",,Newspaper +http://library.ucsd.edu/ark:/20775/bb66223099,Object,20775-bb66223099-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,10/14/1991,,14-Oct-91,,10/14/1991,,20775-bb66223099-0-2.tgz,document-source,VOLUME74_ISSUE6_MONDAYOCTOBER14_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 74, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb6622308s,Object,20775-bb6622308s-0-1.pdf,document-service,text,,The Guardian,,,,Daily Guardian,Triton Times,Guardian,UCSD Guardian,,,,,,,,,,,,,2/2/1981,,2-Feb-81,,2/2/1981,,20775-bb6622308s-0-2.tgz,document-source,VOLUME42_ISSUE10_THURSDAYFEBRUARY2_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb8397071h,Object,20775-bb8397071h-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/7/1974,,7-Jun-74,,6/7/1974,,20775-bb8397071h-0-2.tgz,document-source,VOLUME22_ISSUE20_FRIDAYJUNE7_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 22, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb6792956v,Object,20775-bb6792956v-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,11/17/1970,,17-Nov-70,,11/17/1970,,20775-bb6792956v-0-2.tgz,document-source,VOLUME11_ISSUE15_TUESDAYNOVEMBER17_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 11, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb02059961,Object,20775-bb02059961-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/11/2008,,11-Feb-08,,2/11/2008,,,,02_11_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb40625608,Object,20775-bb40625608-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,5/5/1983,,5-May-83,,5/5/1983,,20775-bb40625608-0-2.tgz,document-source,VOLUME49_ISSUE10_THURSDAYMAY5_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 49, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb9455096c,Object,20775-bb9455096c-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/10/1969,,10-Oct-69,,10/10/1969,,20775-bb9455096c-0-2.tgz,document-source,VOLUME8_ISSUE2_FRIDAYOCTOBER3_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 8, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb0001094m,Object,20775-bb0001094m-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,9/27/1979,,27-Sep-79,,9/27/1979,,20775-bb0001094m-0-2.tgz,document-source,VOLUME38_ISSUE5_THURSDAYSEPTEMBER27_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb3721263n,Object,20775-bb3721263n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,6/7/1984,,7-Jun-84,,6/7/1984,,20775-bb3721263n-0-2.tgz,document-source,VOLUME52_ISSUE20_THURSDAYJUNE7_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 52, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb39943007,Object,20775-bb39943007-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,4/18/1996,,18-Apr-96,,4/18/1996,,20775-bb39943007-0-2.tgz,document-source,VOLUME88_ISSUE6_THURSDAYAPRIL18_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 88, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb8601855b,Object,20775-bb8601855b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/1/1986,,1-May-86,,5/1/1986,,,,VOLUME58_ISSUE10_THURSDAYMAY1_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb55301502,Object,20775-bb55301502-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,1/19/1973,,19-Jan-73,,1/19/1973,,20775-bb55301502-0-2.tgz,document-source,VOLUME18_ISSUE4_FRIDAYJANUARY19_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 18, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb8431328n,Object,20775-bb8431328n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/3/2011,,3-Nov-11,,11/3/2011,,,,11_03_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb78851249,Object,20775-bb78851249-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/28/1987,,28-May-87,,5/28/1987,,20775-bb78851249-0-2.tgz,document-source,VOLUME58_ISSUE58_THURSDAYMAY28_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 58",, +http://library.ucsd.edu/ark:/20775/bb96257475,Object,20775-bb96257475-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,11/30/2000,,30-Nov-00,,11/30/2000,,20775-bb96257475-0-2.tgz,document-source,VOLUME101_ISSUE20_THURSDAYNOVEMBER30_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 101, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb20830236,Object,20775-bb20830236-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,5/21/1998,,21-May-98,,5/21/1998,,20775-bb20830236-0-2.tgz,document-source,VOLUME94_ISSUE16_THURSDAYMAY21_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 94, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb6246879z,Object,20775-bb6246879z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,11/11/1993,,11-Nov-93,,11/11/1993,,20775-bb6246879z-0-2.tgz,document-source,VOLUME80_ISSUE15_THURSDAYNOVEMBER11_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 80, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb2049378h,Object,2014-04-21.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/21/2014,,21-Apr-14,,4/21/2014,,,,2014-04-21.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 47",,Newspaper +http://library.ucsd.edu/ark:/20775/bb8601854t,Object,20775-bb8601854t-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,4/20/1977,,20-Apr-77,,4/20/1977,,20775-bb8601854t-0-2.tgz,document-source,VOLUME31_ISSUE8_WEDNESDAYAPRIL20_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 31, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb6690570r,Object,20775-bb6690570r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/1/1982,,1-Apr-82,,4/1/1982,,20775-bb6690570r-0-2.tgz,document-source,VOLUME46_ISSUE2_THURSDAYAPRIL1_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb5086462k,Object,20775-bb5086462k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/7/2002,,7-Feb-02,,2/7/2002,,20775-bb5086462k-0-2.tgz,document-source,VOLUME105_ISSUE10_THURSDAYFEBRUARY7_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 105, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb3926041h,Object,20775-bb3926041h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,1/4/1988,,4-Jan-88,,1/4/1988,,20775-bb3926041h-0-2.tgz,document-source,VOLUME59_ISSUE21_MONDAYJANUARY4_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 59, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb23219298,Object,20775-bb23219298-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/12/2006,,12-Jan-06,,1/12/2006,,20775-bb23219298-0-2.tgz,document-source,THURSDAYJANUARY12_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 117, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb2731977d,Object,2014-02-10.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/10/2014,,10-Feb-14,,2/10/2014,,,,2014-02-10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 31",,Newspaper +http://library.ucsd.edu/ark:/20775/bb26973575,Object,20775-bb26973575-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,2/13/1976,,13-Feb-76,,2/13/1976,,20775-bb26973575-0-2.tgz,document-source,VOLUME27_ISSUE18_FRIDAYFEBRUARY13_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 27, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb77487649,Object,20775-bb77487649-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,1/26/2012,,26-Jan-12,,1/26/2012,,,,2012-01-26.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 26",, +http://library.ucsd.edu/ark:/20775/bb6554045f,Object,20775-bb6554045f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/3/2005,,3-Oct-05,,10/3/2005,,20775-bb6554045f-0-2.tgz,document-source,VOLUME116_ISSUE4_MONDAYOCTOBER3_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 116, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb66905718,Object,20775-bb66905718-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/19/1990,,19-Apr-90,,4/19/1990,,20775-bb66905718-0-2.tgz,document-source,VOLUME70_ISSUE6_THURSDAYAPRIL19_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 70, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb53936326,Object,20775-bb53936326-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,4/5/2004,,5-Apr-04,,4/5/2004,,20775-bb53936326-0-2.tgz,document-source,VOLUME112_ISSUE3_MONDAYAPRIL5_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 112, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb3960658b,Object,2014-10-06.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/6/2014,,6-Oct-14,,10/6/2014,,,,2014-10-06.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 48, Issue 2",,Newspaper +http://library.ucsd.edu/ark:/20775/bb0171864r,Object,20775-bb0171864r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/21/2009,,21-May-09,,5/21/2009,,,,05_21_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb2083022p,Object,20775-bb2083022p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,9/29/2003,,29-Sep-03,,9/29/2003,,20775-bb2083022p-0-2.tgz,document-source,VOLUME110_ISSUE2_MONDAYSEPTEMBER29_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 110, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb10932502,Object,20775-bb10932502-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,11/21/1969,,21-Nov-69,,11/21/1969,,20775-bb10932502-0-2.tgz,document-source,VOLUME8_ISSUE8_NOVEMBER21_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 8, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb8772625d,Object,20775-bb8772625d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/31/2011,,31-Oct-11,,10/31/2011,,,,10_31_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb7270777f,Object,20775-bb7270777f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/16/1988,,16-May-88,,5/16/1988,,20775-bb7270777f-0-2.tgz,document-source,VOLUME64_ISSUE13_MONDAYMAY16_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 64, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb50864633,Object,20775-bb50864633-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,11/3/1972,,3-Nov-72,,11/3/1972,,20775-bb50864633-0-2.tgz,document-source,VOLUME17_ISSUE12_FRIDAYNOVEMBER3_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 17, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb9182059v,Object,20775-bb9182059v-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,4/19/1978,,19-Apr-78,,4/19/1978,,20775-bb9182059v-0-2.tgz,document-source,VOLUME34_ISSUE8_WEDNESDAYAPRIL19_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 34, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb8977277t,Object,20775-bb8977277t-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/11/1969,,11-Apr-69,,4/11/1969,,20775-bb8977277t-0-2.tgz,document-source,VOLUME7_ISSUE2_APRIL11_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 7, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb9625748p,Object,20775-bb9625748p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/20/1990,,20-Feb-90,,2/20/1990,,20775-bb9625748p-0-2.tgz,document-source,VOLUME69_ISSUE14_TUESDAYFEBRUARY20_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 69, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb4062561s,Object,20775-bb4062561s-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/17/1978,,17-Apr-78,,4/17/1978,,20775-bb4062561s-0-2.tgz,document-source,VOLUME34_ISSUE7_MONDAYAPRIL17_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 34, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb2253669g,Object,20775-bb2253669g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/7/2002,,7-Jan-02,,1/7/2002,,20775-bb2253669g-0-2.tgz,document-source,VOLUME105_ISSUE1_MONDAYJANUARY7_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 105, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb7134267h,Object,20775-bb7134267h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,1/11/1990,,11-Jan-90,,1/11/1990,,20775-bb7134267h-0-2.tgz,document-source,VOLUME69_ISSUE3_THURSDAYJANUARY11_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 69, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb39943028,Object,20775-bb39943028-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/7/2004,,7-Oct-04,,10/7/2004,,20775-bb39943028-0-2.tgz,document-source,VOLUME113_ISSUE5_THURSDAYOCTOBER7_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 113, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb40625629,Object,20775-bb40625629-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,5/25/1979,,25-May-79,,5/25/1979,,20775-bb40625629-0-2.tgz,document-source,VOLUME37_ISSUE24_FRIDAYMAY25_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 37, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb0035224x,Object,20775-bb0035224x-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,UCSD Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/12/1979,,12-Feb-79,,2/12/1979,,20775-bb0035224x-0-2.tgz,document-source,VOLUME36_ISSUE16_MONDAYFEBRUARY12_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 36, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb9421452c,Object,2013-05-06.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/6/2013,,6-May-13,,5/6/2013,,,,2013-05-06.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 51",,Newspaper +http://library.ucsd.edu/ark:/20775/bb39260463,Object,20775-bb39260463-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,6/6/1996,,6-Jun-96,,6/6/1996,,20775-bb39260463-0-2.tgz,document-source,VOLUME88_ISSUE20_THURSDAYJUNE6_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 88, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb8977278b,Object,20775-bb8977278b-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,5/12/1978,,12-May-78,,5/12/1978,,20775-bb8977278b-0-2.tgz,document-source,VOLUME34_ISSUE18_FRIDAYMAY12_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 34, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb2253668z,Object,20775-bb2253668z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,3/8/1990,,8-Mar-90,,3/8/1990,,20775-bb2253668z-0-2.tgz,document-source,VOLUME69_ISSUE19_THURSDAYMARCH8_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 69, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb13662878,Object,20775-bb13662878-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,10/13/1986,,13-Oct-86,,10/13/1986,,,,VOLUME58_ISSUE6_MONDAYOCTOBER13_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb6792958w,Object,20775-bb6792958w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/8/1999,,8-Apr-99,,4/8/1999,,20775-bb6792958w-0-2.tgz,document-source,VOLUME97_ISSUE4_THURSDAYAPRIL8_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 97, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb8397077m,Object,20775-bb8397077m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,1/26/1998,,26-Jan-98,,1/26/1998,,20775-bb8397077m-0-2.tgz,document-source,VOLUME93_ISSUE7_MONDAYJANUARY26_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 93, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb6792957c,Object,20775-bb6792957c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/30/1989,,30-Oct-89,,10/30/1989,,20775-bb6792957c-0-2.tgz,document-source,VOLUME68_ISSUE12_MONDAYOCTOBER30_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 68, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb2629103z,Object,20775-bb2629103z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/5/1995,,5-Jun-95,,6/5/1995,,20775-bb2629103z-0-2.tgz,document-source,VOLUME85_ISSUE19_MONDAYJUNE5_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 85, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb6690572s,Object,20775-bb6690572s-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,3/14/1975,,14-Mar-75,,3/14/1975,,20775-bb6690572s-0-2.tgz,document-source,VOLUME24_ISSUE29_FRIDAYMARCH14_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 24, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb5086460j,Object,20775-bb5086460j-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,UCSD Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/31/1980,,31-Oct-80,,10/31/1980,,20775-bb5086460j-0-2.tgz,document-source,VOLUME41_ISSUE31_FRIDAYOCTOBER31_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 31",, +http://library.ucsd.edu/ark:/20775/bb31069212,Object,20775-bb31069212-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,11/5/1984,,5-Nov-84,,11/5/1984,,20775-bb31069212-0-2.tgz,document-source,VOLUME53_ISSUE15_MONDAYNOVEMBER5_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 53, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb04449070,Object,20775-bb04449070-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/29/2009,,29-Oct-09,,10/29/2009,,,,10_29_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb1229766d,Object,20775-bb1229766d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,2/24/2000,,24-Feb-00,,2/24/2000,,20775-bb1229766d-0-2.tgz,document-source,VOLUME99_ISSUE14_THURSDAYFEBRUARY24_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 99, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb6246877x,Object,20775-bb6246877x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,11/2/1981,,2-Nov-81,,11/2/1981,,20775-bb6246877x-0-2.tgz,document-source,VOLUME44_ISSUE14_MONDAYNOVEMBER2_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 44, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb5769057s,Object,20775-bb5769057s-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,4/16/1980,,16-Apr-80,,4/16/1980,,20775-bb5769057s-0-2.tgz,document-source,VOLUME40_ISSUE13_WEDNESDAYAPRIL16_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb1093251k,Object,20775-bb1093251k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/25/1991,,25-Nov-91,,11/25/1991,,20775-bb1093251k-0-2.tgz,document-source,VOLUME74_ISSUE18_MONDAYNOVEMBER25_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 74, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb6246878f,Object,20775-bb6246878f-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,1/28/1976,,28-Jan-76,,1/28/1976,,20775-bb6246878f-0-2.tgz,document-source,VOLUME27_ISSUE11_WEDNESDAYJANUARY28_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb9011533m,Object,20775-bb9011533m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/4/2007,,4-Oct-07,,10/4/2007,,,,10_04_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb55301523,Object,20775-bb55301523-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,4/12/1984,,12-Apr-84,,4/12/1984,,20775-bb55301523-0-2.tgz,document-source,VOLUME52_ISSUE4_THURSDAYAPRIL12_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 52, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb1263900b,Object,20775-bb1263900b-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,10/12/1981,,12-Oct-81,,10/12/1981,,20775-bb1263900b-0-2.tgz,document-source,VOLUME44_ISSUE8_MONDAYOCTOBER12_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 44, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb35164794,Object,20775-bb35164794-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,4/7/1994,,7-Apr-94,,4/7/1994,,20775-bb35164794-0-2.tgz,document-source,VOLUME82_ISSUE4_THURSDAYAPRIL7_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 82, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb96257496,Object,20775-bb96257496-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/29/1984,,29-Oct-84,,10/29/1984,,20775-bb96257496-0-2.tgz,document-source,VOLUME53_ISSUE13_MONDAYOCTOBER29_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 53, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb7748600w,Object,20775-bb7748600w-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,11/2/2006,,2-Nov-06,,11/2/2006,,20775-bb7748600w-0-2.tgz,document-source,THURSDAYNOVEMBER2_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 119, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb8055769x,Object,20775-bb8055769x-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/10/1972,,10-Oct-72,,10/10/1972,,20775-bb8055769x-0-2.tgz,document-source,VOLUME17_ISSUE5_TUESDAYOCTOBER10_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 17, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb0478909t,Object,20775-bb0478909t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,11/29/1999,,29-Nov-99,,11/29/1999,,20775-bb0478909t-0-2.tgz,document-source,VOLUME98_ISSUE17_MONDAYNOVEMBER29_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 98, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb10932523,Object,20775-bb10932523-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,11/10/1972,,10-Nov-72,,11/10/1972,,20775-bb10932523-0-2.tgz,document-source,VOLUME17_ISSUE14_FRIDAYNOVEMBER10_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 17, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb7748601d,Object,20775-bb7748601d-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,1/21/1976,,21-Jan-76,,1/21/1976,,20775-bb7748601d-0-2.tgz,document-source,VOLUME27_ISSUE8_JANUARY21_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 27, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb8772624w,Object,20775-bb8772624w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/24/2010,,24-May-10,,5/24/2010,,,,05_24_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 57",, +http://library.ucsd.edu/ark:/20775/bb53936305,Object,20775-bb53936305-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,2/1/1978,,1-Feb-78,,2/1/1978,,20775-bb53936305-0-2.tgz,document-source,VOLUME33_ISSUE11_WEDNESDAYFEBRUARY1_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 33, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb5530151k,Object,20775-bb5530151k-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Triton Times,UCSD Guardian,Guardian,,,,,,,,,,,,,5/29/1980,,29-May-80,,5/29/1980,,20775-bb5530151k-0-2.tgz,document-source,VOLUME40_ISSUE43_THURSDAYMAY29_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 43",, +http://library.ucsd.edu/ark:/20775/bb0990859z,Object,20775-bb0990859z-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,2/23/1976,,23-Feb-76,,2/23/1976,,20775-bb0990859z-0-2.tgz,document-source,VOLUME27_ISSUE21_MONDAYFEBRUARY23_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 27, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb03425181,Object,20775-bb03425181-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/21/2011,,21-Nov-11,,11/21/2011,,,,11_21_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb9386839t,Object,20775-bb9386839t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/5/1992,,5-Oct-92,,10/5/1992,,20775-bb9386839t-0-2.tgz,document-source,VOLUME77_ISSUE4_MONDAYOCTOBER5_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 77, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb9182058b,Object,20775-bb9182058b-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,11/9/1981,,9-Nov-81,,11/9/1981,,20775-bb9182058b-0-2.tgz,document-source,VOLUME44_ISSUE16_MONDAYNOVEMBER9_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 44, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb37212603,Object,20775-bb37212603-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/25/1996,,25-Jan-96,,1/25/1996,,20775-bb37212603-0-2.tgz,document-source,VOLUME87_ISSUE6_THURSDAYJANUARY25_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 87, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb50864612,Object,20775-bb50864612-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,9/26/1977,,26-Sep-77,,9/26/1977,,20775-bb50864612-0-2.tgz,document-source,VOLUME32_ISSUE2_MONDAYSEPTEMBER26_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 32, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb99330463,Object,20775-bb99330463-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Triton Times,Guardian,Daily Guardian,The Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,10/16/2008,10/16/2008,16-Oct-08,16-Oct-08,10/16/2008,10/16/2008,,,10_16_08.pdf,10_16_08.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA",,, +http://library.ucsd.edu/ark:/20775/bb00010912,Object,20775-bb00010912-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,4/4/2005,,4-Apr-05,,4/4/2005,,20775-bb00010912-0-2.tgz,document-source,VOLUME115_ISSUE3_MONDAYAPRIL4_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 115, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb3926043j,Object,20775-bb3926043j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,11/29/2001,,29-Nov-01,,11/29/2001,,20775-bb3926043j-0-2.tgz,document-source,VOLUME104_ISSUE20_THURSDAYNOVEMBER29_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 104, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb3106920j,Object,20775-bb3106920j-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,11/10/1980,,10-Nov-80,,11/10/1980,,20775-bb3106920j-0-2.tgz,document-source,VOLUME41_ISSUE37_MONDAYNOVEMBER10_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 37",, +http://library.ucsd.edu/ark:/20775/bb66905739,Object,20775-bb66905739-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,3/7/1977,,7-Mar-77,,3/7/1977,,20775-bb66905739-0-2.tgz,document-source,VOLUME30_ISSUE24_MONDAYMARCH7_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 30, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb17763372,Object,2014-01-13.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/13/2014,,13-Jan-14,,1/13/2014,,,,2014-01-13.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 23",,Newspaper +http://library.ucsd.edu/ark:/20775/bb83970763,Object,20775-bb83970763-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/12/2002,,12-Nov-02,,11/12/2002,,20775-bb83970763-0-2.tgz,document-source,VOLUME107_ISSUE14_TUESDAYNOVEMBER12_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 107, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb7270779g,Object,20775-bb7270779g-0-1.pdf,document-service,text,,Guardian,,,,Daily Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,2/9/1979,,9-Feb-79,,2/9/1979,,20775-bb7270779g-0-2.tgz,document-source,VOLUME36_ISSUE15_FRIDAYFEBRUARY9_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 36, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb9147928g,Object,20775-bb9147928g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,9/28/1981,,28-Sep-81,,9/28/1981,,20775-bb9147928g-0-2.tgz,document-source,VOLUME44_ISSUE4_MONDAYSEPTEMBER28_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 44, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb9182057t,Object,20775-bb9182057t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,3/6/1986,,6-Mar-86,,3/6/1986,,,,VOLUME57_ISSUE18_THURSDAYMARCH6_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 57, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb6417528n,Object,20775-bb6417528n-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Triton Times,UCSD Guardian,Guardian,,,,,,,,,,,,,5/30/1980,,30-May-80,,5/30/1980,,20775-bb6417528n-0-2.tgz,document-source,VOLUME40_ISSUE44_FRIDAYMAY30_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 44",, +http://library.ucsd.edu/ark:/20775/bb3516478m,Object,20775-bb3516478m-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,6/2/1980,,2-Jun-80,,6/2/1980,,20775-bb3516478m-0-2.tgz,document-source,VOLUME40_ISSUE45_MONDAYJUNE2_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 45",, +http://library.ucsd.edu/ark:/20775/bb95574907,Object,20775-bb95574907-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,4/19/1974,,19-Apr-74,,4/19/1974,,20775-bb95574907-0-2.tgz,document-source,VOLUME22_ISSUE6_FRIDAYAPRIL19_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 22, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb59055814,Object,20775-bb59055814-0-1.pdf,document-service,text,,Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,2/7/1979,,7-Feb-79,,2/7/1979,,20775-bb59055814-0-2.tgz,document-source,VOLUME36_ISSUE14_WEDNESDAYFEBRUARY7_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 36, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb4062563t,Object,20775-bb4062563t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,12/2/1982,,2-Dec-82,,12/2/1982,,20775-bb4062563t-0-2.tgz,document-source,VOLUME47_ISSUE20_THURSDAYDECEMBER2_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb7134265g,Object,20775-bb7134265g-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,11/7/1969,,7-Nov-69,,11/7/1969,,20775-bb7134265g-0-2.tgz,document-source,VOLUME8_ISSUE6_NOVEMBER7_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 8, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb8055768d,Object,20775-bb8055768d-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,6/8/2000,,8-Jun-00,,6/8/2000,,20775-bb8055768d-0-2.tgz,document-source,VOLUME100_ISSUE20_THURSDAYJUNE8_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 100, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb8977279v,Object,20775-bb8977279v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/12/2004,,12-Jan-04,,1/12/2004,,20775-bb8977279v-0-2.tgz,document-source,VOLUME111_ISSUE3_MONDAYJANUARY12_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 111, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb07178196,Object,20775-bb07178196-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,1/12/1995,,12-Jan-95,,1/12/1995,,20775-bb07178196-0-2.tgz,document-source,VOLUME84_ISSUE2_THURSDAYJANUARY12_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 84, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb2629102f,Object,20775-bb2629102f-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,3/1/2004,,1-Mar-04,,3/1/2004,,20775-bb2629102f-0-2.tgz,document-source,VOLUME111_ISSUE17_MONDAYMARCH1_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 111, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb5427759k,Object,20775-bb5427759k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,1/13/1992,,13-Jan-92,,1/13/1992,,20775-bb5427759k-0-2.tgz,document-source,VOLUME75_ISSUE3_MONDAYJANUARY13_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 75, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb7134264z,Object,20775-bb7134264z-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/22/1994,,22-Feb-94,,2/22/1994,,20775-bb7134264z-0-2.tgz,document-source,VOLUME81_ISSUE15_TUESDAYFEBRUARY22_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 81, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb5291239v,Object,20775-bb5291239v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,10/24/2002,,24-Oct-02,,10/24/2002,,20775-bb5291239v-0-2.tgz,document-source,VOLUME107_ISSUE9_THURSDAYOCTOBER24_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 107, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb7510177h,Object,2014-10-23.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/23/2014,,23-Oct-14,,10/23/2014,,,,2014-10-23.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 48, Issue 7",,Newspaper +http://library.ucsd.edu/ark:/20775/bb53253693,Object,20775-bb53253693-0-1.pdf,document-service,text,,The Guardian,,,,Triton Times,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,3/30/1981,,30-Mar-81,,3/30/1981,,20775-bb53253693-0-2.tgz,document-source,VOLUME43_ISSUE1_MONDAYMARCH30_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 43, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb64175295,Object,20775-bb64175295-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,9/24/1975,,24-Sep-75,,9/24/1975,,20775-bb64175295-0-2.tgz,document-source,VOLUME26_ISSUE2_WEDNESDAYSEPTEMBER24_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb8397075k,Object,20775-bb8397075k-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,10/3/1980,,3-Oct-80,,10/3/1980,,20775-bb8397075k-0-2.tgz,document-source,VOLUME41_ISSUE11_FRIDAYOCTOBER3_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb31753046,Object,20775-bb31753046-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/22/2008,,22-Jan-08,,1/22/2008,,,,01_22_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb0001090j,Object,20775-bb0001090j-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,1/24/1975,,24-Jan-75,,1/24/1975,,20775-bb0001090j-0-2.tgz,document-source,VOLUME24_ISSUE9_FRIDAYJANUARY24_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 24, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb79533761,Object,20775-bb79533761-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,4/29/1991,,29-Apr-91,,4/29/1991,,20775-bb79533761-0-2.tgz,document-source,VOLUME73_ISSUE9_MONDAYAPRIL29_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 73, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb88066268,Object,20775-bb88066268-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,1/10/1977,,10-Jan-77,,1/10/1977,,20775-bb88066268-0-2.tgz,document-source,VOLUME30_ISSUE1_MONDAYJANUARY10_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 30, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb31069233,Object,20775-bb31069233-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,2/24/1983,,24-Feb-83,,2/24/1983,,20775-bb31069233-0-2.tgz,document-source,VOLUME48_ISSUE16_THURSDAYFEBRUARY24_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb71342681,Object,20775-bb71342681-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,9/29/1988,,29-Sep-88,,9/29/1988,,20775-bb71342681-0-2.tgz,document-source,VOLUME65_ISSUE3_THURSDAYSEPTEMBER29_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 65, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb6246875w,Object,20775-bb6246875w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/26/1989,,26-Jan-89,,1/26/1989,,20775-bb6246875w-0-2.tgz,document-source,VOLUME66_ISSUE7_THURSDAYJANUARY26_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 66, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb6690574t,Object,20775-bb6690574t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,5/23/1991,,23-May-91,,5/23/1991,,20775-bb6690574t-0-2.tgz,document-source,VOLUME73_ISSUE16_THURSDAYMAY23_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 73, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb9045667c,Object,20775-bb9045667c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/14/2011,,14-Feb-11,,2/14/2011,,,,02_14_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 33",, +http://library.ucsd.edu/ark:/20775/bb2629101x,Object,20775-bb2629101x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,10/24/1990,,24-Oct-90,,10/24/1990,,20775-bb2629101x-0-2.tgz,document-source,VOLUME71_ISSUE13_WEDNESDAYOCTOBER24_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 71, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb6792959d,Object,20775-bb6792959d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,5/24/1984,,24-May-84,,5/24/1984,,20775-bb6792959d-0-2.tgz,document-source,VOLUME52_ISSUE16_THURSDAYMAY24_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 52, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb91479290,Object,20775-bb91479290-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,1/13/1986,,13-Jan-86,,1/13/1986,,20775-bb91479290-0-2.tgz,document-source,VOLUME57_ISSUE3_MONDAYJANUARY13_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 57, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb6793123p,Object,20775-bb6793123p-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,4/23/2012,,23-Apr-12,,4/23/2012,,,,2012-04-23.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 47",, +http://library.ucsd.edu/ark:/20775/bb55301544,Object,20775-bb55301544-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/1/1990,,1-Feb-90,,2/1/1990,,20775-bb55301544-0-2.tgz,document-source,VOLUME69_ISSUE9_THURSDAYFEBRUARY1_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 69, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb78851207,Object,20775-bb78851207-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,3/31/1976,,31-Mar-76,,3/31/1976,,20775-bb78851207-0-2.tgz,document-source,VOLUME28_ISSUE2_WEDNESDAYMARCH31_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 28, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb0717818p,Object,20775-bb0717818p-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,3/11/1985,,11-Mar-85,,3/11/1985,,20775-bb0717818p-0-2.tgz,document-source,VOLUME54_ISSUE19_MONDAYMARCH11_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 54, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb7748602x,Object,20775-bb7748602x-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,10/18/1976,,18-Oct-76,,10/18/1976,,20775-bb7748602x-0-2.tgz,document-source,VOLUME29_ISSUE11_MONDAYOCTOBER18_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 29, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb1093253m,Object,20775-bb1093253m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,3/9/1992,,9-Mar-92,,3/9/1992,,20775-bb1093253m-0-2.tgz,document-source,VOLUME75_ISSUE19_MONDAYMARCH9_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 75, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb04789089,Object,20775-bb04789089-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/10/1991,,10-Oct-91,,10/10/1991,,20775-bb04789089-0-2.tgz,document-source,VOLUME74_ISSUE5_THURSDAYOCTOBER10_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 74, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb6246876d,Object,20775-bb6246876d-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/18/1977,,18-Jan-77,,1/18/1977,,20775-bb6246876d-0-2.tgz,document-source,VOLUME33_ISSUE5_WEDNESDAYJANUARY18_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 33, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb5769059t,Object,20775-bb5769059t-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/4/1985,,4-Nov-85,,11/4/1985,,20775-bb5769059t-0-2.tgz,document-source,VOLUME56_ISSUE12_MONDAYNOVEMBER4_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 56, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb5530153m,Object,20775-bb5530153m-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,9/30/1974,,30-Sep-74,,9/30/1974,,20775-bb5530153m-0-2.tgz,document-source,VOLUME23_ISSUE4_MONDAYSEPTEMBER30_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 23, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb0478907s,Object,20775-bb0478907s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,4/20/1989,,20-Apr-89,,4/20/1989,,20775-bb0478907s-0-2.tgz,document-source,VOLUME67_ISSUE6_THURSDAYAPRIL20_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 67, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb0990857x,Object,20775-bb0990857x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,2/11/2002,,11-Feb-02,,2/11/2002,,20775-bb0990857x-0-2.tgz,document-source,VOLUME105_ISSUE11_MONDAYFEBRUARY11_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 105, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb8055767w,Object,20775-bb8055767w-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,11/27/1974,,27-Nov-74,,11/27/1974,,20775-bb8055767w-0-2.tgz,document-source,VOLUME23_ISSUE29_WEDNESDAYNOVEMBER27_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 23, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb7748603f,Object,20775-bb7748603f-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,2/25/1972,,25-Feb-72,,2/25/1972,,20775-bb7748603f-0-2.tgz,document-source,VOLUME15_ISSUE16_FRIDAYFEBRUARY25_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 15, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb10932544,Object,20775-bb10932544-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,5/6/1993,,6-May-93,,5/6/1993,,20775-bb10932544-0-2.tgz,document-source,VOLUME79_ISSUE12_THURSDAYMAY6_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 79, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb00010933,Object,20775-bb00010933-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/16/1989,,16-Feb-89,,2/16/1989,,20775-bb00010933-0-2.tgz,document-source,VOLUME66_ISSUE13_THURSDAYFEBRUARY16_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 66, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb6554049h,Object,20775-bb6554049h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,2/14/2002,,14-Feb-02,,2/14/2002,,20775-bb6554049h-0-2.tgz,document-source,VOLUME105_ISSUE12_THURSDAYFEBRUARY14_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 105, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb3926045k,Object,20775-bb3926045k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,11/9/2005,,9-Nov-05,,11/9/2005,,20775-bb3926045k-0-2.tgz,document-source,VOLUME116_ISSUE15_WEDNESDAYNOVEMBER9_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 116, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb3106922k,Object,20775-bb3106922k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/5/2001,,5-Nov-01,,11/5/2001,,20775-bb3106922k-0-2.tgz,document-source,VOLUME104_ISSUE14_MONDAYNOVEMBER5_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 104, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb9147927z,Object,20775-bb9147927z-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,11/27/1979,,27-Nov-79,,11/27/1979,,20775-bb9147927z-0-2.tgz,document-source,VOLUME38_ISSUE46_TUESDAYNOVEMBER27_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 46",, +http://library.ucsd.edu/ark:/20775/bb37212624,Object,20775-bb37212624-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/24/1996,,24-Oct-96,,10/24/1996,,20775-bb37212624-0-2.tgz,document-source,VOLUME89_ISSUE9_THURSDAYOCTOBER24_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 89, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb3994301r,Object,20775-bb3994301r-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,5/17/1968,,17-May-68,,5/17/1968,,20775-bb3994301r-0-2.tgz,document-source,VOLUME4_ISSUE7_MAY17_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 4, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb0990858f,Object,20775-bb0990858f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/4/1999,,4-Nov-99,,11/4/1999,,20775-bb0990858f-0-2.tgz,document-source,VOLUME98_ISSUE11_THURSDAYNOVEMBER4_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 98, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb7270778z,Object,20775-bb7270778z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/30/1990,,30-Apr-90,,4/30/1990,,20775-bb7270778z-0-2.tgz,document-source,VOLUME70_ISSUE9_MONDAYAPRIL30_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 70, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb9591620s,Object,20775-bb9591620s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/1/2001,,1-Oct-01,,10/1/2001,,20775-bb9591620s-0-2.tgz,document-source,VOLUME104_ISSUE4_MONDAYOCTOBER1_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 104, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb10249892,Object,20775-bb10249892-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,4/11/1985,,11-Apr-85,,4/11/1985,,20775-bb10249892-0-2.tgz,document-source,VOLUME55_ISSUE4_THURSDAYAPRIL11_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 55, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb4164952s,Object,20775-bb4164952s-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,10/4/1968,,4-Oct-68,,10/4/1968,,20775-bb4164952s-0-2.tgz,document-source,VOLUME5_ISSUE1_OCTOBER4_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 5, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb5803191n,Object,20775-bb5803191n-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/7/1975,,7-Apr-75,,4/7/1975,,20775-bb5803191n-0-2.tgz,document-source,VOLUME25_ISSUE4_MONDAYAPRIL7_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 25, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb6997864m,Object,20775-bb6997864m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/6/2008,,6-Mar-08,,3/6/2008,,,,03_06_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb2526708n,Object,20775-bb2526708n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,3/30/1987,,30-Mar-87,,3/30/1987,,20775-bb2526708n-0-2.tgz,document-source,VOLUME58_ISSUE41_MONDAYMARCH30_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 41",, +http://library.ucsd.edu/ark:/20775/bb03423891,Object,20775-bb03423891-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/19/2006,,19-Jan-06,,1/19/2006,,,,THURSDAYJANUARY19_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 117, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb57690568,Object,20775-bb57690568-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/13/1995,,13-Apr-95,,4/13/1995,,20775-bb57690568-0-2.tgz,document-source,VOLUME85_ISSUE4_THURSDAYAPRIL13_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 85, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb0035220v,Object,20775-bb0035220v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,10/10/1994,,10-Oct-94,,10/10/1994,,20775-bb0035220v-0-2.tgz,document-source,VOLUME83_ISSUE6_MONDAYOCTOBER10_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 83, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb9523359q,Object,20775-bb9523359q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,11/15/2001,,15-Nov-01,,11/15/2001,,20775-bb9523359q-0-2.tgz,document-source,VOLUME104_ISSUE17_THURSDAYNOVEMBER15_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 104, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb0854344f,Object,20775-bb0854344f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,2/22/2001,,22-Feb-01,,2/22/2001,,20775-bb0854344f-0-2.tgz,document-source,VOLUME102_ISSUE14_THURSDAYFEBRUARY22_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 102, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb3960171f,Object,20775-bb3960171f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,1/20/2004,,20-Jan-04,,1/20/2004,,20775-bb3960171f-0-2.tgz,document-source,VOLUME111_ISSUE5_TUESDAYJANUARY20_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 111, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb25267095,Object,20775-bb25267095-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,11/6/1997,,6-Nov-97,,11/6/1997,,20775-bb25267095-0-2.tgz,document-source,VOLUME92_ISSUE13_THURSDAYNOVEMBER6_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 92, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb46427694,Object,20775-bb46427694-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/23/1973,,23-Apr-73,,4/23/1973,,20775-bb46427694-0-2.tgz,document-source,VOLUME19_ISSUE7_TUESDAYAPRIL23_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 19, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb87042426,Object,20775-bb87042426-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,9/23/1985,,23-Sep-85,,9/23/1985,,20775-bb87042426-0-2.tgz,document-source,VOLUME56_ISSUE1_MONDAYSEPTEMBER23_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 56, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb9694017t,Object,20775-bb9694017t-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,The Guardian,Triton Times,Daily Guardian,Guardian,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,5/29/1986,5/29/1986,29-May-86,29-May-86,5/29/1986,5/29/1986,,,VOLUME58_ISSUE18_THURSDAYMAY29_1986.pdf,VOLUME58_ISSUE18_THURSDAYMAY29_1986.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 58, Issue 18","Volume 58, Issue 18", +http://library.ucsd.edu/ark:/20775/bb1502937r,Object,20775-bb1502937r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/28/2008,,28-Jan-08,,1/28/2008,,,,01_28_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb3960170x,Object,20775-bb3960170x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,10/31/2002,,31-Oct-02,,10/31/2002,,20775-bb3960170x-0-2.tgz,document-source,VOLUME107_ISSUE11_THURSDAYOCTOBER31_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 107, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb6212876m,Object,20775-bb6212876m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/17/2010,,17-May-10,,5/17/2010,,,,05_17_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 55",, +http://library.ucsd.edu/ark:/20775/bb1195642k,Object,20775-bb1195642k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,4/22/1996,,22-Apr-96,,4/22/1996,,20775-bb1195642k-0-2.tgz,document-source,VOLUME88_ISSUE7_MONDAYAPRIL22_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 88, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb41649539,Object,20775-bb41649539-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,9/30/1993,,30-Sep-93,,9/30/1993,,20775-bb41649539-0-2.tgz,document-source,VOLUME80_ISSUE3_THURSDAYSEPTEMBER30_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 80, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb0035221c,Object,20775-bb0035221c-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/26/1979,,26-Feb-79,,2/26/1979,,20775-bb0035221c-0-2.tgz,document-source,VOLUME36_ISSUE21_MONDAYFEBRUARY26_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 36, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb0854343x,Object,20775-bb0854343x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,11/23/1992,,23-Nov-92,,11/23/1992,,20775-bb0854343x-0-2.tgz,document-source,VOLUME77_ISSUE18_MONDAYNOVEMBER23_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 77, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb89090176,Object,20775-bb89090176-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,1/17/1995,,17-Jan-95,,1/17/1995,,20775-bb89090176-0-2.tgz,document-source,VOLUME84_ISSUE3_TUESDAYJANUARY17_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 84, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb80899002,Object,20775-bb80899002-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/19/2004,,19-Feb-04,,2/19/2004,,20775-bb80899002-0-2.tgz,document-source,VOLUME111_ISSUE14_THURSDAYFEBRUARY19_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 111, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb3106924m,Object,20775-bb3106924m-0-1.pdf,document-service,text,,Daily Guardian,,,,The Guardian,UCSD Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/11/1979,,11-Oct-79,,10/11/1979,,20775-bb3106924m-0-2.tgz,document-source,VOLUME38_ISSUE15_THURSDAYOCTOBER11_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb6451783w,Object,20775-bb6451783w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/11/2007,,11-Oct-07,,10/11/2007,,,,10_11_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb70660017,Object,20775-bb70660017-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/14/1983,,14-Apr-83,,4/14/1983,,20775-bb70660017-0-2.tgz,document-source,VOLUME49_ISSUE4_THURSDAYAPRIL14_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 49, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb21171471,Object,20775-bb21171471-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,UCSD Guardian,Triton Times,,,,,,,,,,,,,6/6/1980,,6-Jun-80,,6/6/1980,,20775-bb21171471-0-2.tgz,document-source,VOLUME40_ISSUE49_FRIDAYJUNE6_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 40, Issue 49",, +http://library.ucsd.edu/ark:/20775/bb9694018b,Object,20775-bb9694018b-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,The Guardian,Guardian,Daily Guardian,Triton Times,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,5/20/1985,5/20/1985,20-May-85,20-May-85,5/20/1985,5/20/1985,20775-bb9694018b-0-2.tgz,document-source,VOLUME55_ISSUE15_MONDAYMAY20_1985.pdf,VOLUME55_ISSUE15_MONDAYMAY20_1985.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 55, Issue 15","Volume 55, Issue 15", +http://library.ucsd.edu/ark:/20775/bb1024988j,Object,20775-bb1024988j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,5/18/1989,,18-May-89,,5/18/1989,,20775-bb1024988j-0-2.tgz,document-source,VOLUME67_ISSUE14_THURSDAYMAY18_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 67, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb6451784d,Object,20775-bb6451784d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/31/2011,,31-May-11,,5/31/2011,,,,05_31_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 44, Issue 29",, +http://library.ucsd.edu/ark:/20775/bb1229769z,Object,20775-bb1229769z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,10/2/2000,,2-Oct-00,,10/2/2000,,20775-bb1229769z-0-2.tgz,document-source,VOLUME101_ISSUE4_MONDAYOCTOBER2_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 101, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb7748605g,Object,20775-bb7748605g-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/19/1980,,19-Nov-80,,11/19/1980,,20775-bb7748605g-0-2.tgz,document-source,VOLUME41_ISSUE44_WEDNESDAYNOVEMBER19_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 44",, +http://library.ucsd.edu/ark:/20775/bb95916219,Object,20775-bb95916219-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,12/3/1979,,3-Dec-79,,12/3/1979,,20775-bb95916219-0-2.tgz,document-source,VOLUME38_ISSUE52_MONDAYDECEMBER3_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 52",, +http://library.ucsd.edu/ark:/20775/bb9762271w,Object,20775-bb9762271w-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,1/14/1977,1/14/1977,14-Jan-77,14-Jan-77,1/14/1977,1/14/1977,20775-bb9762271w-0-2.tgz,document-source,VOLUME30_ISSUE3_FRIDAYJANUARY14_1977.pdf,VOLUME30_ISSUE3_FRIDAYJANUARY14_1977.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 30, Issue 3","Volume 30, Issue 3", +http://library.ucsd.edu/ark:/20775/bb5530155n,Object,20775-bb5530155n-0-1.pdf,document-service,text,,Guardian,,,,UCSD Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,4/18/1979,,18-Apr-79,,4/18/1979,,20775-bb5530155n-0-2.tgz,document-source,VOLUME37_ISSUE8_WEDNESDAYAPRIL18_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 37, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb38577829,Object,20775-bb38577829-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,4/28/1997,,28-Apr-97,,4/28/1997,,20775-bb38577829-0-2.tgz,document-source,VOLUME91_ISSUE9_MONDAYAPRIL28_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 91, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb4642766k,Object,20775-bb4642766k-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/6/1970,,6-Mar-70,,3/6/1970,,20775-bb4642766k-0-2.tgz,document-source,VOLUME9_ISSUE9_MARCH6_1970.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 9, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb9762272d,Object,20775-bb9762272d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,3/2/1987,,2-Mar-87,,3/2/1987,,20775-bb9762272d-0-2.tgz,document-source,VOLUME58_ISSUE37_MONDAYMARCH2_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 37",, +http://library.ucsd.edu/ark:/20775/bb8704241p,Object,20775-bb8704241p-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,5/28/1971,,28-May-71,,5/28/1971,,20775-bb8704241p-0-2.tgz,document-source,VOLUME13_ISSUE18_FRIDAYMAY28_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 13, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb6007973h,Object,20775-bb6007973h-0-1.pdf,document-service,text,,Daily Guardian,,,,Guardian,The Guardian,Triton Times,UCSD Guardian,,,,,,,,,,,,,10/6/1980,,6-Oct-80,,10/6/1980,,20775-bb6007973h-0-2.tgz,document-source,VOLUME41_ISSUE12_MONDAYOCTOBER6_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 41, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb11956433,Object,20775-bb11956433-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,UCSD Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,3/1/1976,,1-Mar-76,,3/1/1976,,20775-bb11956433-0-2.tgz,document-source,VOLUME27_ISSUE24_MONDAYMARCH1_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 27, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb7748604z,Object,20775-bb7748604z-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,1/17/1969,,17-Jan-69,,1/17/1969,,20775-bb7748604z-0-2.tgz,document-source,VOLUME6_ISSUE1_JANUARY17_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 6, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb55301565,Object,20775-bb55301565-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,4/23/1980,,23-Apr-80,,4/23/1980,,20775-bb55301565-0-2.tgz,document-source,VOLUME40_ISSUE18_WEDNESDAYAPRIL23_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb7066000q,Object,20775-bb7066000q-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,6/2/1972,,2-Jun-72,,6/2/1972,,20775-bb7066000q-0-2.tgz,document-source,VOLUME16_ISSUE22_FRIDAYJUNE2_1972.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 16, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb58031925,Object,20775-bb58031925-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,3/5/1990,,5-Mar-90,,3/5/1990,,20775-bb58031925-0-2.tgz,document-source,VOLUME69_ISSUE18_MONDAYMARCH5_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 69, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb2117146h,Object,20775-bb2117146h-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/7/1978,,7-Jun-78,,6/7/1978,,20775-bb2117146h-0-2.tgz,document-source,VOLUME34_ISSUE28_WEDNESDAYJUNE7_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 34, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb58714481,Object,20775-bb58714481-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,1/19/1971,,19-Jan-71,,1/19/1971,,20775-bb58714481-0-2.tgz,document-source,VOLUME12_ISSUE5_TUESDAYJANUARY19_1971.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 12, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb31069254,Object,20775-bb31069254-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,2/26/2004,,26-Feb-04,,2/26/2004,,20775-bb31069254-0-2.tgz,document-source,VOLUME111_ISSUE16_THURSDAYFEBRUARY26_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 111, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb5803193p,Object,20775-bb5803193p-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,11/10/2004,,10-Nov-04,,11/10/2004,,20775-bb5803193p-0-2.tgz,document-source,VOLUME113_ISSUE14_WEDNESDAYNOVEMBER10_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 113, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb55985331,Object,20775-bb55985331-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/3/2010,,3-May-10,,5/3/2010,,,,05_03_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 51",, +http://library.ucsd.edu/ark:/20775/bb4164950r,Object,20775-bb4164950r-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,11/12/1976,,12-Nov-76,,11/12/1976,,20775-bb4164950r-0-2.tgz,document-source,VOLUME29_ISSUE22_FRIDAYNOVEMBER12_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 29, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb10249871,Object,20775-bb10249871-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/1/1999,,1-Nov-99,,11/1/1999,,20775-bb10249871-0-2.tgz,document-source,VOLUME98_ISSUE10_MONDAYNOVEMBER1_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 98, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb0035222w,Object,20775-bb0035222w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/28/1991,,28-Oct-91,,10/28/1991,,20775-bb0035222w-0-2.tgz,document-source,VOLUME74_ISSUE10_MONDAYOCTOBER28_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 74, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb9523357p,Object,20775-bb9523357p-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,The Guardian,UCSD Guardian,,,,,,,,,,,,,3/12/1974,,12-Mar-74,,3/12/1974,,20775-bb9523357p-0-2.tgz,document-source,VOLUME21_ISSUE19_TUESDAYMARCH12_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 21, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb2526706m,Object,20775-bb2526706m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,5/15/1997,,15-May-97,,5/15/1997,,20775-bb2526706m-0-2.tgz,document-source,VOLUME91_ISSUE14_THURSDAYMAY15_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 91, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb1707588n,Object,20775-bb1707588n-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/19/1978,,19-May-78,,5/19/1978,,20775-bb1707588n-0-2.tgz,document-source,VOLUME34_ISSUE21_FRIDAYMAY19_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 34, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb08543470,Object,20775-bb08543470-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,10/27/2005,,27-Oct-05,,10/27/2005,,20775-bb08543470-0-2.tgz,document-source,VOLUME116_ISSUE11_THURSDAYOCTOBER27_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 116, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb57690589,Object,20775-bb57690589-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,4/25/1974,,25-Apr-74,,4/25/1974,,20775-bb57690589-0-2.tgz,document-source,VOLUME22_ISSUE7_THURSDAYAPRIL25_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 22, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb95233586,Object,20775-bb95233586-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,The Guardian,Guardian,,,,,,,,,,,,,5/24/1968,,24-May-68,,5/24/1968,,20775-bb95233586-0-2.tgz,document-source,VOLUME4_ISSUE8_MAY24_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 4, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb5700924t,Object,20775-bb5700924t-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/21/2008,,21-Apr-08,,4/21/2008,,,,04_21_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb46427673,Object,20775-bb46427673-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,1/12/1998,,12-Jan-98,,1/12/1998,,20775-bb46427673-0-2.tgz,document-source,VOLUME93_ISSUE3_MONDAYJANUARY12_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 93, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb0035223d,Object,20775-bb0035223d-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,2/23/1973,,23-Feb-73,,2/23/1973,,20775-bb0035223d-0-2.tgz,document-source,VOLUME18_ISSUE14_FRIDAYFEBRUARY23_1973.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 18, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb25267074,Object,20775-bb25267074-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,11/21/1975,,21-Nov-75,,11/21/1975,,20775-bb25267074-0-2.tgz,document-source,VOLUME26_ISSUE27_FRIDAYNOVEMBER21_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 27",, +http://library.ucsd.edu/ark:/20775/bb0854346g,Object,20775-bb0854346g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,11/14/2002,,14-Nov-02,,11/14/2002,,20775-bb0854346g-0-2.tgz,document-source,VOLUME107_ISSUE15_THURSDAYNOVEMBER14_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 107, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb41649518,Object,20775-bb41649518-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,2/10/2005,,10-Feb-05,,2/10/2005,,20775-bb41649518-0-2.tgz,document-source,VOLUME114_ISSUE12_THURSDAYFEBRUARY10_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 114, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb7510172x,Object,2013-01-31.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/31/2013,,31-Jan-13,,1/31/2013,,,,2013-01-31.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 28",,Newspaper +http://library.ucsd.edu/ark:/20775/bb0922724n,Object,20775-bb0922724n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,9/23/2008,,23-Sep-08,,9/23/2008,,,,09_23_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb40284280,Object,20775-bb40284280-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,2/1/1993,,1-Feb-93,,2/1/1993,,20775-bb40284280-0-2.tgz,document-source,VOLUME78_ISSUE9_MONDAYFEBRUARY1_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 78, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb1195644m,Object,20775-bb1195644m-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,9/28/1992,,28-Sep-92,,9/28/1992,,20775-bb1195644m-0-2.tgz,document-source,VOLUME77_ISSUE2_MONDAYSEPTEMBER28_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 77, Issue 2",, +http://library.ucsd.edu/ark:/20775/bb0854345z,Object,20775-bb0854345z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/27/1988,,27-Oct-88,,10/27/1988,,20775-bb0854345z-0-2.tgz,document-source,VOLUME65_ISSUE11_THURSDAYOCTOBER27_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 65, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb06496878,Object,20775-bb06496878-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/26/2007,,26-Nov-07,,11/26/2007,,,,11_26_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb8089901k,Object,20775-bb8089901k-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/14/1994,,14-Feb-94,,2/14/1994,,20775-bb8089901k-0-2.tgz,document-source,VOLUME81_ISSUE13_MONDAYFEBRUARY14_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 81, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb21171492,Object,20775-bb21171492-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Guardian,Daily Guardian,,,,,,,,,,,,,1/22/1985,,22-Jan-85,,1/22/1985,,20775-bb21171492-0-2.tgz,document-source,VOLUME54_ISSUE5_TUESDAYJANUARY22_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 54, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb3106926n,Object,20775-bb3106926n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,10/30/1995,,30-Oct-95,,10/30/1995,,20775-bb3106926n-0-2.tgz,document-source,VOLUME86_ISSUE12_MONDAYOCTOBER30_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 86, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb8124155g,Object,20775-bb8124155g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/3/2010,,3-Jun-10,,6/3/2010,,,,06_03_10.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 42, Issue 60",, +http://library.ucsd.edu/ark:/20775/bb89090197,Object,20775-bb89090197-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/4/1979,,4-Oct-79,,10/4/1979,,20775-bb89090197-0-2.tgz,document-source,VOLUME38_ISSUE10_THURSDAYOCTOBER4_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 38, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb80899023,Object,20775-bb80899023-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/27/1989,,27-Feb-89,,2/27/1989,,20775-bb80899023-0-2.tgz,document-source,VOLUME66_ISSUE16_MONDAYFEBRUARY27_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 66, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb5530157p,Object,20775-bb5530157p-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,10/27/1975,,27-Oct-75,,10/27/1975,,20775-bb5530157p-0-2.tgz,document-source,VOLUME26_ISSUE16_MONDAYOCTOBER27_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 26, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb9762273x,Object,20775-bb9762273x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,10/22/1984,,22-Oct-84,,10/22/1984,,20775-bb9762273x-0-2.tgz,document-source,VOLUME53_ISSUE11_MONDAYOCTOBER22_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 53, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb65199210,Object,20775-bb65199210-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/10/1997,,10-Feb-97,,2/10/1997,,20775-bb65199210-0-2.tgz,document-source,VOLUME90_ISSUE11_MONDAYFEBRUARY10_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 90, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb1229767x,Object,20775-bb1229767x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,5/16/1983,,16-May-83,,5/16/1983,,20775-bb1229767x-0-2.tgz,document-source,VOLUME49_ISSUE13_MONDAYMAY16_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 49, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb46427652,Object,20775-bb46427652-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/26/1968,,26-Nov-68,,11/26/1968,,20775-bb46427652-0-2.tgz,document-source,VOLUME5_ISSUE9_NOVEMBER26_1968.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 5, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb38577808,Object,20775-bb38577808-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/25/2002,,25-Apr-02,,4/25/2002,,20775-bb38577808-0-2.tgz,document-source,VOLUME106_ISSUE8_THURSDAYAPRIL25_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 106, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb11956454,Object,20775-bb11956454-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/23/1987,,23-Feb-87,,2/23/1987,,,,VOLUME58_ISSUE35_MONDAYFEBRUARY23_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 35",, +http://library.ucsd.edu/ark:/20775/bb6519920g,Object,20775-bb6519920g-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Daily Guardian,Guardian,UCSD Guardian,,,,,,,,,,,,,2/22/1974,,22-Feb-74,,2/22/1974,,20775-bb6519920g-0-2.tgz,document-source,VOLUME21_ISSUE14_FRIDAYFEBRUARY22_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 21, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb18099784,Object,20775-bb18099784-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/5/2006,,5-Jun-06,,6/5/2006,,20775-bb18099784-0-2.tgz,document-source,MONDAYJUNE5_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 118, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb1229768f,Object,20775-bb1229768f-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,5/16/1975,,16-May-75,,5/16/1975,,20775-bb1229768f-0-2.tgz,document-source,VOLUME25_ISSUE21_FRIDAYMAY16_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 25, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb2117148j,Object,20775-bb2117148j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/11/1988,,11-Apr-88,,4/11/1988,,20775-bb2117148j-0-2.tgz,document-source,VOLUME61_ISSUE3_MONDAYAPRIL11_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 61, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb58031946,Object,20775-bb58031946-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,10/19/1992,,19-Oct-92,,10/19/1992,,20775-bb58031946-0-2.tgz,document-source,VOLUME77_ISSUE8_MONDAYOCTOBER19_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 77, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb8704243q,Object,20775-bb8704243q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/15/1998,,15-Oct-98,,10/15/1998,,20775-bb8704243q-0-2.tgz,document-source,VOLUME95_ISSUE7_THURSDAYOCTOBER15_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 95, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb3175183n,Object,20775-bb3175183n-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,9/28/1995,,28-Sep-95,,9/28/1995,,20775-bb3175183n-0-2.tgz,document-source,VOLUME86_ISSUE3_THURSDAYSEPTEMBER28_1995.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 86, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb11273809,Object,20775-bb11273809-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,11/3/1976,,3-Nov-76,,11/3/1976,,20775-bb11273809-0-2.tgz,document-source,VOLUME29_ISSUE18_WEDNESDAYNOVEMBER3_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 29, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb4984068v,Object,20775-bb4984068v-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,4/28/1980,,28-Apr-80,,4/28/1980,,20775-bb4984068v-0-2.tgz,document-source,VOLUME40_ISSUE21_MONDAYAPRIL28_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 40, Issue 21",, +http://library.ucsd.edu/ark:/20775/bb0001096n,Object,20775-bb0001096n-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,10/22/1975,,22-Oct-75,,10/22/1975,,20775-bb0001096n-0-2.tgz,document-source,VOLUME26_ISSUE14_WEDNESDAYOCTOBER22_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 26, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb65881822,Object,20775-bb65881822-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,2/2/1977,,2-Feb-77,,2/2/1977,,20775-bb65881822-0-2.tgz,document-source,VOLUME30_ISSUE11_WEDNESDAYFEBRUARY2_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 30, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb2321928r,Object,20775-bb2321928r-0-1.pdf,document-service,text,,The Guardian,,,,UCSD Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,2/2/1981,,2-Feb-81,,2/2/1981,,20775-bb2321928r-0-2.tgz,document-source,VOLUME42_ISSUE9_MONDAYFEBRUARY2_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 42, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb0820208b,Object,20775-bb0820208b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,Daily Guardian,The Guardian,,,,,,,,,,,,,3/29/2004,,29-Mar-04,,3/29/2004,,20775-bb0820208b-0-2.tgz,document-source,VOLUME112_ISSUE1_MONDAYMARCH29_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 112, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb9455098d,Object,20775-bb9455098d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/9/1988,,9-May-88,,5/9/1988,,20775-bb9455098d-0-2.tgz,document-source,VOLUME64_ISSUE11_MONDAYMAY9_1988.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 64, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb2697356n,Object,20775-bb2697356n-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/28/2002,,28-Oct-02,,10/28/2002,,20775-bb2697356n-0-2.tgz,document-source,VOLUME107_ISSUE10_MONDAYOCTOBER28_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 107, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb5632539q,Object,20775-bb5632539q-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,5/28/1974,,28-May-74,,5/28/1974,,20775-bb5632539q-0-2.tgz,document-source,VOLUME22_ISSUE17_TUESDAYMAY28_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 22, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb96940148,Object,20775-bb96940148-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,The Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,10/22/1992,10/22/1992,22-Oct-92,22-Oct-92,10/22/1992,10/22/1992,20775-bb96940148-0-2.tgz,document-source,VOLUME77_ISSUE9_THURSDAYOCTOBER22_1992.pdf,VOLUME77_ISSUE9_THURSDAYOCTOBER22_1992.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 77, Issue 9","Volume 77, Issue 9", +http://library.ucsd.edu/ark:/20775/bb4130944j,Object,20775-bb4130944j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/6/2008,,6-Nov-08,,11/6/2008,,,,11_06_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb8328811z,Object,20775-bb8328811z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,4/11/1994,,11-Apr-94,,4/11/1994,,20775-bb8328811z-0-2.tgz,document-source,VOLUME82_ISSUE5_MONDAYAPRIL11_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 82, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb8909018q,Object,20775-bb8909018q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,9/19/2006,,19-Sep-06,,9/19/2006,,20775-bb8909018q-0-2.tgz,document-source,TUESDAYSEPTEMBER19_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 119, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb0820207t,Object,20775-bb0820207t-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,1/22/1975,,22-Jan-75,,1/22/1975,,20775-bb0820207t-0-2.tgz,document-source,VOLUME24_ISSUE8_WEDNESDAYJANUARY22_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 24, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb20152458,Object,2013-04-29.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/29/2013,,29-Apr-13,,4/29/2013,,,,2013-04-29.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 49",,Newspaper +http://library.ucsd.edu/ark:/20775/bb7134747s,Object,2013-2014ssg.pdf,document-service,text,eng - English,UCSD Guardian,,Student Survival Guide 2013-14,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,12/5/2013,,29-Oct-13,,12/5/2013,,,,2013-2014ssg.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,,Newspaper +http://library.ucsd.edu/ark:/20775/bb04106557,Object,20775-bb04106557-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/17/1985,,17-Oct-85,,10/17/1985,,20775-bb04106557-0-2.tgz,document-source,VOLUME56_ISSUE7_THURSDAYOCTOBER17_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 56, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb9694013r,Object,20775-bb9694013r-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,9/22/1975,,22-Sep-75,,9/22/1975,,20775-bb9694013r-0-2.tgz,document-source,VOLUME26_ISSUE1_MONDAYMONDAYSEPTEMBER22_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,"La Jolla, CA","La Jolla, CA","Volume 26, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb86018518,Object,20775-bb86018518-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,2/12/1974,,12-Feb-74,,2/12/1974,,20775-bb86018518-0-2.tgz,document-source,VOLUME21_ISSUE11_FRIDAYFEBRUARY12_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 21, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb8328812g,Object,20775-bb8328812g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,11/4/1993,,4-Nov-93,,11/4/1993,,20775-bb8328812g-0-2.tgz,document-source,VOLUME80_ISSUE13_THURSDAYNOVEMBER4_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 80, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb0854340c,Object,20775-bb0854340c-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,1/25/1982,,25-Jan-82,,1/25/1982,,20775-bb0854340c-0-2.tgz,document-source,VOLUME45_ISSUE7_MONDAYJANUARY25_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb0718303s,Object,2013-05-02.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/2/2013,,2-May-13,,5/2/2013,,,,2013-05-02.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 46, Issue 50",,Newspaper +http://library.ucsd.edu/ark:/20775/bb0581299v,Object,20775-bb0581299v-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/27/2003,,27-Jan-03,,1/27/2003,,20775-bb0581299v-0-2.tgz,document-source,VOLUME108_ISSUE7_MONDAYJANUARY27_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 108, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb9455097w,Object,20775-bb9455097w-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,Daily Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,10/3/1969,,3-Oct-69,,10/3/1969,,20775-bb9455097w-0-2.tgz,document-source,VOLUME8_ISSUE1_OCTOBER3_1969.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 8, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb3960175h,Object,20775-bb3960175h-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,Triton Times,Daily Guardian,UCSD Guardian,,,,,,,,,,,,,1/8/1979,,8-Jan-79,,1/8/1979,,20775-bb3960175h-0-2.tgz,document-source,VOLUME35_ISSUE31_MONDAYJANUARY8_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 35, Issue 31",, +http://library.ucsd.edu/ark:/20775/bb90796675,Object,20775-bb90796675-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,The Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,1/9/1978,,9-Jan-78,,1/9/1978,,20775-bb90796675-0-2.tgz,document-source,VOLUME33_ISSUE1_MONDAYJANUARY9_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 33, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb0035383r,Object,20775-bb0035383r-0-1.pdf,document-service,text,,UCSD Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,4/9/2012,,9-Apr-12,,4/9/2012,,,,2012-04-09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 45, Issue 43",, +http://library.ucsd.edu/ark:/20775/bb4984069c,Object,20775-bb4984069c-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,2/17/2000,,17-Feb-00,,2/17/2000,,20775-bb4984069c-0-2.tgz,document-source,VOLUME99_ISSUE12_THURSDAYFEBRUARY17_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 99, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb5871449j,Object,20775-bb5871449j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,2/22/1982,,22-Feb-82,,2/22/1982,,20775-bb5871449j-0-2.tgz,document-source,VOLUME45_ISSUE15_MONDAYFEBRUARY22_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 45, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb95233565,Object,20775-bb95233565-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,10/7/1982,,7-Oct-82,,10/7/1982,,20775-bb95233565-0-2.tgz,document-source,VOLUME47_ISSUE5_THURSDAYOCTOBER7_1982.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb31751845,Object,20775-bb31751845-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,11/15/1984,,15-Nov-84,,11/15/1984,,20775-bb31751845-0-2.tgz,document-source,VOLUME53_ISSUE18_THURSDAYNOVEMBER15_1984.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 53, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb65199231,Object,20775-bb65199231-0-1.pdf,document-service,text,,The Guardian,,,,UCSD Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,4/20/1981,,20-Apr-81,,4/20/1981,,20775-bb65199231-0-2.tgz,document-source,VOLUME43_ISSUE7_MONDAYAPRIL20_1981.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 43, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb2560967z,Object,20775-bb2560967z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,4/10/2008,,10-Apr-08,,4/10/2008,,,,04_10_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb8192780v,Object,2014-05-01.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/1/2014,,1-May-14,,5/1/2014,,,,2014-05-01.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 47, Issue 50",,Newspaper +http://library.ucsd.edu/ark:/20775/bb26973596,Object,20775-bb26973596-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,4/23/1975,,23-Apr-75,,4/23/1975,,20775-bb26973596-0-2.tgz,document-source,VOLUME25_ISSUE11_WEDNESDAYAPRIL23_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 25, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb7919252h,Object,20775-bb7919252h-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/15/2003,,15-May-03,,5/15/2003,,20775-bb7919252h-0-2.tgz,document-source,VOLUME109_ISSUE14_THURSDAYMAY15_2003.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 109, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb83288130,Object,20775-bb83288130-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,UCSD Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,5/11/1979,,11-May-79,,5/11/1979,,20775-bb83288130-0-2.tgz,document-source,VOLUME37_ISSUE18_FRIDAYMAY11_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 37, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb3175181m,Object,20775-bb3175181m-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,Triton Times,The Guardian,,,,,,,,,,,,,11/30/2006,,30-Nov-06,,11/30/2006,,20775-bb3175181m-0-2.tgz,document-source,THURSDAYNOVEMBER30_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 119, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb1980630c,Object,20775-bb1980630c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/2/1983,,2-May-83,,5/2/1983,,20775-bb1980630c-0-2.tgz,document-source,VOLUME49_ISSUE9_MONDAYMAY2_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 49, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb4028427g,Object,20775-bb4028427g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,1/30/1992,,30-Jan-92,,1/30/1992,,20775-bb4028427g-0-2.tgz,document-source,VOLUME75_ISSUE8_THURSDAYJANUARY30_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 75, Issue 8",, +http://library.ucsd.edu/ark:/20775/bb0410654q,Object,20775-bb0410654q-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,3/5/2001,,5-Mar-01,,3/5/2001,,20775-bb0410654q-0-2.tgz,document-source,VOLUME102_ISSUE17_MONDAYMARCH5_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 102, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb6519922h,Object,20775-bb6519922h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,,,,,3/31/1997,,31-Mar-97,,3/31/1997,,20775-bb6519922h-0-2.tgz,document-source,VOLUME91_ISSUE1_MONDAYMARCH31_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 91, Issue 1",, +http://library.ucsd.edu/ark:/20775/bb0239999c,Object,20775-bb0239999c-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,3/2/1998,,2-Mar-98,,3/2/1998,,20775-bb0239999c-0-2.tgz,document-source,VOLUME93_ISSUE17_MONDAYMARCH2_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 93, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb65881801,Object,20775-bb65881801-0-1.pdf,document-service,text,,Triton Times,,,,Guardian,UCSD Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/14/1975,,14-Feb-75,,2/14/1975,,20775-bb65881801-0-2.tgz,document-source,VOLUME24_ISSUE18_FRIDAYFEBRUARY14_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 24, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb4984066t,Object,20775-bb4984066t-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,2/2/1989,,2-Feb-89,,2/2/1989,,20775-bb4984066t-0-2.tgz,document-source,VOLUME66_ISSUE9_THURSDAYFEBRUARY2_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 66, Issue 9",, +http://library.ucsd.edu/ark:/20775/bb39601740,Object,20775-bb39601740-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,2/27/2006,,27-Feb-06,,2/27/2006,,20775-bb39601740-0-2.tgz,document-source,MONDAYFEBRUARY27_2006.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 117, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb5393633q,Object,20775-bb5393633q-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Triton Times,Guardian,,,,,,,,,,,,,5/13/2004,,13-May-04,,5/13/2004,,20775-bb5393633q-0-2.tgz,document-source,VOLUME112_ISSUE14_THURSDAYMAY13_2004.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 112, Issue 14",, +http://library.ucsd.edu/ark:/20775/bb0581298b,Object,20775-bb0581298b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/14/2002,,14-Oct-02,,10/14/2002,,20775-bb0581298b-0-2.tgz,document-source,VOLUME107_ISSUE6_MONDAYOCTOBER14_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 107, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb2697358p,Object,20775-bb2697358p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Guardian,Triton Times,The Guardian,,,,,,,,,,,,,10/6/1997,,6-Oct-97,,10/6/1997,,20775-bb2697358p-0-2.tgz,document-source,VOLUME92_ISSUE4_MONDAYOCTOBER6_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 92, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb80558947,Object,20775-bb80558947-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,11/19/2007,,19-Nov-07,,11/19/2007,,,,11_19_07.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb96940169,Object,20775-bb96940169-0-1.pdf,document-service,text,,Triton Times,Triton Times,,,Daily Guardian,The Guardian,Guardian,UCSD Guardian,Daily Guardian,The Guardian,Guardian,UCSD Guardian,,,,,,,,,5/10/1978,5/10/1978,10-May-78,10-May-78,5/10/1978,5/10/1978,20775-bb96940169-0-2.tgz,document-source,VOLUME34_ISSUE17_WEDNESDAYMAY10_1978.pdf,VOLUME34_ISSUE17_WEDNESDAYMAY10_1978.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 34, Issue 17","Volume 34, Issue 17", +http://library.ucsd.edu/ark:/20775/bb5632537p,Object,20775-bb5632537p-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,Guardian,UCSD Guardian,The Guardian,,,,,,,,,,,,,5/14/1974,,14-May-74,,5/14/1974,,20775-bb5632537p-0-2.tgz,document-source,VOLUME22_ISSUE13_TUESDAYMAY14_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 22, Issue 13",, +http://library.ucsd.edu/ark:/20775/bb3960172z,Object,20775-bb3960172z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,Guardian,The Guardian,,,,,,,,,,,,,1/21/1986,,21-Jan-86,,1/21/1986,,20775-bb3960172z-0-2.tgz,document-source,VOLUME57_ISSUE5_TUESDAYJANUARY21_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 57, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb0854341w,Object,20775-bb0854341w-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,9/26/1980,,26-Sep-80,,9/26/1980,,20775-bb0854341w-0-2.tgz,document-source,VOLUME41_ISSUE6_FRIDAYSEPTEMBER26_1980.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 41, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb9455099x,Object,20775-bb9455099x-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Daily Guardian,The Guardian,Guardian,,,,,,,,,,,,,4/30/1987,,30-Apr-87,,4/30/1987,,20775-bb9455099x-0-2.tgz,document-source,VOLUME58_ISSUE50_THURSDAYAPRIL30_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 58, Issue 50",, +http://library.ucsd.edu/ark:/20775/bb86018539,Object,20775-bb86018539-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,5/4/2000,,4-May-00,,5/4/2000,,20775-bb86018539-0-2.tgz,document-source,VOLUME100_ISSUE10_THURSDAYMAY4_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 100, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb9694015s,Object,20775-bb9694015s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,10/10/1985,,10-Oct-85,,10/10/1985,,20775-bb9694015s-0-2.tgz,document-source,VOLUME56_ISSUE5_THURSDAYOCTOBER10_1985.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 56, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb56325386,Object,20775-bb56325386-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,The Guardian,Daily Guardian,Triton Times,,,,,,,,,,,,,4/14/1997,,14-Apr-97,,4/14/1997,,20775-bb56325386-0-2.tgz,document-source,VOLUME91_ISSUE5_MONDAYAPRIL14_1997.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 91, Issue 5",, +http://library.ucsd.edu/ark:/20775/bb87042405,Object,20775-bb87042405-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,5/30/2000,,30-May-00,,5/30/2000,,20775-bb87042405-0-2.tgz,document-source,VOLUME100_ISSUE17_TUESDAYMAY30_2000.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 100, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb90796696,Object,20775-bb90796696-0-1.pdf,document-service,text,,Guardian,,,,The Guardian,UCSD Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,10/27/1978,,27-Oct-78,,10/27/1978,,20775-bb90796696-0-2.tgz,document-source,VOLUME35_ISSUE16_FRIDAYOCTOBER27_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 35, Issue 16",, +http://library.ucsd.edu/ark:/20775/bb4984067b,Object,20775-bb4984067b-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/12/1996,,12-Feb-96,,2/12/1996,,20775-bb4984067b-0-2.tgz,document-source,VOLUME87_ISSUE11_MONDAYFEBRUARY12_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 87, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb31751824,Object,20775-bb31751824-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Triton Times,The Guardian,Daily Guardian,,,,,,,,,,,,,11/9/1989,,9-Nov-89,,11/9/1989,,20775-bb31751824-0-2.tgz,document-source,VOLUME68_ISSUE15_THURSDAYNOVEMBER9_1989.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 68, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb8328810f,Object,20775-bb8328810f-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,5/26/1994,,26-May-94,,5/26/1994,,20775-bb8328810f-0-2.tgz,document-source,VOLUME82_ISSUE18_THURSDAYMAY26_1994.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 82, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb1195640j,Object,20775-bb1195640j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/28/1996,,28-Oct-96,,10/28/1996,,20775-bb1195640j-0-2.tgz,document-source,VOLUME89_ISSUE10_MONDAYOCTOBER28_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 89, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb3960173g,Object,20775-bb3960173g-0-1.pdf,document-service,text,,Daily Guardian,,,,Triton Times,The Guardian,UCSD Guardian,Guardian,,,,,,,,,,,,,10/24/1979,,24-Oct-79,,10/24/1979,,20775-bb3960173g-0-2.tgz,document-source,VOLUME38_ISSUE24_WEDNESDAYOCTOBER24_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 24",, +http://library.ucsd.edu/ark:/20775/bb0854342d,Object,20775-bb0854342d-0-1.pdf,document-service,text,,UCSD Guardian,,,,Guardian,Daily Guardian,The Guardian,Triton Times,,,,,,,,,,,,,2/5/1990,,5-Feb-90,,2/5/1990,,20775-bb0854342d-0-2.tgz,document-source,VOLUME69_ISSUE10_MONDAYFEBRUARY5_1990.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 69, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb0239998v,Object,20775-bb0239998v-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,3/4/1993,,4-Mar-93,,3/4/1993,,20775-bb0239998v-0-2.tgz,document-source,VOLUME78_ISSUE18_THURSDAYMARCH4_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 78, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb0581297t,Object,20775-bb0581297t-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Daily Guardian,Guardian,Triton Times,,,,,,,,,,,,,10/15/1992,,15-Oct-92,,10/15/1992,,20775-bb0581297t-0-2.tgz,document-source,VOLUME77_ISSUE7_THURSDAYOCTOBER15_1992.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 77, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb79192531,Object,20775-bb79192531-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,11/25/1996,,25-Nov-96,,11/25/1996,,20775-bb79192531-0-2.tgz,document-source,VOLUME89_ISSUE18_MONDAYNOVEMBER25_1996.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 89, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb65199252,Object,20775-bb65199252-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Guardian,Triton Times,Daily Guardian,,,,,,,,,,,,,3/3/1983,,3-Mar-83,,3/3/1983,,20775-bb65199252-0-2.tgz,document-source,VOLUME48_ISSUE18_THURSDAYMARCH3_1983.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 48, Issue 18",, +http://library.ucsd.edu/ark:/20775/bb5598534j,Object,20775-bb5598534j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,1/26/2009,,26-Jan-09,,1/26/2009,,,,01_26_09.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb60079720,Object,20775-bb60079720-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Guardian,Daily Guardian,,,,,,,,,,,,,1/28/1991,,28-Jan-91,,1/28/1991,,20775-bb60079720-0-2.tgz,document-source,VOLUME72_ISSUE7_MONDAYJANUARY28_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 72, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb08885952,Object,20775-bb08885952-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,2/19/2008,,19-Feb-08,,2/19/2008,,,,02_19_08.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,,, +http://library.ucsd.edu/ark:/20775/bb7441429p,Object,20775-bb7441429p-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,12/3/1998,,3-Dec-98,,12/3/1998,,20775-bb7441429p-0-2.tgz,document-source,VOLUME95_ISSUE20_THURSDAYDECEMBER3_1998.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 95, Issue 20",, +http://library.ucsd.edu/ark:/20775/bb6007970z,Object,20775-bb6007970z-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,11/18/1977,,18-Nov-77,,11/18/1977,,20775-bb6007970z-0-2.tgz,document-source,VOLUME32_ISSUE25_FRIDAYNOVEMBER18_1977.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 32, Issue 25",, +http://library.ucsd.edu/ark:/20775/bb1980631w,Object,20775-bb1980631w-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,1/24/1991,,24-Jan-91,,1/24/1991,,20775-bb1980631w-0-2.tgz,document-source,VOLUME72_ISSUE6_THURSDAYJANUARY24_1991.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 72, Issue 6",, +http://library.ucsd.edu/ark:/20775/bb8124034j,Object,20775-bb8124034j-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,11/21/2002,,21-Nov-02,,11/21/2002,,20775-bb8124034j-0-2.tgz,document-source,VOLUME107_ISSUE17_THURSDAYNOVEMBER21_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 107, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb5018199g,Object,20775-bb5018199g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Triton Times,Guardian,,,,,,,,,,,,,4/12/2001,,12-Apr-01,,4/12/2001,,20775-bb5018199g-0-2.tgz,document-source,VOLUME103_ISSUE4_THURSDAYAPRIL12_2001.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 103, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb06836905,Object,20775-bb06836905-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,10/25/1993,,25-Oct-93,,10/25/1993,,20775-bb06836905-0-2.tgz,document-source,VOLUME80_ISSUE10_MONDAYOCTOBER25_1993.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 80, Issue 10",, +http://library.ucsd.edu/ark:/20775/bb9079668p,Object,20775-bb9079668p-0-1.pdf,document-service,text,,Daily Guardian,,,,UCSD Guardian,Triton Times,Guardian,The Guardian,,,,,,,,,,,,,9/26/1979,,26-Sep-79,,9/26/1979,,20775-bb9079668p-0-2.tgz,document-source,VOLUME38_ISSUE4_WEDNESDAYSEPTEMBER26_1979.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 38, Issue 4",, +http://library.ucsd.edu/ark:/20775/bb8601850r,Object,20775-bb8601850r-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,The Guardian,Daily Guardian,,,,,,,,,,,,,6/1/1987,,1-Jun-87,,6/1/1987,,20775-bb8601850r-0-2.tgz,document-source,VOLUME58_ISSUE59_MONDAYJUNE1_1987.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 59",, +http://library.ucsd.edu/ark:/20775/bb7134390s,Object,20775-bb7134390s-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/2/2011,,2-Jun-11,,6/2/2011,,,,06_02_11.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 44, Issue 30",, +http://library.ucsd.edu/ark:/20775/bb2049374f,Object,2012-10-01.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,10/1/2012,,1-Oct-12,,10/1/2012,,,,2012-10-01.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 2",,Newspaper +http://library.ucsd.edu/ark:/20775/bb6007971g,Object,20775-bb6007971g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,Triton Times,The Guardian,Guardian,,,,,,,,,,,,,10/21/1999,,21-Oct-99,,10/21/1999,,20775-bb6007971g-0-2.tgz,document-source,VOLUME98_ISSUE7_THURSDAYOCTOBER21_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 98, Issue 7",, +http://library.ucsd.edu/ark:/20775/bb11956412,Object,20775-bb11956412-0-1.pdf,document-service,text,,UCSD Guardian,,,,The Guardian,Triton Times,Daily Guardian,Guardian,,,,,,,,,,,,,10/31/2005,,31-Oct-05,,10/31/2005,,20775-bb11956412-0-2.tgz,document-source,VOLUME116_ISSUE12_MONDAYOCTOBER31_2005.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 116, Issue 12",, +http://library.ucsd.edu/ark:/20775/bb6519924j,Object,20775-bb6519924j-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,4/7/1978,,7-Apr-78,,4/7/1978,,20775-bb6519924j-0-2.tgz,document-source,VOLUME34_ISSUE3_FRIDAYAPRIL7_1978.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 34, Issue 3",, +http://library.ucsd.edu/ark:/20775/bb55647643,Object,2013-05-23.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/23/2013,,23-May-13,,5/23/2013,,,,2013-05-23.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 46, Issue 56",,Newspaper +http://library.ucsd.edu/ark:/20775/bb1980632d,Object,20775-bb1980632d-0-1.pdf,document-service,text,,Triton Times,,,,Daily Guardian,UCSD Guardian,Guardian,The Guardian,,,,,,,,,,,,,11/29/1976,,29-Nov-76,,11/29/1976,,20775-bb1980632d-0-2.tgz,document-source,VOLUME29_ISSUE28_MONDAYNOVEMBER29_1976.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 29, Issue 28",, +http://library.ucsd.edu/ark:/20775/bb08202069,Object,20775-bb08202069-0-1.pdf,document-service,text,,Triton Times,,,,The Guardian,Guardian,UCSD Guardian,Daily Guardian,,,,,,,,,,,,,2/26/1975,,26-Feb-75,,2/26/1975,,20775-bb08202069-0-2.tgz,document-source,VOLUME24_ISSUE22_WEDNESDAYFEBRUARY26_1975.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 24, Issue 22",, +http://library.ucsd.edu/ark:/20775/bb7919250g,Object,20775-bb7919250g-0-1.pdf,document-service,text,,UCSD Guardian,,,,Daily Guardian,The Guardian,Guardian,Triton Times,,,,,,,,,,,,,5/17/1999,,17-May-99,,5/17/1999,,20775-bb7919250g-0-2.tgz,document-source,VOLUME97_ISSUE15_MONDAYMAY17_1999.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 97, Issue 15",, +http://library.ucsd.edu/ark:/20775/bb4642768m,Object,20775-bb4642768m-0-1.pdf,document-service,text,,Triton Times,,,,UCSD Guardian,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,5/7/1974,,7-May-74,,5/7/1974,,20775-bb4642768m-0-2.tgz,document-source,VOLUME22_ISSUE11_MAY7_1974.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 22, Issue 11",, +http://library.ucsd.edu/ark:/20775/bb4028429h,Object,20775-bb4028429h-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,The Guardian,Daily Guardian,Guardian,,,,,,,,,,,,,5/28/2002,,28-May-02,,5/28/2002,,20775-bb4028429h-0-2.tgz,document-source,VOLUME106_ISSUE17_TUESDAYMAY28_2002.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 106, Issue 17",, +http://library.ucsd.edu/ark:/20775/bb65545377,Object,2014-06-05.pdf,document-service,text,eng - English,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/5/2014,,5-Jun-14,,6/5/2014,,,,2014-06-05.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 -November 26, 1980); The Guardian (January 5, 1981 -June 4, 1981); UCSD Guardian (September 15, 1981 -)",PDF file includes photographs,,,"La Jolla, CA",,"Volume 47, Issue 60",,Newspaper +http://library.ucsd.edu/ark:/20775/bb5018198z,Object,20775-bb5018198z-0-1.pdf,document-service,text,,UCSD Guardian,,,,Triton Times,Guardian,Daily Guardian,The Guardian,,,,,,,,,,,,,6/2/1986,,2-Jun-86,,6/2/1986,,,,VOLUME58_ISSUE19_MONDAYJUNE2_1986.pdf,,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)",,,"La Jolla, CA",,"Volume 58, Issue 19",, +http://library.ucsd.edu/ark:/20775/bb9762270c,Object,20775-bb9762270c-0-1.pdf,document-service,text,,UCSD Guardian,UCSD Guardian,,,Daily Guardian,Guardian,The Guardian,Triton Times,Daily Guardian,Guardian,The Guardian,Triton Times,,,,,,,,,11/24/1986,11/24/1986,24-Nov-86,24-Nov-86,11/24/1986,11/24/1986,,,VOLUME58_ISSUE18_MONDAYNOVEMBER24_1986.pdf,VOLUME58_ISSUE18_MONDAYNOVEMBER24_1986.pdf,"Special Collections & Archives, UC San Diego, La Jolla, 92093-0175 (http://libraries.ucsd.edu/collections/sca/)",PDF file includes photographs,PDF file includes photographs,"The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","The UCSD student newspaper has been published under the five following titles during its existence: Triton Times (May 26, 1967 - June 9, 1978); Guardian (September 19, 1978 - June 1, 1979); Daily Guardian (June 4, 1979 - November 26, 1980); The Guardian (January 5, 1981 - June 4, 1981); UCSD Guardian (September 15, 1981 -)","La Jolla, CA","La Jolla, CA","Volume 58, Issue 18","Volume 58, Issue 18", diff --git a/data/doaj-article-sample.csv b/data/doaj-article-sample.csv new file mode 100644 index 00000000..bf09eaa5 --- /dev/null +++ b/data/doaj-article-sample.csv @@ -0,0 +1,1002 @@ +Title,Authors,DOI,URL,Date,Language,Subjects,ISSNs,Publisher,Citation,Licence +The Fisher Thermodynamics of Quasi-Probabilities,Flavia Pennini|Angelo Plastino,10.3390/e17127853,https://doaj.org/article/b75e8d5cca3f46cbbd63e91be5b32412,01/11/2015,English,Fisher information|quasi-probabilities|complementarity|Physics|QC1-999|Science|Q,1099-4300,MDPI AG,"Entropy, Vol 17, Iss 12, Pp 7848-7858 (2015)",CC BY +Aflatoxin Contamination of the Milk Supply: A Pakistan Perspective,Naveed Aslam|Peter C. Wynn,10.3390/agriculture5041172,https://doaj.org/article/0edc5af6672641c0bd45608812a34f9e,01/11/2015,English,aflatoxins|AFM1|AFB1|milk marketing chains|hepatocellular carcinoma|Agriculture (General)|S1-972|Agriculture|S,2077-0472,MDPI AG,"Agriculture (Basel), Vol 5, Iss 4, Pp 1172-1182 (2015)",CC BY +Metagenomic Analysis of Upwelling-Affected Brazilian Coastal Seawater Reveals Sequence Domains of Type I PKS and Modular NRPS,Rafael R. C. Cuadrat|Juliano C. Cury|Alberto M. R. Dávila,10.3390/ijms161226101,https://doaj.org/article/d9fe469f75a0442382b84ba4f50007ee,01/11/2015,English,PKS|NRPS|metagenomics|environmental genomics|upwelling|coastal environment|Chemistry|QD1-999|Science|Q,1422-0067,MDPI AG,"International Journal of Molecular Sciences, Vol 16, Iss 12, Pp 28285-28295 (2015)",CC BY +"Synthesis and Reactivity of a Cerium(III) Scorpionate Complex Containing a Redox Non-Innocent 2,2′-Bipyridine Ligand",Fabrizio Ortu|Hao Zhu|Marie-Emmanuelle Boulon|David P. Mills,10.3390/inorganics3040534,https://doaj.org/article/95606ed39deb4f43b96f7e6308ad15d3,01/11/2015,EN,lanthanide|cerium|scorpionate|tris(pyrazolyl)borate|radical|redox non-innocent|Inorganic chemistry|QD146-197,2304-6740,MDPI AG,"Inorganics (Basel), Vol 3, Iss 4, Pp 534-553 (2015)",CC BY +"Performance and Uncertainty Evaluation of Snow Models on Snowmelt Flow Simulations over a Nordic Catchment (Mistassibi, Canada)",Magali Troin|Richard Arsenault|François Brissette,10.3390/hydrology2040289,https://doaj.org/article/18b1d70730d44573ab5c264b7f93e041,01/11/2015,EN,snow models|hydrological models|snowmelt|uncertainty|Canada|Science|Q,2306-5338,MDPI AG,"Hydrology, Vol 2, Iss 4, Pp 289-317 (2015)",CC BY +Dihydrochalcone Compounds Isolated from Crabapple Leaves Showed Anticancer Effects on Human Cancer Cell Lines,Xiaoxiao Qin|Yun Feng Xing|Zhiqin Zhou|Yuncong Yao,10.3390/molecules201219754,https://doaj.org/article/5765b418183c4b70bb0b774f4627beb5,01/11/2015,English,Malus crabapples|leaves|dihydrochalcone compounds|anticancer activity|human cancer cell lines|Organic chemistry|QD241-441|Chemistry|QD1-999|Science|Q,1420-3049,MDPI AG,"Molecules, Vol 20, Iss 12, Pp 21193-21203 (2015)",CC BY +Ionic Liquids as Carbene Catalyst Precursors in the One-Pot Four-Component Assembly of Oxo Triphenylhexanoates (OTHOs),Anton Axelsson|Linda Ta|Henrik Sundén,10.3390/catal5042052,https://doaj.org/article/d1d39464834447c8bd9c269710e1e17d,01/11/2015,English,"ionic liquid|NHC|OTHO|multicomponent reaction|carbene|organocatalysis|organogel|MCR|1,6-ketoester|Physical and theoretical chemistry|QD450-801|Chemistry|QD1-999|Science|Q",2073-4344,MDPI AG,"Catalysts, Vol 5, Iss 4, Pp 2052-2067 (2015)",CC BY +Characterization of Aspartate Kinase from Corynebacterium pekinense and the Critical Site of Arg169,Weihong Min|Huiying Li|Hongmei Li|Chunlei Liu|Jingsheng Liu,10.3390/ijms161226098,https://doaj.org/article/253cd7d35aa34a8eaa264da748a52e0e,01/11/2015,English,Corynebacterium pekinense|aspartate kinase|characterization|molecular docking|Chemistry|QD1-999|Science|Q,1422-0067,MDPI AG,"International Journal of Molecular Sciences, Vol 16, Iss 12, Pp 28270-28284 (2015)",CC BY +Quaternifications and Extensions of Current Algebras on S3,Tosiaki Kori|Yuto Imai,10.3390/sym7042150,https://doaj.org/article/83bb4f8f7d09467da97780b81ea0c21d,01/11/2015,English,infinite dimensional lie algebras|current algebra|lie algebra extensions|quaternion analysis|81R10|17B65|17B67|22E67|Physics|QC1-999|Science|Q,2073-8994,MDPI AG,"Symmetry, Vol 7, Iss 4, Pp 2150-2180 (2015)",CC BY +Imaging of HCC—Current State of the Art,Christina Schraml|Sascha Kaufmann|Hansjoerg Rempp|Roland Syha|Dominik Ketelsen|Mike Notohamiprodjo|Konstantin Nikolaou,10.3390/diagnostics5040513,https://doaj.org/article/39227747725f45acbe245dcf81394ee9,01/11/2015,,hepatocellular carcinoma|magnetic resonance imaging|guidelines|diffusion-weighted imaging|dynamic contrast-enhanced magnetic resonance imaging|computed tomography|dual-energy computed tomography|volume perfusion computed tomography|contrast media|hepatocyte specific contrast media|Medicine|R|Medicine (General)|R5-920,2075-4418,MDPI AG,"Diagnostics, Vol 5, Iss 4, Pp 513-545 (2015)",CC BY +"Synthesis and Complexation of Well-Defined Labeled Poly(N,N-dimethylaminoethyl methacrylate)s (PDMAEMA)",Mark Billing|Tobias Rudolph|Eric Täuscher|Rainer Beckert|Felix H. Schacher,10.3390/polym7121526,https://doaj.org/article/515fc66a42e84bdeb8ebd3ad21659646,01/11/2015,English,atom transfer radical polymerization|intense chromophore|micellar interpolyelectrolyte complexes|polyelectrolytes|Science (General)|Q1-390|Science|Q,2073-4360,MDPI AG,"Polymers, Vol 7, Iss 12, Pp 2478-2493 (2015)",CC BY +UAV Control on the Basis of 3D Landmark Bearing-Only Observations,Simon Karpenko|Ivan Konovalenko|Alexander Miller|Boris Miller|Dmitry Nikolaev,10.3390/s151229768,https://doaj.org/article/c2932c5f6b6141849e8518136b847473,01/11/2015,English,UAV|visual odometry|projective geometry|video stream|feature points|modified Kalman filter|control|Technology (General)|T1-995|Technology|T|Analytical chemistry|QD71-142|Chemistry|QD1-999|Science|Q,1424-8220,MDPI AG,"Sensors, Vol 15, Iss 12, Pp 29802-29820 (2015)",CC BY +Polar Glycosylated and Lateral Non-Glycosylated Flagella from Aeromonas hydrophila Strain AH-1 (Serotype O11),Kelly M. Fulton|Elena Mendoza-Barberá|Susan M. Twine|Juan M. Tomás|Susana Merino,10.3390/ijms161226097,https://doaj.org/article/25bb95aaec104618954a6956e84341df,01/11/2015,English,O-flagellin polar glycosylation|lateral flagellin non-glycosylated|adhesion|biofilm|immune stimulation|Chemistry|QD1-999|Science|Q,1422-0067,MDPI AG,"International Journal of Molecular Sciences, Vol 16, Iss 12, Pp 28255-28269 (2015)",CC BY +Selective Oxidation of Glycerol with 3% H2O2 Catalyzed by LDH-Hosted Cr(III) Complex,Gongde Wu|Xiaoli Wang|Taineng Jiang|Qibo Lin,10.3390/catal5042039,https://doaj.org/article/2b508f4f44b143ec893d02e21d8f7b3a,01/11/2015,English,"layered-double hydroxides|Cr(III) complex|1,3-dihydroxyacetone|glycerol|Physical and theoretical chemistry|QD450-801|Chemistry|QD1-999|Science|Q",2073-4344,MDPI AG,"Catalysts, Vol 5, Iss 4, Pp 2039-2051 (2015)",CC BY +A Copper-Based Metal-Organic Framework as an Efficient and Reusable Heterogeneous Catalyst for Ullmann and Goldberg Type C–N Coupling Reactions,Wei Long|Wenge Qiu|Chongwei Guo|Chuanqiang Li|Liyun Song|Guangmei Bai|Guizhen Zhang|Hong He,10.3390/molecules201219756,https://doaj.org/article/537cad9d297045fba5791312bf15d1e5,01/11/2015,English,metal-organic frameworks|C–N coupling|heterogeneous catalysis|copper complex|Organic chemistry|QD241-441|Chemistry|QD1-999|Science|Q,1420-3049,MDPI AG,"Molecules, Vol 20, Iss 12, Pp 21178-21192 (2015)",CC BY +Performance-Based Cognitive Screening Instruments: An Extended Analysis of the Time versus Accuracy Trade-off,Andrew J. Larner,10.3390/diagnostics5040504,https://doaj.org/article/115729fe9cad481681cd5ba7d6161cdf,01/11/2015,,diagnosis|cognitive screening instruments|dementia|accuracy|Medicine|R|Medicine (General)|R5-920,2075-4418,MDPI AG,"Diagnostics, Vol 5, Iss 4, Pp 504-512 (2015)",CC BY +"Aberrant GLI1 Activation in DNA Damage Response, Carcinogenesis and Chemoresistance",Komaraiah Palle|Chinnadurai Mani|Kaushlendra Tripathi|Mohammad Athar,10.3390/cancers7040894,https://doaj.org/article/cd34d5771f614ef0b826741e0b4f8dea,01/11/2015,English,hedgehog signaling|GLI1|DNA damage|carcinogenesis|chemoresistance|Neoplasms. Tumors. Oncology. Including cancer and carcinogens|RC254-282|Internal medicine|RC31-1245|Medicine|R,2072-6694,MDPI AG,"Cancers, Vol 7, Iss 4, Pp 2330-2352 (2015)",CC BY +Trends and Potential of the Market for Combine Harvesters in Germany,Clemens Fuchs|Joachim Kasten|Mathias Urbanek,10.3390/machines3040364,https://doaj.org/article/3a5d3ab7bacd47768b97b16cd9b02ef7,01/11/2015,,combine harvesters|technical development|stocks and demand|Technology|T|Mechanical engineering and machinery|TJ1-1570,2075-1702,MDPI AG,"Machines, Vol 3, Iss 4, Pp 364-378 (2015)",CC BY +Improved Antioxidant Capacity of Optimization of a Self-Microemulsifying Drug Delivery System for Resveratrol,Ying Chen|Huiyong Zhang|Jing Yang|Haiyan Sun,10.3390/molecules201219750,https://doaj.org/article/f928f8c7abf54ff0a3775be4d85be6a3,01/11/2015,English,resveratrol|nano-encapsulation|self-emulsifying|oil-in-water|antioxidant|cytotoxicity|Organic chemistry|QD241-441|Chemistry|QD1-999|Science|Q,1420-3049,MDPI AG,"Molecules, Vol 20, Iss 12, Pp 21167-21177 (2015)",CC BY +Synthesis and Characterization of Cellulose-Based Hydrogels to Be Used as Gel Electrolytes,Maria Assunta Navarra|Chiara Dal Bosco|Judith Serra Moreno|Francesco Maria Vitucci|Annalisa Paolone|Stefania Panero,10.3390/membranes5040810,https://doaj.org/article/5a331257803448f8921b288e80b96b81,01/11/2015,English,cellulose hydrogels|gel electrolyte membranes|swelling behavior|ionic conductivity and diffusivity|Science (General)|Q1-390|Science|Q,2077-0375,MDPI AG,"Membranes, Vol 5, Iss 4, Pp 810-823 (2015)",CC BY +Therapeutic Potential of Cell Penetrating Peptides (CPPs) and Cationic Polymers for Chronic Hepatitis B,Bénédicte Ndeboko|Guy Joseph Lemamy|Peter. E Nielsen|Lucyna Cova,10.3390/ijms161226094,https://doaj.org/article/f1e9ca55363c4f359f307519e62fb123,01/11/2015,English,hepatitis B|antiviral therapy|cell penetrating peptides (CPPs)|chitosan (CS)|catonic polymers|peptide nucleic acids (PNAs)|hepatitis B virus (HBV)|duck hepatitis B virus (DHBV)|DNA vaccine|gene delivery|antigen (Ag)|Chemistry|QD1-999|Science|Q,1422-0067,MDPI AG,"International Journal of Molecular Sciences, Vol 16, Iss 12, Pp 28230-28241 (2015)",CC BY +ITSN2L Interacts with and Negatively Regulates RABEP1,Xiaoxu Yang|Feng Yan|Zhicheng He|Shan Liu|Yeqing Cheng|Ke Wei|Shiquan Gan|Jing Yuan|Shang Wang|Ye Xiao|Kaiqun Ren|Ning Liu|Xiang Hu|Xiaofeng Ding|Xingwang Hu|Shuanglin Xiang,10.3390/ijms161226091,https://doaj.org/article/3285a0234bf248d69afb2d098e259b17,01/11/2015,English,ITSN2L|RABEP1|endocytosis|endosome|interactions|Chemistry|QD1-999|Science|Q,1422-0067,MDPI AG,"International Journal of Molecular Sciences, Vol 16, Iss 12, Pp 28242-28254 (2015)",CC BY +Old Things New View: Ascorbic Acid Protects the Brain in Neurodegenerative Disorders,Adriana Covarrubias-Pinto|Aníbal Ignacio Acuña|Felipe Andrés Beltrán|Leandro Torres-Díaz|Maite Aintzane Castro,10.3390/ijms161226095,https://doaj.org/article/30eb804514a34976b5d3f179d476d905,01/11/2015,English,oxidative stress|brain energy metabolism|Chemistry|QD1-999|Science|Q,1422-0067,MDPI AG,"International Journal of Molecular Sciences, Vol 16, Iss 12, Pp 28194-28217 (2015)",CC BY +Therapeutic Targets for Neurodevelopmental Disorders Emerging from Animal Models with Perinatal Immune Activation,Daisuke Ibi|Kiyofumi Yamada,10.3390/ijms161226092,https://doaj.org/article/b4df8bd1ac3f452a8b7d40f63cbc8dc3,01/11/2015,English,schizophrenia|autism|animal model|polyI:C|astrocyte|interleukin-6|interferon-induced transmembrane 3|matrix metalloproteinase 3|gut microbiome|Chemistry|QD1-999|Science|Q,1422-0067,MDPI AG,"International Journal of Molecular Sciences, Vol 16, Iss 12, Pp 28218-28229 (2015)",CC BY +Reliance on God’s Help Scale as a Measure of Religious Trust—A Summary of Findings,Arndt Büssing|Daniela Rodrigues Recchia|Klaus Baumann,10.3390/rel6041358,https://doaj.org/article/e146de4eb2444bfb88c544a5b90dccf3,01/11/2015,English,Reliance on God’s help|religious trust|faith|questionnaire|validation|chronic illness|healthy persons|life satisfaction|quality of life|well-being|Religion (General)|BL1-50|Religions. Mythology. Rationalism|BL1-2790|Philosophy. Psychology. Religion|B,2077-1444,MDPI AG,"Religions, Vol 6, Iss 4, Pp 1358-1367 (2015)",CC BY +Apigenin Attenuates Melanoma Cell Migration by Inducing Anoikis through Integrin and Focal Adhesion Kinase Inhibition,Md. Abul Hasnat|Mehnaz Pervin|Ji Hong Lim|Beong Ou Lim,10.3390/molecules201219752,https://doaj.org/article/5c5b22c71d3a46ec90a6481c193b99d1,01/11/2015,English,apigenin|melanoma|anoikis|migration|integrin-FAK signaling|Organic chemistry|QD241-441|Chemistry|QD1-999|Science|Q,1420-3049,MDPI AG,"Molecules, Vol 20, Iss 12, Pp 21157-21166 (2015)",CC BY +Antioxidant Phytochemicals for the Prevention and Treatment of Chronic Diseases,Yu-Jie Zhang|Ren-You Gan|Sha Li|Yue Zhou|An-Na Li|Dong-Ping Xu|Hua-Bin Li,10.3390/molecules201219753,https://doaj.org/article/fe19c78d1e0842c0b95306ab58caf734,01/11/2015,English,antioxidant phytochemicals|health benefits|mechanism|cardiovascular disease|cancer|Organic chemistry|QD241-441|Chemistry|QD1-999|Science|Q,1420-3049,MDPI AG,"Molecules, Vol 20, Iss 12, Pp 21138-21156 (2015)",CC BY +"Comments on Ekino et al. Cloning and Characterization of a Unique Cytotoxic Protein Parasporin-5 Produced by Bacillus thuringiensis A1100 Strain. Toxins 2014, 6, 1882–1895",Leopoldo Palma,10.3390/toxins7124865,https://doaj.org/article/45c6d07238a24bd9b8426195149ac136,01/11/2015,English,n/a|Biology (General)|QH301-705.5|Science|Q,2072-6651,MDPI AG,"Toxins, Vol 7, Iss 12, Pp 5094-5095 (2015)",CC BY +Experimental Analysis of Dynamic Effects of FRP Reinforced Masonry Vaults,Marco Corradi|Antonio Borri|Giulio Castori|Kathryn Coventry,10.3390/ma8125445,https://doaj.org/article/935ad576a0f247a2b6c1c5de689b3acd,01/11/2015,EN,composite materials|vibration|brickwork masonry|mechanical testing|Technology|T|Electrical engineering. Electronics. Nuclear engineering|TK1-9971|Engineering (General). Civil engineering (General)|TA1-2040|Microscopy|QH201-278.5|Descriptive and experimental mechanics|QC120-168.85,1996-1944,MDPI AG,"Materials, Vol 8, Iss 12, Pp 8059-8071 (2015)",CC BY +Species Distribution Model for Management of an Invasive Vine in Forestlands of Eastern Texas,Hsiao-Hsuan Wang|Tomasz E. Koralewski|Erin K. McGrew|William E. Grant|Thomas D. Byram,10.3390/f6124374,https://doaj.org/article/0d4916eacb1849849a745c8539ef721d,01/11/2015,English,biodiversity|biological invasions|boosted regression trees|Japanese honeysuckle|likelihood of invasion|Lonicera japonica Thunb.|Forestry|SD1-669.5|Agriculture|S,1999-4907,MDPI AG,"Forests, Vol 6, Iss 12, Pp 4374-4390 (2015)",CC BY +"Weather Conditions, Weather Information and Car Crashes",Adriaan Perrels|Athanasios Votsis|Väinö Nurmi|Karoliina Pilli-Sihvola,10.3390/ijgi4042681,https://doaj.org/article/8918adaa7fb3484093d9691a8b372780,01/11/2015,English,responsiveness|road vehicle crashes|traffic safety|early warning|weather conditions|Mathematical geography. Cartography|GA1-1776|Geography. Anthropology. Recreation|G,2220-9964,MDPI AG,"ISPRS International Journal of Geo-Information, Vol 4, Iss 4, Pp 2681-2703 (2015)",CC BY +Fish Peroxiredoxins and Their Role in Immunity,Yulema Valero|Francisco J. Martínez-Morcillo|M. Ángeles Esteban|Elena Chaves-Pozo|Alberto Cuesta,10.3390/biology4040860,https://doaj.org/article/123b9507a4054de282a9ef582e283d48,01/11/2015,English,peroxiredoxins|fish|immunity|antioxidant enzymes|natural killer enhancement factor|virus|Biology (General)|QH301-705.5|Science|Q,2079-7737,MDPI AG,"Biology, Vol 4, Iss 4, Pp 860-880 (2015)",CC BY +Argentatin B Inhibits Proliferation of Prostate and Colon Cancer Cells by Inducing Cell Senescence,Ela Alcántara-Flores|Alicia Enriqueta Brechú-Franco|Patricia García-López|Leticia Rocha-Zavaleta|Rebeca López-Marure|Mariano Martínez-Vázquez,10.3390/molecules201219757,https://doaj.org/article/b22773bc4dbf4fde8111374255e4c016,01/11/2015,English,argentatin B|colon cancer|prostate cancer|cell senescence|xenografts|Organic chemistry|QD241-441|Chemistry|QD1-999|Science|Q,1420-3049,MDPI AG,"Molecules, Vol 20, Iss 12, Pp 21125-21137 (2015)",CC BY +Microfluidic Impedimetric Cell Regeneration Assay to Monitor the Enhanced Cytotoxic Effect of Nanomaterial Perfusion,Mario Rothbauer|Irene Praisler|Dominic Docter|Roland H. Stauber|Peter Ertl,10.3390/bios5040736,https://doaj.org/article/7af5773061714123b095f4bfa4f0d008,01/11/2015,EN,lab-on-a-chip|cell chip|impedance|biosensor|nanoparticle|lung cancer|nanotoxicology|Biotechnology|TP248.13-248.65,2079-6374,MDPI AG,"Biosensors, Vol 5, Iss 4, Pp 736-749 (2015)",CC BY +Cancer Biomarkers from Genome-Scale DNA Methylation: Comparison of Evolutionary and Semantic Analysis Methods,Ioannis Valavanis|Eleftherios Pilalis|Panagiotis Georgiadis|Soterios Kyrtopoulos|Aristotelis Chatziioannou,10.3390/microarrays4040647,https://doaj.org/article/8cfa087c7ff6458691ce98d546428426,01/11/2015,English,DNA methylation|breast cancer|B-cell lymphoma|epigenetic biomarker|classification|graph-theory|evolutionary algorithm|gene ontology tree|Analytical chemistry|QD71-142|Chemistry|QD1-999|Science|Q,2076-3905,MDPI AG,"Microarrays, Vol 4, Iss 4, Pp 647-670 (2015)",CC BY +Indoor Air Contamination from Hazardous Waste Sites: Improving the Evidence Base for Decision-Making,Jill Johnston|Jacqueline MacDonald Gibson,10.3390/ijerph121214960,https://doaj.org/article/c4218cba4fe840f182857f319ede2f18,01/11/2015,English,vapor intrusion|hazardous waste|indoor air quality|environmental decision-making|contaminated sites|Public aspects of medicine|RA1-1270|Medicine|R,1660-4601,MDPI AG,"International Journal of Environmental Research and Public Health, Vol 12, Iss 12, Pp 15040-15057 (2015)",CC BY +Spatial Evaluation of Heavy Metals Concentrations in the Surface Sediment of Taihu Lake,Yong Niu|Wei Jiao|Hui Yu|Yuan Niu|Yong Pang|Xiangyang Xu|Xiaochun Guo,10.3390/ijerph121214966,https://doaj.org/article/cd78e00a360c41159a4fd51681b2cce2,01/11/2015,English,heavy metals|sediment|spatial distribution|toxic unit|Taihu Lake|Public aspects of medicine|RA1-1270|Medicine|R,1660-4601,MDPI AG,"International Journal of Environmental Research and Public Health, Vol 12, Iss 12, Pp 15028-15039 (2015)",CC BY +Energy Service Demand Projections and CO2 Reduction Potentials in Rural Households in 31 Chinese Provinces,Rui Xing|Tatsuya Hanaoka|Yuko Kanamori|Hancheng Dai|Toshihiko Masui,10.3390/su71215789,https://doaj.org/article/9a4244628d2d4c1d93b034a48a6c5094,01/11/2015,,China|rural household|Shared Socioeconomic Pathways|CO2 emission|efficient technology|Geography. Anthropology. Recreation|G|Environmental sciences|GE1-350,2071-1050,MDPI AG,"Sustainability, Vol 7, Iss 12, Pp 15833-15846 (2015)",CC BY +Ionic Nanofluids in Tribology,Noelia Saurín|Tulia Espinosa|José Sanes|Francisco-José Carrión|María-Dolores Bermúdez,10.3390/lubricants3040650,https://doaj.org/article/80761981e3c6410f859fced3fff4c4f1,01/11/2015,,nanoprticles|carbon nanotubes|grapheme|ionic liquids|friction|lubrication|wear|surfaces|interphases|Technology|T|Engineering (General). Civil engineering (General)|TA1-2040|Mechanics of engineering. Applied mechanics|TA349-359,2075-4442,MDPI AG,"Lubricants, Vol 3, Iss 4, Pp 650-663 (2015)",CC BY +Low Levels of Awareness of Lead Hazards among Pregnant Women in a High Risk—Johannesburg Neighbourhood,Tanya Haman|Angela Mathee|Andre Swart,10.3390/ijerph121214968,https://doaj.org/article/6f78ba86cc2c4367b8c4fe040bc7560a,01/11/2015,English,pregnant women|lead exposure|children|low awareness|Public aspects of medicine|RA1-1270|Medicine|R,1660-4601,MDPI AG,"International Journal of Environmental Research and Public Health, Vol 12, Iss 12, Pp 15022-15027 (2015)",CC BY +Molecular and Cytogenetic Characterization of New Wheat—Dasypyrum breviaristatum Derivatives with Post-Harvest Re-Growth Habit,Hongjun Zhang|Guangrong Li|Donghai Li|Dan Gao|Jie Zhang|Ennian Yang|Zujun Yang,10.3390/genes6041242,https://doaj.org/article/d56e730b29354c4eb58c2f8fbec70abf,01/11/2015,English,Dasypyrum breviaristatum|fluorescence in situ hybridization|molecular markers|wheat|Genetics|QH426-470|Biology (General)|QH301-705.5|Science|Q,2073-4425,MDPI AG,"Genes, Vol 6, Iss 4, Pp 1242-1255 (2015)",CC BY +Iridium-Catalyzed Asymmetric Ring-Opening of Oxabenzonorbornadienes with N-Substituted Piperazine Nucleophiles,Wen Yang|Renshi Luo|Dingqiao Yang,10.3390/molecules201219748,https://doaj.org/article/df93fac7ac4543c4a336b5983d412fc4,01/11/2015,English,iridium catalyst|asymmetric ring-opening|oxabenzonorbornadiene|chiral bisphosphine ligand|N-substituted piperazines|Organic chemistry|QD241-441|Chemistry|QD1-999|Science|Q,1420-3049,MDPI AG,"Molecules, Vol 20, Iss 12, Pp 21103-21124 (2015)",CC BY +Reconfigurable RF Energy Harvester with Customized Differential PCB Antenna,Alessandro Bertacchini|Luca Larcher|Moreno Maini|Luca Vincetti|Stefano Scorcioni,10.3390/jlpea5040257,https://doaj.org/article/c15f1a2c1af34179b72516d7c9250505,01/11/2015,English,RF energy harvester|reconfigurable RF-DC converter|differential antenna|Electrical engineering. Electronics. Nuclear engineering|TK1-9971|Technology|T,2079-9268,MDPI AG,"Journal of Low Power Electronics and Applications, Vol 5, Iss 4, Pp 257-273 (2015)",CC BY +Evaluating the Alignment of Organizational and Project Contexts for BIM Adoption: A Case Study of a Large Owner Organization,Hasan Burak Cavka|Sheryl Staub-French|Rachel Pottinger,10.3390/buildings5041265,https://doaj.org/article/d3c45d686dcc44109ee28de6927ef3d1,01/11/2015,English,building information modeling (BIM)|facilities management (FM)|handover|information management|alignment|Architecture|NA1-9428|Fine Arts|N|Building construction|TH1-9745|Technology|T,2075-5309,MDPI AG,"Buildings, Vol 5, Iss 4, Pp 1265-1300 (2015)",CC BY +"Estimation of Groundwater Recharges Using Empirical Formulae in Odeda Local Government Area, Ogun State, Nigeria",Oluseyi O. Adeleke|Victor Makinde|Ayobami O. Eruola|Oluwaseun F. Dada|Akintayo O. Ojo|Taiwo J. Aluko,10.3390/challe6020271,https://doaj.org/article/8c509d1fec1740c7aa3d8d0f335e586e,01/11/2015,,aquifer|evapotranspiration|groundwater recharge|recharge coefficient|General Works|A,2078-1547,MDPI AG,"Challenges, Vol 6, Iss 2, Pp 271-281 (2015)",CC BY +Throughput Maximization for Sensor-Aided Cognitive Radio Networks with Continuous Energy Arrivals,Thanh-Tung Nguyen|Insoo Koo,10.3390/s151229766,https://doaj.org/article/62e242d95ab64fbaaffb7d026caf4b74,01/11/2015,English,sensor network|sensor scheduling|energy harvesting|cooperative spectrum sensing|cognitive radio network|Technology (General)|T1-995|Technology|T|Analytical chemistry|QD71-142|Chemistry|QD1-999|Science|Q,1424-8220,MDPI AG,"Sensors, Vol 15, Iss 12, Pp 29782-29801 (2015)",CC BY +Immune Response of Multiparous Hyper-Immunized Sows against Peptides from Non-Structural and Structural Proteins of PRRSV,Edgar Rascón-Castelo|Alexel Burgara-Estrella|Mónica Reséndiz-Sandoval|Andrés Hernández-Lugo|Jesús Hernández,10.3390/vaccines3040973,https://doaj.org/article/0a0361c0c60e4fef858b8f88b5eb7eb5,01/11/2015,English,PRRSV|non-structural proteins|structural proteins|peptides|IFN-γ secreting cells|Immunologic diseases. Allergy|RC581-607|Specialties of internal medicine|RC581-951|Internal medicine|RC31-1245|Medicine|R,2076-393x,MDPI AG,"Vaccines, Vol 3, Iss 4, Pp 973-987 (2015)",CC BY +Location Planning Problem of Service Centers for Sustainable Home Healthcare: Evidence from the Empirical Analysis of Shanghai,Gang Du|Chuanwang Sun,10.3390/su71215787,https://doaj.org/article/58485561af544c63923eacff632ae6a4,01/11/2015,,location planning problem|home healthcare|mixed integer programming|sustainability|Geography. Anthropology. Recreation|G|Environmental sciences|GE1-350,2071-1050,MDPI AG,"Sustainability, Vol 7, Iss 12, Pp 15812-15832 (2015)",CC BY +"Comparison of Laser and Stereo Optical, SAR and InSAR Point Clouds from Air- and Space-Borne Sources in the Retrieval of Forest Inventory Attributes",Xiaowei Yu|Juha Hyyppä|Mika Karjalainen|Kimmo Nurminen|Kirsi Karila|Mikko Vastaranta|Ville Kankare|Harri Kaartinen|Markus Holopainen|Eija Honkavaara|Antero Kukko|Anttoni Jaakkola|Xinlian Liang|Yunsheng Wang|Hannu Hyyppä|Masato Katoh,10.3390/rs71215809,https://doaj.org/article/00f5889e84794395b86b36aee8a5964b,01/11/2015,English,forest inventory|3D technique|point cloud|airborne laser scanning|photogrammetry|radargrammetry|InSAR|Geography (General)|G1-922|Geography. Anthropology. Recreation|G,2072-4292,MDPI AG,"Remote Sensing, Vol 7, Iss 12, Pp 15933-15954 (2015)",CC BY +Enhancement of Spatial Resolution Using a Metamaterial Sensor in Nondestructive Evaluation,Adriana Savin|Alina Bruma|Rozina Steigmann|Nicoleta Iftimie|Dagmar Faktorova,10.3390/app5041412,https://doaj.org/article/867d5bd16d5b4fa7afe6587badd51dbd,01/11/2015,EN,nondestructive evaluation|metamaterials lens|metallic strip gratings|fiber reinforced plastic composites|evanescent waves|Technology|T|Engineering (General). Civil engineering (General)|TA1-2040|Biology (General)|QH301-705.5|Physics|QC1-999|Chemistry|QD1-999,2076-3417,MDPI AG,"Applied Sciences, Vol 5, Iss 4, Pp 1412-1430 (2015)",CC BY +Optimisation in the Design of Environmental Sensor Networks with Robustness Consideration,Setia Budi|Paulo de Souza|Greg Timms|Vishv Malhotra|Paul Turner,10.3390/s151229765,https://doaj.org/article/aa79c8b5b1f14373a049543e38222685,01/11/2015,English,environmental sensor networks|sensor networks design|sensor networks deployment|optimisation|evolutionary algorithm|spatial regression test|gap filling|noise detection|data quality|Technology (General)|T1-995|Technology|T|Analytical chemistry|QD71-142|Chemistry|QD1-999|Science|Q,1424-8220,MDPI AG,"Sensors, Vol 15, Iss 12, Pp 29765-29781 (2015)",CC BY +Theoretical Analysis of Dependence of Nonlinear Effects in Mode-Locked Yb:YAG Lasers with a Highly Nonlinear Intra-Cavity Medium,Takeshi Yoshida|Hiroaki Okunishi|Keisuke Kyomoto|Kento Kato|Kyosuke Shimabayashi|Shinichi Inayoshi|Motoki Morioka|Sakae Kawato,10.3390/app5041431,https://doaj.org/article/c582fb59cf754c9fbef08d3ec3dc7c0c,01/11/2015,EN,ultra-short laser pulses|ytterbium|ultrafast nonlinear optics|laser theory|Technology|T|Engineering (General). Civil engineering (General)|TA1-2040|Biology (General)|QH301-705.5|Physics|QC1-999|Chemistry|QD1-999,2076-3417,MDPI AG,"Applied Sciences, Vol 5, Iss 4, Pp 1431-1439 (2015)",CC BY +Relationships between Microstructural Parameters and Time-Dependent Mechanical Properties of a New Nickel-Based Superalloy AD730™,Louis Thébaud|Patrick Villechaise|Jonathan Cormier|Coraline Crozet|Alexandre Devaux|Denis Béchet|Jean-Michel Franchet|Antoine Organista|Florence Hamon,10.3390/met5042236,https://doaj.org/article/ef73ae45f6d34ea9862466d313a5921d,01/11/2015,English,cast and wrought Ni-based superalloy|single crystals|creep|dwell-fatigue properties|high temperatures|creep threshold stress|inter/intra granular properties|Mining engineering. Metallurgy|TN1-997|Technology|T,2075-4701,MDPI AG,"Metals, Vol 5, Iss 4, Pp 2236-2251 (2015)",CC BY +Object-Based Canopy Gap Segmentation and Classification: Quantifying the Pros and Cons of Integrating Optical and LiDAR Data,Jian Yang|Trevor Jones|John Caspersen|Yuhong He,10.3390/rs71215811,https://doaj.org/article/02a2e3c3940a4ecc9bae87e1026d293d,01/11/2015,English,canopy gap segmentation|classification|Object-Based Image Analysis (OBIA)|high spatial resolution|multispectral image|LiDAR|data integration|Geography (General)|G1-922|Geography. Anthropology. Recreation|G,2072-4292,MDPI AG,"Remote Sensing, Vol 7, Iss 12, Pp 15917-15932 (2015)",CC BY +"Genetic Dissection of Disease Resistance to the Blue Mold Pathogen, Peronospora tabacina, in Tobacco",Xia Wu|Dandan Li|Yinguang Bao|David Zaitlin|Robert Miller|Shengming Yang,10.3390/agronomy5040555,https://doaj.org/article/4d5b1b7ea96b49078b960da45435be83,01/11/2015,,tobacco|blue mold|disease resistance|genetic marker|Agriculture|S|Agriculture (General)|S1-972,2073-4395,MDPI AG,"Agronomy (Basel), Vol 5, Iss 4, Pp 555-568 (2015)",CC BY +Semi-Automated Object-Based Classification of Coral Reef Habitat using Discrete Choice Models,Steven Saul|Sam Purkis,10.3390/rs71215810,https://doaj.org/article/de8c17223e8c49a2b9d89a7060bc3197,01/11/2015,English,coral reef|discrete choice model|multinomial logistic|Geography (General)|G1-922|Geography. Anthropology. Recreation|G,2072-4292,MDPI AG,"Remote Sensing, Vol 7, Iss 12, Pp 15894-15916 (2015)",CC BY +Nurses’ Perceptions of Spirituality and Spiritual Care in Different Health Care Settings in the Netherlands,René van Leeuwen|Annemiek Schep-Akkerman,10.3390/rel6041346,https://doaj.org/article/2d015f7bf1ab4ffcb3f248045ba838f9,01/11/2015,English,spirituality|spiritual care|nursing|hospital care|mental health care|home care|Religion (General)|BL1-50|Religions. Mythology. Rationalism|BL1-2790|Philosophy. Psychology. Religion|B,2077-1444,MDPI AG,"Religions, Vol 6, Iss 4, Pp 1346-1357 (2015)",CC BY +NHL and RCGA Based Multi-Relational Fuzzy Cognitive Map Modeling for Complex Systems,Zhen Peng|Lifeng Wu|Zhenguo Chen,10.3390/app5041399,https://doaj.org/article/0a74de16ab2c4dde9a7927ebd2c33343,01/11/2015,EN,fuzzy cognitive map (FCM)|multi-relational data mining (MRDM)|nonlinear Hebbian learning (NHL)|real code genetic algorithm (RCGA)|complex system|Technology|T|Engineering (General). Civil engineering (General)|TA1-2040|Biology (General)|QH301-705.5|Physics|QC1-999|Chemistry|QD1-999,2076-3417,MDPI AG,"Applied Sciences, Vol 5, Iss 4, Pp 1399-1411 (2015)",CC BY +"Metabolic Engineering of the Phenylpropanoid and Its Primary, Precursor Pathway to Enhance the Flavor of Fruits and the Aroma of Flowers",Hadas Peled-Zehavi|Moran Oliva|Qingjun Xie|Vered Tzin|Michal Oren-Shamir|Asaph Aharoni|Gad Galili,10.3390/bioengineering2040204,https://doaj.org/article/2bfb03d77f8f41eb88f972315ca5cec8,01/11/2015,EN,aroma and flavor biotechnology|metabolic engineering|aromatic amino acids|volatiles|secondary metabolism|Technology|T|Biology (General)|QH301-705.5,2306-5354,MDPI AG,"Bioengineering (Basel), Vol 2, Iss 4, Pp 204-212 (2015)",CC BY +Establishing a Framework for Evaluating Environmental and Socio-Economic Impacts by Power Generation Technology Using an Input–output Table—A Case Study of Japanese Future Electricity Grid Mix,Shunichi Hienuki|Yuki Kudoh|Hiroki Hondo,10.3390/su71215786,https://doaj.org/article/b93a9069e06344c98de1f9ff29b0d8dd,01/11/2015,,scenario analysis|future grid mix|socio-economic and environmental impacts|input–output table|life cycle inventory analysis|Geography. Anthropology. Recreation|G|Environmental sciences|GE1-350,2071-1050,MDPI AG,"Sustainability, Vol 7, Iss 12, Pp 15794-15811 (2015)",CC BY +Mapping Rice Seasonality in the Mekong Delta with Multi-Year Envisat ASAR WSM Data,Duy Ba Nguyen|Kersten Clauss|Senmao Cao|Vahid Naeimi|Claudia Kuenzer|Wolfgang Wagner,10.3390/rs71215808,https://doaj.org/article/df9960ef383a469c83427c3f51e46224,01/11/2015,English,Envisat|ASAR|WSM|SAR|radar|paddy rice|rice mapping|time series|Mekong Delta|Vietnam|Geography (General)|G1-922|Geography. Anthropology. Recreation|G,2072-4292,MDPI AG,"Remote Sensing, Vol 7, Iss 12, Pp 15868-15893 (2015)",CC BY +Stem Cell-Based Cell Carrier for Targeted Oncolytic Virotherapy: Translational Opportunity and Open Questions,Janice Kim|Robert R. Hall|Maciej S. Lesniak|Atique U. Ahmed,10.3390/v7122921,https://doaj.org/article/71087b2bcd13447fa75002d7c72768ed,01/11/2015,English,cell carrier|oncolytic virus|stem cell|Microbiology|QR1-502|Science|Q,1999-4915,MDPI AG,"Viruses, Vol 7, Iss 12, Pp 6200-6217 (2015)",CC BY +"Response to Leopoldo Palma. Comments on Ekino et al. Cloning and Characterization of a Unique Cytotoxic Protein Parasporin-5 Produced by Bacillus thuringiensis A1100 Strain. Toxins 2014, 6, 1882–1895",Keisuke Ekino|Shiro Okumura|Tomoyuki Ishikawa|Sakae Kitada|Hiroyuki Saitoh|Tetsuyuki Akao|Takuji Oka|Yoshiyuki Nomura|Michio Ohba|Takashi Shin|Eiichi Mizuki,10.3390/toxins7124866,https://doaj.org/article/334178e82322469b8d9fdb9db335000b,01/11/2015,English,n/a|Biology (General)|QH301-705.5|Science|Q,2072-6651,MDPI AG,"Toxins, Vol 7, Iss 12, Pp 5096-5097 (2015)",CC BY +"“Oh, this is What It Feels Like”: A Role for the Body in Learning an Evidence-Based Practice",Robert Allan|Virginia Eatough|Micahel Ungar,10.3390/h4040861,https://doaj.org/article/b44017a070074762b2cbf5392dd76294,01/11/2015,,Interpretative phenomenological analysis|family therapy|couple therapy|evidence-based practice|embodiment|General Works|A,2076-0787,MDPI AG,"Humanities , Vol 4, Iss 4, Pp 861-884 (2015)",CC BY +The Ubiquity of Humanity and Textuality in Human Experience,Daihyun Chung,10.3390/h4040885,https://doaj.org/article/e4b3bd6870ad4a6fac75f895e04b2d25,01/11/2015,,humanities|questions|languages|integrationality|General Works|A,2076-0787,MDPI AG,"Humanities , Vol 4, Iss 4, Pp 885-904 (2015)",CC BY +Biodegradation of Ochratoxin A by Bacterial Strains Isolated from Vineyard Soils,Palmira De Bellis|Mariana Tristezza|Miriam Haidukowski|Francesca Fanelli|Angelo Sisto|Giuseppina Mulè|Francesco Grieco,10.3390/toxins7124864,https://doaj.org/article/587ae41fa0ea4574aced3a33f770e827,01/11/2015,English,ochratoxin|biodegradation|soil bacteria|detoxification|Acinetobacter|Biology (General)|QH301-705.5|Science|Q,2072-6651,MDPI AG,"Toxins, Vol 7, Iss 12, Pp 5079-5093 (2015)",CC BY +Multi-Decadal Variability of Polynya Characteristics and Ice Production in the North Water Polynya by Means of Passive Microwave and Thermal Infrared Satellite Imagery,Andreas Preußer|Günther Heinemann|Sascha Willmes|Stephan Paul,10.3390/rs71215807,https://doaj.org/article/baa9673ca95f4c9f9a5a41fd64833861,01/11/2015,English,MODIS|polynya|sea ice|passive microwave|Baffin Bay|Nares Strait|ice bridge|Geography (General)|G1-922|Geography. Anthropology. Recreation|G,2072-4292,MDPI AG,"Remote Sensing, Vol 7, Iss 12, Pp 15844-15867 (2015)",CC BY +Incomplete LPS Core-Specific Felix01-Like Virus vB_EcoM_VpaE1,Eugenijus Šimoliūnas|Monika Vilkaitytė|Laura Kaliniene|Aurelija Zajančkauskaitė|Algirdas Kaupinis|Juozas Staniulis|Mindaugas Valius|Rolandas Meškys|Lidija Truncaitė,10.3390/v7122932,https://doaj.org/article/90b9ca26e5e7492ba5d50aabfedaaee1,01/11/2015,English,E. coli lipopolysaccharide|inner core oligosacharide|bacteriophage vB_EcoM_VpaE1 host-range|genus Felix01likevirus|J0101|Microbiology|QR1-502|Science|Q,1999-4915,MDPI AG,"Viruses, Vol 7, Iss 12, Pp 6163-6181 (2015)",CC BY +Fluorescent Protein-Tagged Sindbis Virus E2 Glycoprotein Allows Single Particle Analysis of Virus Budding from Live Cells,Joyce Jose|Jinghua Tang|Aaron B. Taylor|Timothy S. Baker|Richard J. Kuhn,10.3390/v7122926,https://doaj.org/article/69f9f915c153450dbdfd21f33f02552a,01/11/2015,English,alphavirus|live imaging|virus assembly|filopodia|virus egress|Microbiology|QR1-502|Science|Q,1999-4915,MDPI AG,"Viruses, Vol 7, Iss 12, Pp 6182-6199 (2015)",CC BY +Use of Monoclonal Antibodies in the Sensitive Detection and Neutralization of Botulinum Neurotoxin Serotype B,Luisa W. Cheng|Thomas D. Henderson|Tina I. Lam|Larry H. Stanker,10.3390/toxins7124863,https://doaj.org/article/2a4895b4a39c4fbd8920266360969a81,01/11/2015,English,monoclonal antibodies|mouse models|botulinum neurotoxins|toxin neutralization|toxicokinetics|Biology (General)|QH301-705.5|Science|Q,2072-6651,MDPI AG,"Toxins, Vol 7, Iss 12, Pp 5068-5078 (2015)",CC BY +Effect of Water Nutrient Pollution on Long-Term Corrosion of 90:10 Copper Nickel Alloy,Robert E. Melchers,10.3390/ma8125443,https://doaj.org/article/b7b738cd706146b79c2e0ee82b4b16e9,01/11/2015,EN,long-term corrosion|copper alloys|Cu-Ni|bi-modal|microbiologically-influenced corrosion (MIC)|Technology|T|Electrical engineering. Electronics. Nuclear engineering|TK1-9971|Engineering (General). Civil engineering (General)|TA1-2040|Microscopy|QH201-278.5|Descriptive and experimental mechanics|QC120-168.85,1996-1944,MDPI AG,"Materials, Vol 8, Iss 12, Pp 8047-8058 (2015)",CC BY +Recent Advances in Research on Widow Spider Venoms and Toxins,Shuai Yan|Xianchun Wang,10.3390/toxins7124862,https://doaj.org/article/d17c2ebe95b840e892d7abbec6a734c4,01/11/2015,English,widow spider|venom|toxin|latrotoxin|latroeggtoxin|advance|Biology (General)|QH301-705.5|Science|Q,2072-6651,MDPI AG,"Toxins, Vol 7, Iss 12, Pp 5055-5067 (2015)",CC BY +Dentinogenic Specificity in the Preclinical Evaluation of Vital Pulp Treatment Strategies: A Critical Review,Dimitrios Tziafas|Konstantinos Kodonas,10.3390/dj3040133,https://doaj.org/article/7222787a4b0d466aba96b6bcee22704d,01/11/2015,,histology of dental pulp|pulp capping|hard tissue bridge|reparative dentin|pulp capping materials|calcium hydroxide|Mineral Trioxide Aggregates (MTA)|calcium silicate|Medicine|R|Dentistry|RK1-715,2304-6767,MDPI AG,"Dentistry Journal, Vol 3, Iss 4, Pp 133-156 (2015)",CC BY +"The Feedback Control Cycle of Mineral Supply, Increase of Raw Material Efficiency, and Sustainable Development",Friedrich-W. Wellmer|Christian Hagelüken,10.3390/min5040527,https://doaj.org/article/5a392416ec784e1b9d5a93f966eee9d8,01/11/2015,English,sustainable development|trilemma of security of supply|geosphere|technosphere|fulfilment of functions|feedback control cycle of mineral supply|resource efficiency|mining|recycling|substitution|Mining engineering. Metallurgy|TN1-997|Technology|T,2075-163x,MDPI AG,"Minerals, Vol 5, Iss 4, Pp 815-836 (2015)",CC BY +Cytotoxic Effects of Tropodithietic Acid on Mammalian Clonal Cell Lines of Neuronal and Glial Origin,Heidi Wichmann|Farina Vocke|Thorsten Brinkhoff|Meinhard Simon|Christiane Richter-Landsberg,10.3390/md13127058,https://doaj.org/article/b0f1dd84ad4546dfa1bc6effd3f40f6c,01/11/2015,English,nerve cells|oligodendrocytes|cytoskeleton|mitochondria|oxidative stress|MAP kinases|Roseobacter clade bacteria|Biology (General)|QH301-705.5|Science|Q|Therapeutics. Pharmacology|RM1-950|Medicine|R,1660-3397,MDPI AG,"Marine Drugs, Vol 13, Iss 12, Pp 7113-7123 (2015)",CC BY +Inhibition Profiling of Retroviral Protease Inhibitors Using an HIV-2 Modular System,Mohamed Mahdi|Zsófia Szojka|János András Mótyán|József Tőzsér,10.3390/v7122931,https://doaj.org/article/b33d6236b1934d338b6b7714e07b8c5c,01/11/2015,English,HIV-2|protease|susceptibility|protease inhibitors|modular system|Microbiology|QR1-502|Science|Q,1999-4915,MDPI AG,"Viruses, Vol 7, Iss 12, Pp 6152-6162 (2015)",CC BY +When Phosphosugars Meet Gold: Synthesis and Catalytic Activities of Phostones and Polyhydroxylated Phosphonite Au(I) Complexes,Gaëlle Malik|Angélique Ferry|Xavier Guinchard,10.3390/molecules201219755,https://doaj.org/article/68dfff2628cd423c8a1f440e0b360774,01/11/2015,English,gold catalysis|phosphosugars|catalysis|heterocycles|P-stereogeny|Organic chemistry|QD241-441|Chemistry|QD1-999|Science|Q,1420-3049,MDPI AG,"Molecules, Vol 20, Iss 12, Pp 21082-21093 (2015)",CC BY +Stereo- and Regiocontrolled Syntheses of Exomethylenic Cyclohexane β-Amino Acid Derivatives,Loránd Kiss|Enikő Forró|György Orsy|Renáta Ábrahámi|Ferenc Fülöp,10.3390/molecules201219749,https://doaj.org/article/bfd6faf83568431ebccc95cc4eff88b3,01/11/2015,English,amino acids|selectivity|hydroxylation|Wittig reaction|icofungipen|Organic chemistry|QD241-441|Chemistry|QD1-999|Science|Q,1420-3049,MDPI AG,"Molecules, Vol 20, Iss 12, Pp 21094-21102 (2015)",CC BY +Chronic Zinc Deficiency Alters Chick Gut Microbiota Composition and Function,Spenser Reed|Hadar Neuman|Sharon Moscovich|Raymond P. Glahn|Omry Koren|Elad Tako,10.3390/nu7125497,https://doaj.org/article/c97e96d658894ea5b67bf97eecf4e322,01/11/2015,English,zinc deficiency|microbiota|dysbiosis|cecal microbiome|zinc biomarker|Nutrition. Foods and food supply|TX341-641|Home economics|TX1-1110|Technology|T,2072-6643,MDPI AG,"Nutrients, Vol 7, Iss 12, Pp 9768-9784 (2015)",CC BY +Technological Application of Maltodextrins According to the Degree of Polymerization,Zenaida Saavedra-Leos|César Leyva-Porras|Sandra B. Araujo-Díaz|Alberto Toxqui-Terán|Anahí J. Borrás-Enríquez,10.3390/molecules201219746,https://doaj.org/article/18d7a860b0fa4dac9973f2eb2c60f2f7,01/11/2015,English,maltodextrins|degree of polymerization|water activity|glass transition temperature|overall appearance|technological application|Organic chemistry|QD241-441|Chemistry|QD1-999|Science|Q,1420-3049,MDPI AG,"Molecules, Vol 20, Iss 12, Pp 21067-21081 (2015)",CC BY +Application of the Entropy Method to Select Calibration Sites for Hydrological Modeling,Soojun Kim|Yonsoo Kim|Narae Kang|Hung Soo Kim,10.3390/w7126652,https://doaj.org/article/ceaa26656b7c4aeab8a2467f3f1726fe,01/11/2015,English,calibration sites|entropy|genetic algorithm|hydrological modeling|Environmental technology. Sanitary engineering|TD1-1066|Technology|T,2073-4441,MDPI AG,"Water, Vol 7, Iss 12, Pp 6719-6735 (2015)",CC BY +The MARINA Risk Assessment Strategy: A Flexible Strategy for Efficient Information Collection and Risk Assessment of Nanomaterials,Peter M. J. Bos|Stefania Gottardo|Janeck J. Scott-Fordsmand|Martie van Tongeren|Elena Semenzin|Teresa F. Fernandes|Danail Hristozov|Kerstin Hund-Rinke|Neil Hunt|Muhammad-Adeel Irfan|Robert Landsiedel|Willie J. G. M. Peijnenburg|Araceli Sánchez Jiménez|Petra C. E. van Kesteren|Agnes G. Oomen,10.3390/ijerph121214961,https://doaj.org/article/b272fbf9ead14a67a9f5f6b803c4a175,01/11/2015,English,nanomaterials|risk assessment strategy|exposure-driven|problem framing|Public aspects of medicine|RA1-1270|Medicine|R,1660-4601,MDPI AG,"International Journal of Environmental Research and Public Health, Vol 12, Iss 12, Pp 15007-15021 (2015)",CC BY +Drought Management Strategies in Spain,Pilar Paneque,10.3390/w7126655,https://doaj.org/article/50abcf3617654523a5646a35c7e43e74,01/11/2015,English,Water Framework Directive|water policies|risk|drought|Environmental technology. Sanitary engineering|TD1-1066|Technology|T,2073-4441,MDPI AG,"Water, Vol 7, Iss 12, Pp 6689-6701 (2015)",CC BY +Activation of the Mitochondrial Apoptotic Signaling Platform during Rubella Virus Infection,Claudia Claus|Lena Manssen|Denise Hübner|Sarah Roßmark|Viktoria Bothe|Alice Petzold|Claudia Große|Mareen Reins|Annette Mankertz|Teryl K. Frey|Uwe G. Liebert,10.3390/v7122928,https://doaj.org/article/c4681cd98ca24368b5ac4ea7c43574f3,01/11/2015,English,mPTP|p53|AIF|cyclophilin family|CypA|Cyp40|cytochrome c|NIM811|PFTμ|Microbiology|QR1-502|Science|Q,1999-4915,MDPI AG,"Viruses, Vol 7, Iss 12, Pp 6108-6126 (2015)",CC BY +Distribution of Epilithic Diatoms in Estuaries of the Korean Peninsula in Relation to Environmental Variables,Ha-Kyung Kim|Yong-Su Kwon|Yong-Jae Kim|Baik-Ho Kim,10.3390/w7126656,https://doaj.org/article/97ddef7878de4aa6bdf4a9fef3e3fef0,01/11/2015,English,epilithic diatoms|water quality|land use/cover type|estuary|random forest model|Environmental technology. Sanitary engineering|TD1-1066|Technology|T,2073-4441,MDPI AG,"Water, Vol 7, Iss 12, Pp 6702-6718 (2015)",CC BY +Glyphosate in Runoff Waters and in the Root-Zone: A Review,Lyndsay E. Saunders|Reza Pezeshki,10.3390/toxics3040462,https://doaj.org/article/7b80a334d14d46d39687a276136f3349,01/11/2015,EN,root-zone exposure|non-target vegetation|vegetated buffer strips|Chemical technology|TP1-1185,2305-6304,MDPI AG,"Toxics, Vol 3, Iss 4, Pp 462-480 (2015)",CC BY +Estimating Evapotranspiration from an Improved Two-Source Energy Balance Model Using ASTER Satellite Imagery,Qifeng Zhuang|Bingfang Wu,10.3390/w7126653,https://doaj.org/article/27b7d3d16de84f98bbf4be49c58da9c7,01/11/2015,English,surface energy fluxes|evapotranspiration|TSEB|satellite images|eddy covariance|Environmental technology. Sanitary engineering|TD1-1066|Technology|T,2073-4441,MDPI AG,"Water, Vol 7, Iss 12, Pp 6673-6688 (2015)",CC BY +Spatial Accuracy Assessment and Integration of Global Land Cover Datasets,Nandin-Erdene Tsendbazar|Sytze de Bruin|Steffen Fritz|Martin Herold,10.3390/rs71215804,https://doaj.org/article/6a97d3c76e064edd8d8eb4b2bc431b58,01/11/2015,English,global land cover|data integration|spatial accuracy|geostatistics|reference dataset|Geography (General)|G1-922|Geography. Anthropology. Recreation|G,2072-4292,MDPI AG,"Remote Sensing, Vol 7, Iss 12, Pp 15804-15821 (2015)",CC BY +Establishment and Applied Research on aWetland Ecosystem Evaluation Model in Taiwan,Han-Shen Chen,10.3390/su71215785,https://doaj.org/article/deb39beb36c2476ca1ac27a6ca62ac83,01/11/2015,,wetlands|ecosystem|energy ecological footprint|ecological security|Geography. Anthropology. Recreation|G|Environmental sciences|GE1-350,2071-1050,MDPI AG,"Sustainability, Vol 7, Iss 12, Pp 15785-15793 (2015)",CC BY +Simulation of Forest Evapotranspiration Using Time-Series Parameterization of the Surface Energy Balance System (SEBS) over the Qilian Mountains,Xin Tian|Christiaan van der Tol|Zhongbo Su|Zengyuan Li|Erxue Chen|Xin Li|Min Yan|Xuelong Chen|Xufeng Wang|Xiaoduo Pan|Feilong Ling|Chunmei Li|Wenwu Fan|Longhui Li,10.3390/rs71215806,https://doaj.org/article/2720dec8cd604462a0bd30d66270cf42,01/11/2015,English,roughness length|forest vertical parameters|Surface Energy Balance System (SEBS)|evapotranspiration|remote sensing|Geography (General)|G1-922|Geography. Anthropology. Recreation|G,2072-4292,MDPI AG,"Remote Sensing, Vol 7, Iss 12, Pp 15822-15843 (2015)",CC BY +Feral Information Systems Creation as Sensemaking,Luke Houghton|Don Kerr,10.3390/systems3040330,https://doaj.org/article/3cc544c29e4f4469a6f5cb42fb64d010,01/11/2015,,feral information systems|Sensemaking|case study|General Works|A,2079-8954,MDPI AG,"Systems, Vol 3, Iss 4, Pp 330-347 (2015)",CC BY +Ionic Liquid-Based Aqueous Biphasic Systems—A Facile Approach for Ionic Liquid Regeneration from Crude Plant Extracts,Rozalina Keremedchieva|Ivan Svinyarov|Milen G. Bogdanov,10.3390/pr3040769,https://doaj.org/article/eceba2b3fe034959890e8042459115bd,01/11/2015,,ionic liquids|IL-ABS|liquid-liquid extraction|natural compounds|alkaloids|Science|Q|Science (General)|Q1-390,2227-9717,MDPI AG,"Processes, Vol 3, Iss 4, Pp 769-778 (2015)",CC BY +Potential Threats Posed by New or Emerging Marine Biotoxins in UK Waters and Examination of Detection Methodologies Used for Their Control: Cyclic Imines,Keith Davidson|Clothilde Baker|Cowan Higgins|Wendy Higman|Sarah Swan|Andrea Veszelovszki|Andrew D. Turner,10.3390/md13127057,https://doaj.org/article/5a21f8d55b7b46c1b96e3d46bcd3f0c5,01/11/2015,English,cyclic imines|shellfish|harmful phytoplankton|biotoxins|Biology (General)|QH301-705.5|Science|Q|Therapeutics. Pharmacology|RM1-950|Medicine|R,1660-3397,MDPI AG,"Marine Drugs, Vol 13, Iss 12, Pp 7087-7112 (2015)",CC BY +Effects of Organic and Inorganic Nitrogen on the Growth and Production of Domoic Acid by Pseudo-nitzschia multiseries and P. australis (Bacillariophyceae) in Culture,Véronique Martin-Jézéquel|Guillaume Calu|Leo Candela|Zouher Amzil|Thierry Jauffrais|Véronique Séchet|Pierre Weigel,10.3390/md13127055,https://doaj.org/article/4659950fc6574a4a85dcbe722a6ac719,01/11/2015,English,Pseudo-nitzschia|toxic diatoms|nitrogen|amino acids|domoic acid|Biology (General)|QH301-705.5|Science|Q|Therapeutics. Pharmacology|RM1-950|Medicine|R,1660-3397,MDPI AG,"Marine Drugs, Vol 13, Iss 12, Pp 7067-7086 (2015)",CC BY +Early Onset of Laying and Bumblefoot Favor Keel Bone Fractures,Sabine G. Gebhardt-Henrich|Ernst K. F. Fröhlich,10.3390/ani5040406,https://doaj.org/article/7cddc2001dc74ecaac818446a804f2ec,01/11/2015,English,laying hen|keel bone fracture|laying rate|behavior|welfare|Zoology|QL1-991|Science|Q,2076-2615,MDPI AG,"Animals, Vol 5, Iss 4, Pp 1192-1206 (2015)",CC BY +Primality Testing and Factorization by using Fourier Spectrum of the Riemann Zeta Function,Musha Takaaki,,https://doaj.org/article/5965d9a2ceb643c5b44a37cf217fb2a8,01/11/2015,English,Primality testing|prime factorization|Fourier transform|Riemann zeta function.|Mathematics|QA1-939|Science|Q|Electronic computers. Computer science|QA75.5-76.95|Instruments and machines|QA71-90|Mathematics|QA1-939|Science|Q,2067-2764|2247-6202,Aurel Vlaicu University Editing House,"Theory and Applications of Mathematics & Computer Science, Vol 5, Iss 2, Pp 231-220 (2015)",CC BY-NC-ND +Some Families of q-Series Identities and Associated Continued Fractions,H. M. Srivastava|S. N. Singh|S. P. Singh,,https://doaj.org/article/8ef413065e064a5b9fa375ece9cb0fcc,01/11/2015,English,q-Series|q-Identities|q-Series identities|Rogers-Ramanujan identities|Continued fractions.|Mathematics|QA1-939|Science|Q|Electronic computers. Computer science|QA75.5-76.95|Instruments and machines|QA71-90|Mathematics|QA1-939|Science|Q,2067-2764|2247-6202,Aurel Vlaicu University Editing House,"Theory and Applications of Mathematics & Computer Science, Vol 5, Iss 2, Pp 203-212 (2015)",CC BY-NC-ND +Zweier I-Convergent Double Sequence Spaces Defined by a Sequence of Modulii,A. Khan Vakeel| Khan Nazneen|Yasmeen,,https://doaj.org/article/51e4d8baa99f45be91f7511581e70dcf,01/11/2015,English,Ideal|filter|double sequence|sequence of modulii|Lipschitz function|I-convergence|monotone and solid spaces.|Mathematics|QA1-939|Science|Q|Electronic computers. Computer science|QA75.5-76.95|Instruments and machines|QA71-90|Mathematics|QA1-939|Science|Q,2067-2764|2247-6202,Aurel Vlaicu University Editing House,"Theory and Applications of Mathematics & Computer Science, Vol 5, Iss 2, Pp 194-202 (2015)",CC BY-NC-ND +Initial Maclaurin Coecients Bounds for New Subclasses of Bi-univalent Functions,Basem Aref Frasin|Tariq Al-Hawary,,https://doaj.org/article/7d449001593d41349d931b02c46fea66,01/11/2015,English,Analytic and univalent functions|Bi-univalent functions|Starlike and convex functions|Coecients bounds.|Mathematics|QA1-939|Science|Q|Electronic computers. Computer science|QA75.5-76.95|Instruments and machines|QA71-90|Mathematics|QA1-939|Science|Q,2067-2764|2247-6202,Aurel Vlaicu University Editing House,"Theory and Applications of Mathematics & Computer Science, Vol 5, Iss 2, Pp 186-193 (2015)",CC BY-NC-ND +Measure of Tessellation Quality of Voronoï Meshes,E. A-iyeh|J.F. Peters,,https://doaj.org/article/ac14c9c370014bd69ece80e78da13017,01/11/2015,English,Sites|Mesh Generation|Quality|Tessellations|Voronoï mesh.|Mathematics|QA1-939|Science|Q|Electronic computers. Computer science|QA75.5-76.95|Instruments and machines|QA71-90|Mathematics|QA1-939|Science|Q,2067-2764|2247-6202,Aurel Vlaicu University Editing House,"Theory and Applications of Mathematics & Computer Science, Vol 5, Iss 2, Pp 158-185 (2015)",CC BY-NC-ND +Katsaras’s Type Fuzzy Norm under Triangular Norms,Sorin Nădăban|Tudor Bînzar|Flavius Pater|Carmen Țerei|Sorin Hoară,,https://doaj.org/article/6f48cbb09c49415b92340281ea3a8bb0,01/11/2015,English,Fuzzy norm|fuzzy norm linear spaces|fuzzy subspaces|*-convexity|Mathematics|QA1-939|Science|Q|Electronic computers. Computer science|QA75.5-76.95|Instruments and machines|QA71-90|Mathematics|QA1-939|Science|Q,2067-2764|2247-6202,Aurel Vlaicu University Editing House,"Theory and Applications of Mathematics & Computer Science, Vol 5, Iss 2, Pp 148-157 (2015)",CC BY-NC-ND +Some Perturbed Ostrowski Type Inequalities for Absolutely Continuous Functions (I),S. S. Dragomir,,https://doaj.org/article/3e19700969ad43d78130f441a03ae609,01/11/2015,English,Ostrowski’s inequality|Integral inequalities|Perturbed Ostrowski Type Inequalities|Mathematics|QA1-939|Science|Q|Electronic computers. Computer science|QA75.5-76.95|Instruments and machines|QA71-90|Mathematics|QA1-939|Science|Q,2067-2764|2247-6202,Aurel Vlaicu University Editing House,"Theory and Applications of Mathematics & Computer Science, Vol 5, Iss 2, Pp 132-147 (2015)",CC BY-NC-ND +Hadamard Product of Certain Harmonic Univalent Meromorphic Functions,R. M. El-Ashwah|B. A. Frasin,,https://doaj.org/article/a68b345808244e8f9d3efd14f14ba998,01/11/2015,English,Harmonic functions|meromorphic functions|univalent functions|sense-preserving|Mathematics|QA1-939|Science|Q|Electronic computers. Computer science|QA75.5-76.95|Instruments and machines|QA71-90|Mathematics|QA1-939|Science|Q,2067-2764|2247-6202,Aurel Vlaicu University Editing House,"Theory and Applications of Mathematics & Computer Science, Vol 5, Iss 2, Pp 126-131 (2015)",CC BY-NC-ND +"New Čebyšev Type Inequalities for Functions whose Second Derivatives are (s1, m1)-(s2, m2)-convex on the Co-ordinate",B. Meftah|K. Boukerrioua,,https://doaj.org/article/16923e727f35469d816aa60438f67058,01/11/2015,English,Čebyšev type inequalities|co-ordinates (s1|m1)-(s2|m2)-convex|integral inequality|Mathematics|QA1-939|Science|Q|Electronic computers. Computer science|QA75.5-76.95|Instruments and machines|QA71-90|Mathematics|QA1-939|Science|Q,2067-2764|2247-6202,Aurel Vlaicu University Editing House,"Theory and Applications of Mathematics & Computer Science, Vol 5, Iss 2, Pp 116-125 (2015)",CC BY-NC-ND +A Mixed Integer Linear Programming Formulation for Restrained Roman Domination Problem,Marija Ivanović,,https://doaj.org/article/1dea7b63a59a487c8305f9a3fb105d11,01/11/2015,English,Restrained Roman domination in graphs|combinatorial optimization|integer linear programming|Mathematics|QA1-939|Science|Q|Electronic computers. Computer science|QA75.5-76.95|Instruments and machines|QA71-90|Mathematics|QA1-939|Science|Q,2067-2764|2247-6202,Aurel Vlaicu University Editing House,"Theory and Applications of Mathematics & Computer Science, Vol 5, Iss 2, Pp 110-115 (2015)",CC BY-NC-ND +PATH FINDER PROCESS VALIDATION OF MOIST HEAT STERILIZER IN PARENTRAL MANUFACTURING UNIT,R S Kalkotwar|M B Salve|T K Ahire,,https://doaj.org/article/d6519633bdd64116b6ba6ed2375d81cc,01/11/2015,English,Moist heat Sterilization|Process Validation|Critical and Variable parameters.|Therapeutics. Psychotherapy|RC475-489|Psychiatry|RC435-571|Neurology. Diseases of the nervous system|RC346-429|Neurosciences. Biological psychiatry. Neuropsychiatry|RC321-571|Internal medicine|RC31-1245|Medicine|R,2250-1177,Society of Pharmaceutical Technocrats,"Journal of Drug Delivery and Therapeutics, Vol 5, Iss 6, Pp 31-34 (2015)", +DRUG UTILIZATION PATTERN AND ADVERSE DRUG REACTION MONITORING IN URINARY TRACT INFECTION PATIENTS IN A TERTIARY CARE HOSPITAL,Eima Fatima|Arifa Anwar|Mridu Dudeja|Mohd. Akhtar|Abul Kalam Najmi,,https://doaj.org/article/29a60fa188a549eb8e92b5058f231eba,01/11/2015,English,Drug utilization pattern|Adverse Drug Reactions|Urinary Tract Infection|Renal Pharmacology|Therapeutics. Psychotherapy|RC475-489|Psychiatry|RC435-571|Neurology. Diseases of the nervous system|RC346-429|Neurosciences. Biological psychiatry. Neuropsychiatry|RC321-571|Internal medicine|RC31-1245|Medicine|R,2250-1177,Society of Pharmaceutical Technocrats,"Journal of Drug Delivery and Therapeutics, Vol 5, Iss 6, Pp 23-30 (2015)", +EFFECT OF NITROGEN SOURCE FOR THE BIOSYNTHESIS OF XYLANASE FROM ASPERGILLUS TAMARII,A Dhulappa|K Lingappa|K G Siddalingeshwara,,https://doaj.org/article/c1a9fe89991e474b9ba39a0e74ae4a21,01/11/2015,English,submerged fermentation|yeast extract|Xylanase|ammonium nitrate and assay.|Therapeutics. Psychotherapy|RC475-489|Psychiatry|RC435-571|Neurology. Diseases of the nervous system|RC346-429|Neurosciences. Biological psychiatry. Neuropsychiatry|RC321-571|Internal medicine|RC31-1245|Medicine|R,2250-1177,Society of Pharmaceutical Technocrats,"Journal of Drug Delivery and Therapeutics, Vol 5, Iss 6, Pp 18-22 (2015)", +BIOLOGICALLY ACTIVE PYRIMIDINE HYDARZONES,Sanchit Srivastav|Kanishk Luhach|Chhama Shukla|Rajender Yadav,,https://doaj.org/article/3871b9af757a4b7090297b4699884d8b,01/11/2015,English,Pyrimidine Hydrazones|Biological active Pyrimidine|Schiff Bases|Therapeutics. Psychotherapy|RC475-489|Psychiatry|RC435-571|Neurology. Diseases of the nervous system|RC346-429|Neurosciences. Biological psychiatry. Neuropsychiatry|RC321-571|Internal medicine|RC31-1245|Medicine|R,2250-1177,Society of Pharmaceutical Technocrats,"Journal of Drug Delivery and Therapeutics, Vol 5, Iss 6, Pp 14-17 (2015)", +BIOLOGICALLY ACTIVE OXADIAZOLE ,Chhama Shukla|Sanchit Srivastava,,https://doaj.org/article/328e979a797b424a868bc0e825bc5fbf,01/11/2015,English,biologically active ozadiazoles|oxadiazoles as anticancers etc.|Oxadiazoles synthetic approaches|oxadiazoles as anticancers|Therapeutics. Psychotherapy|RC475-489|Psychiatry|RC435-571|Neurology. Diseases of the nervous system|RC346-429|Neurosciences. Biological psychiatry. Neuropsychiatry|RC321-571|Internal medicine|RC31-1245|Medicine|R,2250-1177,Society of Pharmaceutical Technocrats,"Journal of Drug Delivery and Therapeutics, Vol 5, Iss 6, Pp 8-13 (2015)", + A REVIEW ON PHARMACEUTICAL PROCESS VALIDATION OF SOLID DOSAGE FORM [TABLETS],Rishi Ram Parajuli|Saroj Shrestha|Shreekrishna Lamichane|Priyanka Pokhrel,,https://doaj.org/article/f988955eb8ce4caa8fccd602b137995b,01/11/2015,English,Process Validation|Types|Validation Stages|Guidelines and Process.|Therapeutics. Psychotherapy|RC475-489|Psychiatry|RC435-571|Neurology. Diseases of the nervous system|RC346-429|Neurosciences. Biological psychiatry. Neuropsychiatry|RC321-571|Internal medicine|RC31-1245|Medicine|R,2250-1177,Society of Pharmaceutical Technocrats,"Journal of Drug Delivery and Therapeutics, Vol 5, Iss 6, Pp 1-7 (2015)", +"Las asociaciones de ostrácodos en secuencias aluviales como indicadores de cambios ambientales holocenos (Bardenas Reales de Navarra, Cuenca del Ebro, NE Península Ibérica)","Martínez-García, B.|Suarez-Hernando, O.|Rodríguez-Lázaro, J.|Pascual, A.|Ordiales, A.|Murelaga, X.|Sancho, C.|Muñoz, A.|Osácar, C.",10.3989/egeol.42054.367,https://doaj.org/article/a3b8430413924fcba2a204c66f73a2fd,01/12/2015,ES,Ostracods| Alluvial sequences| Environmental changes| late Holocene| Bardenas Reales de Navarra|Ostrácodos|Registros aluviales|Cambios ambientales|Holoceno final|Bardenas Reales de Navarra|Geology|QE1-996.5,0367-0449|1988-3250,Consejo Superior de Investigaciones Científicas,"Estudios Geologicos, Vol 71, Iss 2, p e042 (2015)",CC BY-NC +"La fracturation et les bandes de déformation dans la région d’El Kohol (Atlas saharien central, Algérie): analyse fractale, lois d’échelles et modèle de réseaux de fractures discrètes","Zazoun, R. S.|Marok, A.|Samar, L.|Benadla, M.|Mezlah, H.",10.3989/egeol.42011.359,https://doaj.org/article/af40f5ea8cf240c8a6e1eb478541751c,01/12/2015,FR,Saharan Atlas| El Kohol| Fracturation| Network| Fractal analysis| Mecanostratigraphy| Stochastic modeling|Atlas Saharien|El Kohol|Fracturation|Réseau|Analyse fractale|Mécanostratigraphie|Modélisation stochastique|Geology|QE1-996.5,0367-0449|1988-3250,Consejo Superior de Investigaciones Científicas,"Estudios Geologicos, Vol 71, Iss 2, p e039 (2015)",CC BY-NC +"Geology and mineralogy of the Au-As (Ag-Pb-Zn-Cu-Sb) polymetallic deposit of Valiña-Azúmara (Lugo, NW Spain)","Martínez-Abad, I.|Cepedal, A.|Arias, D.|Martín-Izard, A.|Fuertes-Fuente, M.",10.3989/egeol.42059.369,https://doaj.org/article/90dbd68eebca4ec29524d48af090e596,01/12/2015,EN,Refractory gold| pyrite| Ag-rich tetrahedrite| freibergite| Vilalba gold district| NW Spain|Oro refractario|pirita|tetraedrita argentífera|freibergita|distrito aurífero de Vilalba|NO España|Geology|QE1-996.5,0367-0449|1988-3250,Consejo Superior de Investigaciones Científicas,"Estudios Geologicos, Vol 71, Iss 2, p e040 (2015)",CC BY-NC +"Presence of Arctotherium (Carnivora, Ursidae, Tremarctinae) in a pre-cultural level of Baño Nuevo-1 cave (Central Patagonia, Chile)","López Mendoza, P.|Mena Larraín, F.|Bostelmann, E.",10.3989/egeol.42011.357,https://doaj.org/article/0c7c1a3cedec438c99956be615e96006,01/12/2015,EN,Ursidae| Arctotherium| Late Pleistocene| Central Patagonia|Ursidae|Arctotherium|Pleistoceno final|Patagonia Central|Geology|QE1-996.5,0367-0449|1988-3250,Consejo Superior de Investigaciones Científicas,"Estudios Geologicos, Vol 71, Iss 2, p e041 (2015)",CC BY-NC +Estudio espectroscópico y DRX de afloramientos terrestres volcánicos en la isla de Tenerife como posibles análogos de la geología marciana,"Lalla, E. A.|López-Reyes, G.|Sansano, A.|Sanz-Arranz, A.|Schmanke, D.|Klingelhöfer, G.|Medina-García, J.|Martínez-Frías, J.|Rull-Pérez, F.",10.3989/egeol.41927.354,https://doaj.org/article/1e79eb5df7b2411abf6812fd08761fd9,01/12/2015,ES,Volcanology| Raman Spectroscopy| Mössbauer Spectroscopy| X Ray Diffraction| Mars| Tenerife|Vulcanología|Espectroscopia Raman|Espectroscopia Mössbauer|Difracción de Rayos X|Marte|Tenerife|Geology|QE1-996.5,0367-0449|1988-3250,Consejo Superior de Investigaciones Científicas,"Estudios Geologicos, Vol 71, Iss 2, p e035 (2015)",CC BY-NC +Agregación de sedimentos en una cuenca de llanura: utilización del Microscopio Electrónico de Barrido como herramienta de evaluación,"Suarez, P.|Orfeo, O.",10.3989/egeol.42054.366,https://doaj.org/article/7e837f79e14b49a19322e81cc11c4251,01/12/2015,ES,Sediment aggregation| Subtropical rivers| Granulometric analysis| SEM images|Sedimentos|Formación de agregados|Ríos subtropicales|Granulometría|Imágenes MEB|Geology|QE1-996.5,0367-0449|1988-3250,Consejo Superior de Investigaciones Científicas,"Estudios Geologicos, Vol 71, Iss 2, p e038 (2015)",CC BY-NC +Origen y funcionamiento hidrogeológico del único criptohumedal subhalófilo-alcalinófilo en la facies Guadalajara del acuífero Terciario detrítico de Madrid,"Martín-Loeches Garrido, M.|Pavón García, J.|García Martínez, M.",10.3989/egeol.41989.356,https://doaj.org/article/82e805c16da84f58bcdb51bd2fd20452,01/12/2015,ES,Wetland| Madrid aquifer| Henares river middle basin| indicative plants| hydrogeology| alkaline efflorescences| evaporation|Humedal|acuífero de Madrid|cuenca media del río Henares|plantas indicadoras|hidrogeología|eflorescencias alcalinas|evaporación|Geology|QE1-996.5,0367-0449|1988-3250,Consejo Superior de Investigaciones Científicas,"Estudios Geologicos, Vol 71, Iss 2, p e037 (2015)",CC BY-NC +"Los gonfotéridos (Mammalia, Proboscidea) de Uruguay: taxonomía, estratigrafía y cronología","Perea, D.|Alberdi, M. T.",10.3989/egeol.41864.346,https://doaj.org/article/35b30f904a0f4658aa6e5788b00ca69f,01/12/2015,ES,Gomphotheriidae| Stegomastodon platensis| Uruguay| Late Miocene| Pleistocene-Early Holocene|Gomphotheriidae|Stegomastodon platensis|Uruguay|Mioceno tardío|Pleistoceno-Holoceno temprano|Geology|QE1-996.5,0367-0449|1988-3250,Consejo Superior de Investigaciones Científicas,"Estudios Geologicos, Vol 71, Iss 2, p e036 (2015)",CC BY-NC +"Hallazgo de restos de la serpiente Dinilysia patagonica Smith-Woodward 1901 en una nueva localidad del Santoniano de Patagonia, Argentina","Triviño, L. N.|Albino, A. M.",10.3989/egeol.41858.347,https://doaj.org/article/6bbd2045ba2543f98f71617c15cbe7dd,01/12/2015,ES,Dinilysia| Cretaceous| Argentina| Snakes|Dinilysia|Cretácico|Argentina|Serpientes|Geology|QE1-996.5,0367-0449|1988-3250,Consejo Superior de Investigaciones Científicas,"Estudios Geologicos, Vol 71, Iss 2, p e033 (2015)",CC BY-NC +"Estudio de los caballos del yacimiento de Quibas, Pleistoceno Inferior final (Abanilla, Murcia, España)","Piñero, P.|Alberdi, M. T.",10.3989/egeol.41863.348,https://doaj.org/article/6badc88c84c64423b8c25760d2cb9610,01/12/2015,ES,Early latest Pleistocene| Quibas| Equus altidens| stenonoid| Equus suessenbornensis|Pleistoceno Inferior final|Quibas|Equus altidens|estenoniano|Equus suessenbornensis|Geology|QE1-996.5,0367-0449|1988-3250,Consejo Superior de Investigaciones Científicas,"Estudios Geologicos, Vol 71, Iss 2, p e034 (2015)",CC BY-NC +"Record of Carcharocles megalodon in the Eastern Guadalquivir Basin (Upper Miocene, South Spain)","Reolid, M.|Molina, J. M.",10.3989/egeol.41828.342,https://doaj.org/article/5987e4b1db88406e8d0ecdff7772f3c2,01/12/2015,EN,Carcharocles megalodon| fossil tooth| Guadalquivir Basin| Tortonian|Carcharocles megalodon|diente fósil|Cuenca del Guadalquivir|Tortoniense|Geology|QE1-996.5,0367-0449|1988-3250,Consejo Superior de Investigaciones Científicas,"Estudios Geologicos, Vol 71, Iss 2, p e032 (2015)",CC BY-NC +POST INSTRUMENTAL INCOMPLETE UTERINE RUPTURE WITH LEFT OVARIAN CYST A RARE CASE,Vijayalakshmi |Divya,10.14260/jemds/2015/1598,https://doaj.org/article/5e8806ea891a410d8aaaaca252615fdc,01/08/2015,English,U terine rupture|P ost - partum hemorrhage|I nstrumental delivery|Dentistry|RK1-715|Medicine|R|Medicine (General)|R5-920|Medicine|R,2278-4748|2278-4802,Akshantala Enterprises,"Journal of Evolution of Medical and Dental Sciences, Vol 4, Iss 63, Pp 11090-11093 (2015)",CC BY-NC-ND +A CASE OF FAHR'S SYNDROME,Ishan |Ashutosh |Vyankatesh|Pankaj |Rakesh ,10.14260/jemds/2015/1600,https://doaj.org/article/75e1e3474c2a4d32b1097f3ae1072fcc,01/08/2015,English,Dentistry|RK1-715|Medicine|R|Medicine (General)|R5-920|Medicine|R,2278-4748|2278-4802,Akshantala Enterprises,"Journal of Evolution of Medical and Dental Sciences, Vol 4, Iss 63, Pp 11099-11101 (2015)",CC BY-NC-ND +DUANE RETRACTION SYNDROME (TYPE 1A) IN A MALE CHILD,Xavier Jayaseelan|Panimalar|Parvatham,10.14260/jemds/2015/1599,https://doaj.org/article/a8d0d4b18e064e0cb7b14395c06d2d4d,01/08/2015,English,Duane’s retraction syndrome|Abduction|Dentistry|RK1-715|Medicine|R|Medicine (General)|R5-920|Medicine|R,2278-4748|2278-4802,Akshantala Enterprises,"Journal of Evolution of Medical and Dental Sciences, Vol 4, Iss 63, Pp 11094-11098 (2015)",CC BY-NC-ND +HAILEY - HAILEY DISEASE : 2 CASE REPORTS,Nilofar |Nidhi |Pragya ,10.14260/jemds/2015/1597,https://doaj.org/article/92544c625a274de6a2d6227b402ff4ba,01/08/2015,English,Hailey - Hailey disease|D il a pidated brick wall|Dentistry|RK1-715|Medicine|R|Medicine (General)|R5-920|Medicine|R,2278-4748|2278-4802,Akshantala Enterprises,"Journal of Evolution of Medical and Dental Sciences, Vol 4, Iss 63, Pp 11083-11089 (2015)",CC BY-NC-ND +A RARE CASE OF LARGE EPIGLOTTIC CYST,Prathipaty James|Kameswararao,10.14260/jemds/2015/1596,https://doaj.org/article/72529f12c1db4c4283cd47be36be9104,01/08/2015,English,Dentistry|RK1-715|Medicine|R|Medicine (General)|R5-920|Medicine|R,2278-4748|2278-4802,Akshantala Enterprises,"Journal of Evolution of Medical and Dental Sciences, Vol 4, Iss 63, Pp 11080-11082 (2015)",CC BY-NC-ND +RARE CASE REPORT OF HEMIMEGALENCEPHALY PRESENTING WITH ABNORMAL MOVEMENTS & SPASTICITY IN A CASE OF NEUROFIBROMATOSIS TYPE I,Rini |Aironi|Abhay |Shishir |Ashutosh ,10.14260/jemds/2015/1595,https://doaj.org/article/7681fbf136264188a5a7528752dea8e4,01/08/2015,English,Hemimegalencephaly|Neurofibromatosis - type 1|Dentistry|RK1-715|Medicine|R|Medicine (General)|R5-920|Medicine|R,2278-4748|2278-4802,Akshantala Enterprises,"Journal of Evolution of Medical and Dental Sciences, Vol 4, Iss 63, Pp 11074-11079 (2015)",CC BY-NC-ND +ANAESTHETIC MANAGEME NT OF A POST BURN CONTRACTURE PATIENT : A CASE REPORT,Anupam |Joydeep ,10.14260/jemds/2015/1594,https://doaj.org/article/c798ca7026154db4a78f96e9f1fca61c,01/08/2015,English,A irway management|P ost burn contracture|R eleased scar tissue|Dentistry|RK1-715|Medicine|R|Medicine (General)|R5-920|Medicine|R,2278-4748|2278-4802,Akshantala Enterprises,"Journal of Evolution of Medical and Dental Sciences, Vol 4, Iss 63, Pp 11069-11073 (2015)",CC BY-NC-ND +ROLE OF VITAMIN D IN THE MANAGEMENT OF CHRONIC OBSTRUCTIVE PULMONARY DISEASE : AN OPTION OR NECESSITY ,Amit Kumar|Sanjay |Puneet |Ashok Kumar,10.14260/jemds/2015/1593,https://doaj.org/article/bb6197449500464ebbcb1db8da4d94bc,01/08/2015,English,COPD|Oxidative stress|Vitamin - D|Inflammation|FEV1|Dentistry|RK1-715|Medicine|R|Medicine (General)|R5-920|Medicine|R,2278-4748|2278-4802,Akshantala Enterprises,"Journal of Evolution of Medical and Dental Sciences, Vol 4, Iss 63, Pp 11063-11068 (2015)",CC BY-NC-ND +"TRAUMATIC INTRA CRANIAL INJURY - COMPUTED TOMOGRAPHY, PER OPERATIVE AND POST MORTEM FIND INGS : A PROGNOSTIC CORRELATION",Naufal |Jineesh|Rajendran|Devarajan|Rajan|Gomathy|Juvaina |Shikha S,10.14260/jemds/2015/1591,https://doaj.org/article/0451bd02a7ca4c8985b287ef9acd9996,01/08/2015,English,Trauma|Head injury|Neuro imaging|C omputed tomography|Dentistry|RK1-715|Medicine|R|Medicine (General)|R5-920|Medicine|R,2278-4748|2278-4802,Akshantala Enterprises,"Journal of Evolution of Medical and Dental Sciences, Vol 4, Iss 63, Pp 11043-11057 (2015)",CC BY-NC-ND +Lp - Approximation of Analytic Functions on Compact Sets Bounded by Jordan Curves,Kumar Devendra|Jain Vandna,,https://doaj.org/article/2db2c68d636a414aaf6d1d182352d57a,01/04/2015,English,Lp?approximation error|index?q|transfinite diameter|Faber series|Mathematics|QA1-939|Science|Q|Electronic computers. Computer science|QA75.5-76.95|Instruments and machines|QA71-90|Mathematics|QA1-939|Science|Q,2067-2764|2247-6202,Aurel Vlaicu University Editing House,"Theory and Applications of Mathematics & Computer Science, Vol 5, Iss 1, Pp 101-109 (2015)",CC BY-NC-ND +OXYGEN SATURATION TRENDS IN NEWBORN AFTER BIRTH,Shweta |Avyact ,10.14260/jemds/2015/1590,https://doaj.org/article/f2438b305bc14ea09a400ae046773cbb,01/08/2015,English,Oximetry|newborn|saturation|Dentistry|RK1-715|Medicine|R|Medicine (General)|R5-920|Medicine|R,2278-4748|2278-4802,Akshantala Enterprises,"Journal of Evolution of Medical and Dental Sciences, Vol 4, Iss 63, Pp 11037-11042 (2015)",CC BY-NC-ND +Second Hankel Determinant for Generalized Sakaguchi Type Functions,S. P. Vijayalakshmi|T. V. Sudharsan,,https://doaj.org/article/43dad62f6a214241bcf82c146f2876f0,01/04/2015,English,Sakaguchi functions|subordination|Hankel determinant|starlike functions|Mathematics|QA1-939|Science|Q|Electronic computers. Computer science|QA75.5-76.95|Instruments and machines|QA71-90|Mathematics|QA1-939|Science|Q,2067-2764|2247-6202,Aurel Vlaicu University Editing House,"Theory and Applications of Mathematics & Computer Science, Vol 5, Iss 1, Pp 94-100 (2015)",CC BY-NC-ND +EPIDEMEOLOGY OF CHEST INJURY IN LONG BONE FRACTURES IN ROAD TRAFFIC ACCIDENT ,Madhukar|Satheesh |Rajib |Debasubhra ,10.14260/jemds/2015/1589,https://doaj.org/article/d6a503875321492798591a3bc8635760,01/08/2015,English,Chest injury|Long bone fractures|Dentistry|RK1-715|Medicine|R|Medicine (General)|R5-920|Medicine|R,2278-4748|2278-4802,Akshantala Enterprises,"Journal of Evolution of Medical and Dental Sciences, Vol 4, Iss 63, Pp 11030-11036 (2015)",CC BY-NC-ND +Properties of Stabilizing Computations,Mark Burgin,,https://doaj.org/article/18e5b1d5f58842f7820d505382513964,01/04/2015,English,computation|stability|Turing machine|inductive Turing machine|acceptation|mode of computation|equivalence|Mathematics|QA1-939|Science|Q|Electronic computers. Computer science|QA75.5-76.95|Instruments and machines|QA71-90|Mathematics|QA1-939|Science|Q,2067-2764|2247-6202,Aurel Vlaicu University Editing House,"Theory and Applications of Mathematics & Computer Science, Vol 5, Iss 1, Pp 71-93 (2015)",CC BY-NC-ND +PREVALENCE OF PERIPHERAL VASCULAR DISEASE IN CHRONIC ALCOHOLICS AS MEASURED BY ANKLE TO BRACHIAL INDEX,Raj Bahadur |Nayyar|Ashok ,10.14260/jemds/2015/1588,https://doaj.org/article/2bc9f8a22d3943ff8e171076dc47a6fa,01/08/2015,English,Peripheral Vascular Disease|Chronic Alcoholic|Dentistry|RK1-715|Medicine|R|Medicine (General)|R5-920|Medicine|R,2278-4748|2278-4802,Akshantala Enterprises,"Journal of Evolution of Medical and Dental Sciences, Vol 4, Iss 63, Pp 11018-11029 (2015)",CC BY-NC-ND +On BVσ I-convergent Sequence Spaces Defined by an Orlicz Function,Vakeel A. Khan|Mohd Shafiq|Rami Kamel Ahmad Rababah,,https://doaj.org/article/606360594f4547568cb9e43a2f07ab1b,01/04/2015,English,Mathematics|QA1-939|Science|Q|Electronic computers. Computer science|QA75.5-76.95|Instruments and machines|QA71-90|Mathematics|QA1-939|Science|Q,2067-2764|2247-6202,Aurel Vlaicu University Editing House,"Theory and Applications of Mathematics & Computer Science, Vol 5, Iss 1, Pp 62-70 (2015)",CC BY-NC-ND +Coupled Systems of Fractional Integro-Differential Equations Involving Several Functions,Zoubir Dahmani|Mohamed Amin Abdellaoui|Mohamed Houas,,https://doaj.org/article/25a4d753a287443ca66470278c8a18cf,01/04/2015,English,Caputo derivative|fixed point|integro-dierential system|existence|uniqueness|Riemann-Liouville integral|Mathematics|QA1-939|Science|Q|Electronic computers. Computer science|QA75.5-76.95|Instruments and machines|QA71-90|Mathematics|QA1-939|Science|Q,2067-2764|2247-6202,Aurel Vlaicu University Editing House,"Theory and Applications of Mathematics & Computer Science, Vol 5, Iss 1, Pp 53-61 (2015)",CC BY-NC-ND +The Applicability of $-Calculus to Solve Some Turing Machine Undecidable Problems,Eugene Eberbach,,https://doaj.org/article/8224d22b417840eab91cafe9915c50c2,01/04/2015,English,problem solving|hypercomputation|expressiveness|superTuring models of computation|resource bounded computation|process algebras|$-calculus|Mathematics|QA1-939|Science|Q|Electronic computers. Computer science|QA75.5-76.95|Instruments and machines|QA71-90|Mathematics|QA1-939|Science|Q,2067-2764|2247-6202,Aurel Vlaicu University Editing House,"Theory and Applications of Mathematics & Computer Science, Vol 5, Iss 1, Pp 37-52 (2015)",CC BY-NC-ND +Luhn Prime Numbers,Octavian Cira|Florentin Smarandache,,https://doaj.org/article/36f1b0415a7f45cdac8105be8c48c1be,01/04/2015,English,Reversal number|Smarandache’s function|Prime numbers|Luhn prime numbers|Mathematics|QA1-939|Science|Q|Electronic computers. Computer science|QA75.5-76.95|Instruments and machines|QA71-90|Mathematics|QA1-939|Science|Q,2067-2764|2247-6202,Aurel Vlaicu University Editing House,"Theory and Applications of Mathematics & Computer Science, Vol 5, Iss 1, Pp 29-36 (2015)",CC BY-NC-ND +A COMPARATIVE STUDY OF FIBRIN GLUE & SUT URES FOR ATTACHING CONJUNCTIVAL AUTOGRA FT AFTER PTERYGIUM SURGERY,Navneet ,10.14260/jemds/2015/1587,https://doaj.org/article/88f424cc5449475abc2073e76df58f88,01/08/2015,English,Fibrin glue|Sub conjunctival haemorrage|Pterygium|Graft dehiscenes|Graft edema|Dentistry|RK1-715|Medicine|R|Medicine (General)|R5-920|Medicine|R,2278-4748|2278-4802,Akshantala Enterprises,"Journal of Evolution of Medical and Dental Sciences, Vol 4, Iss 63, Pp 11008-11017 (2015)",CC BY-NC-ND +"Crystal structure of 7-isopropyl-1,4a,N-trimethyl-1,2,3,4,4a,4b,5,6,7,8,10,10a-dodecahydrophenanthrene-1-carboxamide",Li Liu|Xin-Yan Yan|Xiao-Ping Rao,10.1107/S2056989015017648,https://doaj.org/article/69bfe1351c864bc8a6b3877c6803e26d,01/10/2015,EN,crystal structure|dihydroabietic acid derivative|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o801-o802 (2015)",CC BY +"Crystal structure of 2-(2,4-diphenyl-3-azabicyclo[3.3.1]nonan-9-ylidene)acetonitrile",K. Priya|K. Saravanan|S. Kabilan|S. Selvanayagam,10.1107/S2056989015017740,https://doaj.org/article/ce085e7ac3bd43e49a1222090c62e1a2,01/10/2015,EN,crystal structure|3-azabicyclononane derivatives|chair conformation|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o792-o793 (2015)",CC BY +Crystal structure of 2-[2-(hydroxyimino)-1-phenylpropylidene]-N-phenylhydrazinecarbothioamide,Brian J. Anderson|Michael B. Freedman|Sean P. Millikan|Victoria A. Smolenski|Jerry P. Jasinski,10.1107/S2056989015017739,https://doaj.org/article/4dd1a69aaefa478b8d2bba48a25f0d98,01/10/2015,EN,crystal structure|thiosemicarbazone|weak intermolecular interactions|O—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o796-o797 (2015)",CC BY +"Crystal structure of 1-methoxy-5-methyl-N-phenyl-1,2,3-triazole-4-carboxamide",Inna S. Khazhieva|Tatiana V. Glukhareva|Pavel A. Slepukhin|Yury Yu. Morzherin,10.1107/S2056989015017776,https://doaj.org/article/8c3bd9d71ba642f5b28d0de8dcbe8255,01/10/2015,EN,"crystal structure|1,2,3-triazole|rearrangements|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o798-o798 (2015)",CC BY +"Redetermined structure of 4,4′-bipyridine–1,4-phenylenediacetic acid (1/1) co-crystal",Rima Paul|Sanchay Jyoti Bora,10.1107/S2056989015017569,https://doaj.org/article/b2d1ca2bb6fb4ba48c11e99a20618e6c,01/10/2015,EN,crystal structure|co-crystal|supramolecular interaction|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o799-o800 (2015)",CC BY +Crystal structure of benzimidazolium salicylate,M. Amudha|P. Praveen Kumar|G. Chakkaravarthi,10.1107/S2056989015017764,https://doaj.org/article/20c819e69b9742e08b29a2fbdfba93f4,01/10/2015,EN,crystal structure|benzimidazolium|salicylate|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o794-o795 (2015)",CC BY +"Crystal structure of 4-[(2,4-dichlorophenyl)(5-hydroxy-3-methyl-1-phenyl-1H-pyrazol-4-yl)methyl]-5-methyl-2-phenyl-2,3-dihydro-1H-pyrazol-3-one",Balbir Kumar|Hitesh Mahajan|Satya Paul|Rajni Kant|Vivek K. Gupta,10.1107/S2056989015017880,https://doaj.org/article/6de102e04f7941de851ce57e04590d8d,01/10/2015,EN,crystal structure|pyrazolone|hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o805-o806 (2015)",CC BY +"Crystal structure of 2-[(1R,2R,4aS,8aS)-2-hydroxy-2,5,5,8a-tetramethyldecahydronaphthalen-1-yl]-N-(o-tolyl)acetamide",Dang-Dang Li|Xin-Wei Shi|Qiang-Qiang Lu|Sheng-Kun Li,10.1107/S2056989015017600,https://doaj.org/article/3a680ec0560d4d309429aae036d892ea,01/10/2015,EN,crystal structure|sclareolide|sclareol|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o788-o789 (2015)",CC BY +"Crystal structure of (E)-4-[N-(7-methyl-2-phenylimidazo[1,2-a]pyridin-3-yl)carboximidoyl]phenol",Abdelmalik Elaatiaoui|Rafik Saddik|Noureddine Benchat|Mohamed Saadi|Lahcen El Ammari,10.1107/S2056989015017843,https://doaj.org/article/ea73acb367024ebd9795d9052a7fbab7,01/10/2015,EN,"crystal structure|imidazo[1,2a]pyridine derivative|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o803-o804 (2015)",CC BY +"Crystal structure of N,N,N-tris[(1,3-benzothiazol-2-yl)methyl]amine",Velabo Mdluli|James A. Golen|Arnold L. Rheingold|David R. Manke,10.1107/S2056989015017417,https://doaj.org/article/e8376878449b499b94f30d0835fe5126,01/10/2015,EN,crystal structure|benzothiazoles|C—H...N interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o786-o787 (2015)",CC BY +Crystal structure of (4-hydroxypiperidin-1-yl)[4-(trifluoromethyl)phenyl]methanone,B. K. Revathi|D. Reuben Jonathan|K. Kalai Sevi|K. Dhanalakshmi|G. Usha,10.1107/S205698901501765X,https://doaj.org/article/76b7ec8eb7524f478e24446c6ed6afbb,01/10/2015,EN,crystal structure|piperdine derivative|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o790-o791 (2015)",CC BY +"Crystal structure of tetraethyl 27,30-dioxo-7,12,20,25-tetra-tert-butyl-3,16-dioxa-9,22,28,31-tetrathiaheptacyclo[21.3.1.11,5.14,8.110,14.114,18.117,21]dotriaconta-4,6,8(29),10,12,17,19,21(32),23,25-decaene-2,2,15,15-tetracarboxylate",Mehmet Akkurt|Jerry P. Jasinski|Shaaban K. Mohamed|Omran A. Omran|Mustafa R. Albayati,10.1107/S205698901501748X,https://doaj.org/article/630283ce293142a2941416b94ec952f1,01/10/2015,EN,crystal structure|calixarenes|macrocycles|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o778-o779 (2015)",CC BY +"Crystal structure of (E)-4,6-dimethoxy-2-(4-methoxystyryl)-3-methylbenzaldehyde",Seunghyun Ahn|Yoongho Lim|Dongsoo Koh,10.1107/S2056989015017363,https://doaj.org/article/f497e2be589f467ea4c488b826ebf5f8,01/10/2015,EN,crystal structure|benzaldehyde|resveratrol derivatives|biological properties|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o771-o771 (2015)",CC BY +Crystal structure of O-ethyl N-(ethoxycarbonyl)thiocarbamate,Matthew J. Henley|Alex M. Schrader|Victor G. Young Jr|George Barany,10.1107/S2056989015016989,https://doaj.org/article/971f3f244aff42729b528fedd8c58754,01/10/2015,EN,crystal structure|thiocarbamate|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o782-o783 (2015)",CC BY +Crystal structure of 4-[(E)-(2-carbamothioylhydrazinylidene)methyl]benzoic acid,Muhammad Nawaz Tahir|Muhammad Anwar-ul-Haq|Muhammad Aziz Choudhary,10.1107/S2056989015017594,https://doaj.org/article/4bb54c188cc840998089917e33c065ab,01/10/2015,EN,crystal structure|hydrazinecarbothioamide|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o772-o772 (2015)",CC BY +"Crystal structure of 1,5-diethyl-3′,5′-diphenyl-1,5-dihydro-3′H-spiro[pyrazolo[3,4-d]pyrimidine-4,2′-[1,3,4]thiadiazole]",Mohammed El Fal|Youssef Ramli|El Mokhtar Essassi|Mohamed Saadi|Lahcen El Ammari,10.1107/S2056989015017405,https://doaj.org/article/b6a8e56719b4414d99827fd65a4b25b5,01/10/2015,EN,"crystal structure|pyrazolo[3,4-d]pyrimidine|thiadiazole|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o769-o770 (2015)",CC BY +Crystal structure of 1-(5-bromo-1-benzofuran-2-yl)ethanone oxime,G. Krishnaswamy|P. Krishna Murthy|R. Nivedita Desai|P. A. Suchetan|D. B. Aruna Kumar,10.1107/S205698901501751X,https://doaj.org/article/3c25107652a443e8b1111bde9a711511,01/10/2015,EN,crystal structure|1-(5-bromobenzofuran-2-yl) ethanone oxime|hydrogen bonding|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o773-o774 (2015)",CC BY +"Crystal structure of methyl (2Z)-2-[(2Z)-2-(2-cyclopentylidenehydrazin-1-ylidene)-4-oxo-3-phenyl-1,3-thiazolidin-5-ylidene]ethanoate",Mehmet Akkurt|Victoria A. Smolenski|Shaaban K. Mohamed|Jerry P. Jasinski|Alaa A. Hassan|Mustafa R. Albayati,10.1107/S2056989015017454,https://doaj.org/article/789401afca6548d89c53630d55a0e884,01/10/2015,EN,crystal structure|thiazolidinyl ring|disorder|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o776-o777 (2015)",CC BY +"Crystal structure of dimethyl 9H-carbazole-2,7-dicarboxylate",Ryan L. Lehane|James A. Golen|Arnold L. Rheingold|David R. Manke,10.1107/S2056989015017557,https://doaj.org/article/f65a0f5d9d9942a1905d35466925a678,01/10/2015,EN,crystal structure|carbazoles|hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o784-o785 (2015)",CC BY +"Crystal structure of 2,6-dichloro-4-nitropyridine N-oxide",Andrew M. Prichard|Will E. Lynch|Clifford W. Padgett,10.1107/S2056989015017387,https://doaj.org/article/5dbe8ba9e71d4615bf17a39111576842,01/10/2015,EN,crystal structure|pyridine N-oxide|herringbone pattern|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o775-o775 (2015)",CC BY +"Crystal structure of triethyl 2-(5-nitro-2H-indazol-2-yl)propane-1,2,3-tricarboxylate",Mohammed Boulhaoua|Mohammed Benchidmi|El Mokhtar Essassi|Mohamed Saadi|Lahcen El Ammari,10.1107/S2056989015017235,https://doaj.org/article/b0117f9b6b054253b295c2ff3f73d427,01/10/2015,EN,crystal structure|indazole|ester|pharmacological properties|biochemical properties|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o780-o781 (2015)",CC BY +Crystal structure of tetrakis(1-oxidopyridin-2-yl)methane methanol tetrasolvate,Kouzou Matsumoto|Kazuaki Kawashita|Masaki Kannami|Masaji Oda,10.1107/S2056989015016862,https://doaj.org/article/24f3f12ab532451ba4d8a0245ab1e095,01/10/2015,EN,crystal structure|pyridine N-oxide|S4 symmetry|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o754-o755 (2015)",CC BY +Crystal structure of benzyl(methyl)phenyl[(piperidin-1-ium-1-yl)methyl]silane bromide,Eva Rebecca Barth|Christopher Golz|Stephan G. Koller|Carsten Strohmann,10.1107/S2056989015016965,https://doaj.org/article/d9a0999745dc4b26bbca96decd73e2f5,01/10/2015,EN,crystal structure|chiral organosilane|N—H...Br hydrogen bond|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o759-o759 (2015)",CC BY +Crystal structure of ethyl 5-acetyl-2-{[(dimethylamino)methylidene]amino}-4-methylthiophene-3-carboxylate,N. L. Prasad|M. S. Krishnamurthy|H. Nagarajaiah|Noor Shahina Begum,10.1107/S2056989015016217,https://doaj.org/article/17a237245cd2418c99a02459a55a7442,01/10/2015,EN,crystal structure|thiophene derivative|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o762-o763 (2015)",CC BY +"Crystal structure of (E)-N′-(3,4-difluorobenzylidene)-4-methylbenzenesulfonohydrazide",Yeming Wang|Hong Yan,10.1107/S2056989015016205,https://doaj.org/article/bb935c4bb6fd4aaf81301145d2faafba,01/10/2015,EN,crystal structure|sulfonylhydrazone|hydrogen bonding|biological activity|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o761-o761 (2015)",CC BY +Crystal structure of flumioxazin,Hyunjin Park|Jineun Kim|Eunjin Kwon|Tae Ho Kim,10.1107/S2056989015017223,https://doaj.org/article/957c5641016242949fd1ba7170482249,01/10/2015,EN,"crystal structure|dicarboximide herbicide|flumioxazin|1H-isoindole|1,4-benzoxazine|C—H...F hydrogen bonds|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o768-o768 (2015)",CC BY +"Crystal structure of [(2S,3R)-3-hydroxy-3-phenylbutan-2-yl]pyrrolidinium chloride",Abirami Kandhaswamy|K.S. Meena|S. Deepa|S. Murugavel,10.1107/S2056989015016916,https://doaj.org/article/c0ab899dcdc84eaea004a917c0e55adc,01/10/2015,EN,crystal structure|salt|pyrrolidinium chloride|ionic liquids|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o758-o758 (2015)",CC BY +Crystal structure of 4-nitro-N-[(pyridin-2-yl)methylidene]aniline,Watcharin Saphu|Kittipong Chainok,10.1107/S2056989015016928,https://doaj.org/article/e0c737be799741478746cf68e925fac8,01/10/2015,EN,crystal structure|hydrogen bonds|Schiff base|π–π stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o760-o760 (2015)",CC BY +Crystal structure of N-{[3-bromo-1-(phenylsulfonyl)-1H-indol-2-yl]methyl}benzenesulfonamide,M. Umadevi|P. Raju|R. Yamuna|A. K. Mohanakrishnan|G. Chakkaravarthi,10.1107/S2056989015016874,https://doaj.org/article/0edaf58f2d5a4cc1b31c347c38338abd,01/10/2015,EN,crystal structure|benzenesulfonamide|phenylsulfonyl|biological activity|derivatives|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o756-o757 (2015)",CC BY +"Crystal structure of 2-acetyl-5-(3,4-dimethoxyphenyl)-6-ethoxycarbonyl-3,7-dimethyl-5H-thiazolo[3,2-a]pyrimidin-8-ium chloride",N. L. Prasad|M. S. Krishnamurthy|Noor Shahina Begum,10.1107/S2056989015016229,https://doaj.org/article/567528debfab4a8498e19a8a84e830ca,01/10/2015,EN,crystal structure|salt|pyrimidinium|chloride|pyrimidine derivatives|pharmacological properties|biological activity|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o764-o765 (2015)",CC BY +"Crystal structure of 3-methyl-1-phenyl-6-propylamino-1H-pyrazolo[3,4-b]pyridine-5-carbonitrile",Jerry P. Jasinski|Mehmet Akkurt|Shaaban K. Mohamed|Hajjaj H. M. Abdu-Allah|Mustafa R. Albayati,10.1107/S2056989015017004,https://doaj.org/article/4cc4c7f29eba4b9a94581d5e933d922d,01/10/2015,EN,"crystal structure|pyrazolo[3,4-b]pyridine|amination|nucleophilic substitution|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o766-o767 (2015)",CC BY +"Crystal structure of 1,4,5,6,7,8,9,10,11,12,13-undecahydrocyclododeca[c]pyrazol-3-ol",Casey C. Raymond|Michael A. Knopp,10.1107/S2056989015016746,https://doaj.org/article/b1c8a0b252484493824aeb86e53d853d,01/10/2015,EN,crystal structure|pyrazolol|tautomer|pyrazolone|macrocycle|O—H...N hydrogen bond|N—H...π interaction|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o752-o753 (2015)",CC BY +"Crystal structure of (3S*,4S*,4aS*,5R*,6R*,6aS*,7R*,11aS*,11bR*)-5,6-bis(benzoyloxy)-3,4a-dihydroxy-4,7,11b-trimethyl-1,2,3,4,4a,5,6,6a,7,11,11a,11b-dodecahydrophenanthro[3,2-b]furan-4-carboxylic acid methanol monosolvate",Sadaf Siddiqui|Osayemwenre Erharuyi|Abiodun Falodun|M. Iqbal Choudhary|Sammer Yousuf,10.1107/S2056989015016461,https://doaj.org/article/f2dbb2f9de1e44649aec368e6930304f,01/10/2015,EN,crystal structure|diterpenoid|Caesalpinia pulcherrima|Pulcherrimin A|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o739-o740 (2015)",CC BY +"Crystal structure of 1-fluoro-1,3-dihydrobenzo[c]thiophene 2,2-dioxide",Ying Zou|Zibin Qiu|Renming Tang|Kaixu Yuan|Ya Li,10.1107/S2056989015016357,https://doaj.org/article/834aac7c2e944ed78cafefde7788ef93,01/10/2015,EN,crystal structure|sulfone|fluorine|dihydrobenzothiophene|C—H...O and C—H...F interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o749-o749 (2015)",CC BY +"Crystal structure of borated N,N,N′,N′-tetramethyldiaminomethane",Kathrin Louven|Georgina Quentin|Carsten Strohmann,10.1107/S2056989015016813,https://doaj.org/article/ddf58aec50034d0e95fa18126b0af558,01/10/2015,EN,crystal structure|borane|amine|twin|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o743-o744 (2015)",CC BY +"Crystal structure of bis{2-[amino(iminiumyl)methyl]-1,1-dimethylguanidine} carbonate methanol disolvate",Jinlong Dong|Bin Liu|Binsheng Yang,10.1107/S2056989015016771,https://doaj.org/article/82bb945bf57942f7b9cac8669156a9d6,01/10/2015,EN,crystal structure|metformin|sodium carbonate|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o747-o748 (2015)",CC BY +"Crystal structure of (2Z)-2-{(5Z)-5-[3-fluoro-2-(4-phenylpiperidin-1-yl)benzylidene]-4-oxo-3-(p-tolyl)-1,3-thiazolidin-2-ylidene}-N-(p-tolyl)ethanethioamide dimethyl sulfoxide monosolvate",Liliya Khamidullina|Konstantin Obydennov|Pavel Slepukhin|Yury Morzherin,10.1107/S2056989015016850,https://doaj.org/article/e3e8af90b997416e8bec795ab4b025ef,01/10/2015,EN,crystal structure|thioamide|exocyclic double bond|thiazolidine|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o745-o746 (2015)",CC BY +"Crystal structure of 1,3-dicyclohexyl-1-[3-(pyren-1-yl)propanoyl]urea",Edgar González-Juárez|Marisol Güizado-Rodríguez|Victor Barba|Hugo Tlahuext,10.1107/S2056989015015996,https://doaj.org/article/2a81e5da97164e29a885198bbcc2cb46,01/10/2015,EN,"crystal structure|N,N′-dicyclohexylcarbodimide|N,N′-dicyclohexylurea|hydrogen bonds|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o737-o738 (2015)",CC BY +"Crystal structure of 5-chloro-1,3-bis[2-(2-oxo-1,3-oxazolidin-3-yl)ethyl]-1H-benzimidazol-2(3H)-one",Kaoutar Bouayad|Youssef Kandri Rodi|Youness Ouzidan|El Mokhtar Essassi|Mohamed Saadi|Lahcen El Ammari,10.1107/S2056989015016102,https://doaj.org/article/9ceb0ffebc094ee789d636caa58cd59d,01/10/2015,EN,crystal structure|benzimidazol-2-one derivative|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o735-o736 (2015)",CC BY +"Crystal structure of (E)-2-(4-chlorobenzylidene)-3,4-dihydronaphthalen-1(2H)-one: a second monoclinic polymorph",Muhammad Haroon|Tashfeen Akhtar|Muhammad Nawaz Tahir,10.1107/S2056989015016151,https://doaj.org/article/9f78d1ed9ca4465bac7fd1f2d18a47e4,01/10/2015,EN,crystal structure|α-tetralone|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o741-o742 (2015)",CC BY +Crystal structure of 3-ethynylbenzoic acid,Chiara Venturini|Nicolas Ratel-Ramond|Andre Gourdon,10.1107/S2056989015016515,https://doaj.org/article/ee7c7bbdb5e0408aa6ff27392a5d778f,01/10/2015,EN,crystal structure|3-ethynylbenzoic acid|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o750-o751 (2015)",CC BY +Crystal structure of (S)-2-amino-2-methylsuccinic acid,Isao Fujii,10.1107/S2056989015016709,https://doaj.org/article/0a55d2bffa414aca8ab1d99bbf262342,01/10/2015,EN,crystal structure|succinic acid|zwitterion|hydrogen bonding|three-dimensional framework|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o731-o732 (2015)",CC BY +"Crystal structure of ammonium (3,5-dichlorophenoxy)acetate hemihydrate",Graham Smith,10.1107/S2056989015016345,https://doaj.org/article/998d629255ea4bd987976ce18d5b6ab0,01/10/2015,EN,"crystal structure|phenoxyacetic acid herbicides|tryptaminium salt|(3,5-dichlorophenoxy)acetic acid|hydrated salt|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o717-o718 (2015)",CC BY +Crystal structure of ethyl 2-phenyl-9-phenylsulfonyl-9H-carbazole-3-carboxylate,M. Umadevi|P. Raju|R. Yamuna|A. K. Mohanakrishnan|G. Chakkaravarthi,10.1107/S205698901501662X,https://doaj.org/article/4550e5ceb7e84874a097692c7ef81b43,01/10/2015,EN,crystal structure|ester|phenylsulfonyl|9H-carbazole-3-carboxylate|biological activity|indole derivatives|hydrogen bonding|C—H...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o725-o726 (2015)",CC BY +The crystal structure of 2-[5-(dimethylamino)naphthalene-1-sulfonamido]phenyl 5-(dimethylamino)naphthalene-1-sulfonate,Kittipong Chainok|Tanwawan Duangthongyou|Thawatchai Tuntulani|Apinya Chuenka|Boontana Wannalerse,10.1107/S2056989015016199,https://doaj.org/article/8d917d52322c438facbe33b20d8bdf8e,01/10/2015,EN,crystal structure|dansyl derivatives|disorder|hydrogen bonding|π-stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o721-o722 (2015)",CC BY +"Crystal structure of β-d,l-fructose",Tomohiko Ishii|Tatsuya Senoo|Akihide Yoshihara|Kazuhiro Fukada|Genta Sakane,10.1107/S2056989015016503,https://doaj.org/article/19b1e275f3ca4c0ba515e550a30c826d,01/10/2015,EN,crystal structure|hydrogen bonding|racemic compound|rare sugar|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o719-o720 (2015)",CC BY +Crystal structure of mandipropamid,Hyunjin Park|Jineun Kim|Gihaeng Kang|Tae Ho Kim,10.1107/S2056989015016643,https://doaj.org/article/7fd2628136e54a2488680aa3316f3e94,01/10/2015,EN,crystal structure|conformation|hydrogen bonding|C—H...π interactions|amide fungicide|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o727-o728 (2015)",CC BY +Crystal structure of (E)-2-(4-methoxystyryl)-3-methyl-1-phenylsulfonyl-1H-indole,M. Umadevi|P. Raju|R. Yamuna|A. K. Mohanakrishnan|G. Chakkaravarthi,10.1107/S2056989015016631,https://doaj.org/article/c2bde83f95e14da58bd87399b0a4293c,01/10/2015,EN,crystal structure|phenylsulfonyl|1H-indole|hydrogen bonding|C—H...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o723-o724 (2015)",CC BY +"Crystal structure of methyl (3RS,4SR,4aRS,11aRS,11bSR)-5-oxo-3,4,4a,5,7,8,9,10,11,11a-decahydro-3,11b-epoxyazepino[2,1-a]isoindole-4-carboxylate",Flavien A. A. Toze|Dmitry S. Poplevin|Fedor I. Zubkov|Eugeniya V. Nikitina|Ciara Porras|Victor N. Khrustalev,10.1107/S2056989015016679,https://doaj.org/article/0db614b4442243cb8b121d63312ad284,01/10/2015,EN,"crystal structure|3,6a-epoxyisoindoles|azepane|intramolecular cycloaddition|C—H...O hydrogen bonds|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o729-o730 (2015)",CC BY +Crystal structure of (2R)-1-[(methylsulfonyl)oxy]propan-2-aminium chloride: a chiral molecular salt,H. R. Rajegowda|B. S. Palakshamurthy|N. K. Lokanath|S. Naveen|P. Raghavendra Kumar,10.1107/S2056989015015972,https://doaj.org/article/525ddf8a20a34f6a9a79cf5614956c3d,01/10/2015,EN,crystal structure|chiral methanesulfonate|hydrogen bonding|salt|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o733-o734 (2015)",CC BY +"Crystal structure of 2-hydroxy-2-(2-oxocycloheptyl)-2,3-dihydro-1H-indene-1,3-dione",P. Kaleel Ahamed|N. Srinivasan|R. Ranjith Kumar|R. V. Krishnakumar,10.1107/S2056989015016126,https://doaj.org/article/c331be6c733c48e1a43a86217facefcb,01/10/2015,EN,"crystal structure|indene-1,3-dione|hydrogen bonding|π–π stacking|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o715-o716 (2015)",CC BY +Crystal structure of 5-diethylamino-2-({[4-(diethylamino)phenyl]imino}methyl)phenol,C. Vidya Rani|G. Chakkaravarthi|N. Indra Gandhi|G. Rajagopal,10.1107/S205698901501645X,https://doaj.org/article/3f9163f08edb4ba2b6bd9809a8dc01dc,01/10/2015,EN,crystal structure|phenol|Schiff base|intramolecular hydrogen bond|C—H...π interactions|biological activity|pharmacological activity|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o712-o713 (2015)",CC BY +Crystal structure of fenclorim,Eunjin Kwon|Jineun Kim|Gihaeng Kang|Tae Ho Kim,10.1107/S2056989015016187,https://doaj.org/article/7df6adb2468441e3bcbcad09b430c2a4,01/10/2015,EN,crystal structure|herbicide|fenclorim|pyrimidine|C—Cl...π interactions|π–π interactions|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o714-o714 (2015)",CC BY +Crystal structure of (E)-1-(3-chlorophenyl)-3-(furan-2-yl)prop-2-en-1-one,Sarah K. Zingales|Maya Z. Wallace|Clifford W. Padgett,10.1107/S2056989015016266,https://doaj.org/article/78bc6fff41c346dab3f29f3ed74d1b7c,01/10/2015,EN,crystal structure|chalcone|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o707-o707 (2015)",CC BY +"Crystal structure of 1′-ethylspiro[chroman-4,4′-imidazolidine]-2′,5′-dione: a hydantoine derivative",S. B. Benaka Prasad|S. Naveen|M. Madaiah|N. K. Lokanath|Ismail Warad|Muneer Abdoh,10.1107/S2056989015016175,https://doaj.org/article/175dca8879dd40bab185405ad3b7f8fc,01/10/2015,EN,crystal structure|hydantoin derivatives|imidazolidine|chroman|spiro|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o705-o706 (2015)",CC BY +"Crystal structure of 3,5-dimethoxy-2-[5-(naphthalen-1-yl)-4,5-dihydro-1H-pyrazol-3-yl]phenol",Dongsoo Koh,10.1107/S2056989015016369,https://doaj.org/article/8af5e0f4ac9a4041b57f9a80cd8e2445,01/10/2015,EN,crystal structure|pyrazoline|naphthalene|N—H...π and C—H...π interaction|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o708-o709 (2015)",CC BY +"Crystal structure of 3a,6,6,9a-tetramethyldodecahydronaphtho[2,1-b]furan-2-ol",Xin-Wei Shi|Sheng-Kun Li|Dang-Dang Li|Qiang-Qiang Lu,10.1107/S2056989015016370,https://doaj.org/article/53b68474f7b44c3dbfd5fcdd367fb244,01/10/2015,EN,crystal structure|sclareolide|sclaral|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o710-o711 (2015)",CC BY +"Crystal structure of poly[(2,2′-bipyridine-κ2N,N′)tetra-μ2-cyanido-κ4C:N;κ4N:C-manganese(II)disilver(I)]",Chatphorn Theppitak|Kittipong Chainok,10.1107/S205698901501676X,https://doaj.org/article/3fd554db7565470c879d1a2009372ef1,01/10/2015,EN,crystal structure|dicyanoargentate(I)|manganese(II)|triple interpenetration|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp m179-m180 (2015)",CC BY +"Crystal structure of tris(1,3-dimesityl-4,5-dihydro-1H-imidazol-3-ium) tetrabromidocobaltate(II) bromide chloroform hexasolvate",Eduard Rais|Ulrich Flörke|René Wilhelm,10.1107/S2056989015016254,https://doaj.org/article/5e34c350e5554f9c91585a47f36b2722,01/10/2015,EN,crystal structure|imidazolium salt|absolute structure|C—H...Br interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp m177-m178 (2015)",CC BY +Crystal structure of 2-cyano-1-methylpyridinium tetrafluoroborate,Francesca A. Vaccaro|Lynn V. Koplitz|Joel T. Mague,10.1107/S2056989015016011,https://doaj.org/article/4cdfb8c1e565422b83c43b3c459641ff,01/10/2015,EN,crystal structure|salt|C—H...F interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o697-o698 (2015)",CC BY +"Crystal structure of dichlorido[2-(diphenylphosphanyl)-3,4,5,6-tetrafluorobenzene-1-thiolato-κ2P,S]gold(III)",Peter W. R. Corfield|Mary Bailey,10.1107/S2056989015016758,https://doaj.org/article/5fde56d9905e472abec692e142710470,01/10/2015,EN,crystal structure|mixed ligand|gold complex|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp m181-m182 (2015)",CC BY +"Crystal structure of ethyl 4-(2-fluorophenyl)-6-methyl-2-sulfanylidene-1,2,3,4-tetrahydropyrimidine-5-carboxylate",M. S. Krishnamurthy|Noor Shahina Begum,10.1107/S2056989015015145,https://doaj.org/article/5ecb9c9069c84a329315b711934a52b6,01/10/2015,EN,"crystal structure|ester|pyrimidine|hydrogen bonding|3,4-dihydropyrimidin-2(1H)-one|therapeutic properties|pharmacological properties|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o699-o700 (2015)",CC BY +Crystal structure of [4-(chloromethyl)phenyl](4-hydroxypiperidin-1-yl)methanone,B. K. Revathi|D. Reuben Jonathan|K. Kalai Sevi|K. Dhanalakshmi|G. Usha,10.1107/S2056989015016096,https://doaj.org/article/3d1b9d4bc8494cdb9cbb7268e8eb43d7,01/10/2015,EN,crystal structure|piperidine derivative|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o703-o704 (2015)",CC BY +"Crystal structure of an unknown solvate of dodecakis(μ2-alaninato-1:2κ2O:N,O)cerium(III)hexanickel(II) aquatris(hydroxido-κO)tris(nitrato-κ2O,O′)cerate(III)",Stanislav I. Bezzubov|Vladimir D. Doljenko|Andrei V. Churakov|Irina S. Zharinova|Yuri M. Kiselev,10.1107/S2056989015017132,https://doaj.org/article/629a5bbe9ac2488f8869588d193d40d3,01/10/2015,EN,crystal structure|cerium complex|L-alaninate ligand|SQUEEZE procedure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp m183-m184 (2015)",CC BY +Crystal structure of [3-amino-2-(phenyldiazenyl)pyridine]chlorido(η6-p-cymene)ruthenium(II) chloride,Kanidtha Hansongnern|Supojjanee Sansook|Thassani Romin|Arunpatcha Nimthong Roldan|Chaveng Pakawatchai,10.1107/S2056989015017466,https://doaj.org/article/9f3974d5d79140ffa63fe13c7077a5c1,01/10/2015,EN,crystal structure|3-amino-2-(phenylazo)pyridine|ruthenium complex|N—H...Cl hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp m185-m186 (2015)",CC BY +Crystal structure of 2-methoxy-1-nitronaphthalene,Hasna Yassine|Mostafa Khouili|Lahcen El Ammari|Mohamed Saadi|El Mostafa Ketatni,10.1107/S2056989015016114,https://doaj.org/article/7a8f341be1994220a405d3b36ff7b418,01/10/2015,EN,crystal structure|naphthalene derivative|weak C—H...O interactions|π–π stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp o701-o702 (2015)",CC BY +Crystal structure of CdSO4(H2O): a redetermination,Chatphorn Theppitak|Kittipong Chainok,10.1107/S2056989015016904,https://doaj.org/article/80d4f989e8344174b8d5dfbe0ffbe671,01/10/2015,EN,crystal structure|redetermination|cadmium sulfate monohydrate|hydrothermal synthesis|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp i8-i9 (2015)",CC BY +"Crystal structure of [5-bromo-2-(pyridin-2-yl-κN)phenyl-κC1](pentane-2,4-dionato-κ2O,O′)platinum(II)",Keito Fukuda|Tomoaki Sugaya|Koji Ishihara,10.1107/S2056989015017478,https://doaj.org/article/2034d8df41c8472a87eceafb8a8a61a1,01/10/2015,EN,crystal structure|platinum(II)|cyclometalated complex|acetylacetonato ligand|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1259-1261 (2015)",CC BY +"Crystal structure of 4′-{[4-(2,2′:6′,2′′-terpyridyl-4′-yl)phenyl]ethynyl}biphenyl-4-yl (2,2,5,5-tetramethyl-1-oxyl-3-pyrrolin-3-yl)formate benzene 2.5-solvate",Andreas Meyer|Gregor Schnakenburg|Olav Schiemann,10.1107/S2056989015017697,https://doaj.org/article/92548344873943388e00c0342f3b3c28,01/10/2015,EN,crystal structure|terpyridine|nitroxyl|nitroxide|phenylethynylbiphenyl|ethynylphenyl|C—H...π interactions|π–π interactions|hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1245-1249 (2015)",CC BY +Double salt crystal structure of hexasodium hemiundecahydrogen α-hexamolybdoplatinate(IV) heminonahydrogen α-hexamolybdoplatinate(IV) nonacosahydrate: dihydrogen disordered-mixture double salt,Hea-Chung Joo|Ki-Min Park|Uk Lee,10.1107/S2056989015017703,https://doaj.org/article/a3ca219d70d54340800f22a7b2692854,01/10/2015,EN,crystal structure|platinium containing polyoxomolybdate|double salt-type heteropolyoxometalate|hexamolybdoplatinate(IV)|multihydrogen bond|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1250-1254 (2015)",CC BY +Crystal structure of strontium dinickel iron orthophosphate,Said Ouaatta|Abderrazzak Assani|Mohamed Saadi|Lahcen El Ammari,10.1107/S205698901501779X,https://doaj.org/article/1941c1dcb677448d80f560aaadb6cccf,01/10/2015,EN,crystal structure|transition metal phosphates|solid-state reaction synthesis|SrNi2Fe(PO4)3|α-chromium phosphate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1255-1258 (2015)",CC BY +A co-crystal of nonahydrated disodium(II) with mixed anions from m-chlorobenzoic acid and furosemide,Bianca King London|Michelle O. Fletcher Claville|Sainath Babu|Frank R. Fronczek|Rao M. Uppu,10.1107/S2056989015017430,https://doaj.org/article/6e71a235b23d4cc5b70fee517cfb2fab,01/10/2015,EN,crystal structure|loop diuretics|co-crystals|pharmaceutical formulations|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1266-1269 (2015)",CC BY +"Crystal structure of 5-[4-(diethylamino)benzylidene]-2,2-dimethyl-1,3-dioxane-4,6-dione",Egija Stepina|Dmitrijs Stepanovs|Inese Mierina|Mara Jure,10.1107/S2056989015017673,https://doaj.org/article/9300c0ac7200412ebd6205bfa3953b7a,01/10/2015,EN,"crystal structure|arylidene Meldrum's acid|5-arylmethylene-2,2-dimethyl-1,3-dioxan-4,6-dione|organic synthesis|intramolecular hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1242-1244 (2015)",CC BY +Crystal structure of an unknown tetrahydrofuran solvate of tetrakis(μ3-cyanato-κ3N:N:N)tetrakis[(triphenylphosphane-κP)silver(I)],Peter Frenzel|Dieter Schaarschmidt|Alexander Jakob|Heinrich Lang,10.1107/S2056989015017636,https://doaj.org/article/5aeb6ffd35c24cdeb1b6bde8362d4eea,01/10/2015,EN,crystal structure|silver(I)|cyanate ligand|phosphine ligand|Ag4N4 heterocubane|SQUEEZE procedure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1262-1265 (2015)",CC BY +"Crystal structures of morpholinium hydrogen bromanilate at 130, 145 and 180 K",Kazuma Gotoh|Yuki Tahara|Hiroyuki Ishida,10.1107/S2056989015017272,https://doaj.org/article/a712ac83dfe8432ab1459134804af81f,01/10/2015,EN,crystal structure|bromanilic acid|morpholine|hydrogen-bonding|proton disorder|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1226-1229 (2015)",CC BY +Crystal structure of di-μ-isobutyrato-κ4O:O′-bis[cis-dichlorido(dimethyl sulfoxide-κS)rhenium(III)],Alexander A. Golichenko|Alexander V. Shtemenko,10.1107/S2056989015017429,https://doaj.org/article/213067e4b5064ac2bb4ee56fe77fd8c9,01/10/2015,EN,crystal structure|rhenium(III)|cluster|alkylcarboxylate complex|quadruple metal–metal bond|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1219-1221 (2015)",CC BY +Crystal structures of three new N-halomethylated quaternary ammonium salts,Carolina Múnera-Orozco|Rogelio Ocampo-Cardona|David L. Cedeño|Rubén A. Toscano|Luz Amalia Ríos-Vásquez,10.1107/S2056989015017181,https://doaj.org/article/586864595f574ba8b2869574612ae408,01/10/2015,EN,crystal structure|N-halomethylated quaternary ammonium salts|cation–π interaction|halogen bond|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1230-1235 (2015)",CC BY +Crystal structure of 1-(4-methylphenyl)-3-(propan-2-ylideneamino)thiourea,Mukesh M. Jotani|Chien Ing Yeo|Edward R. T. Tiekink,10.1107/S2056989015017624,https://doaj.org/article/521e98f61c3f41c087ae2efc45915682,01/10/2015,EN,crystal structure|hydrogen bonding|thiourea derivative|thiosemicarbazone|Hirshfeld surface analysis|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1236-1241 (2015)",CC BY +"Synthesis, characterization and crystal structure of a 2-(diethylaminomethyl)indole ligated dimethylaluminium complex",Logan E. Shephard|Nicholas B. Kingsley,10.1107/S2056989015017053,https://doaj.org/article/1ba6521774ce41d98a32dc26cbf19309,01/10/2015,EN,crystal structure|aluminium|indolyl|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1222-1225 (2015)",CC BY +"Crystal structure of tetrakis(μ3-2-{[1,1-bis(hydroxymethyl)-2-oxidoethyl]iminomethyl}-6-methoxyphenolato)tetrakis[aquacopper(II)]: a redetermination at 200 K",Elena A. Buvaylo|Olga Yu. Vassilyeva|Brian W. Skelton,10.1107/S2056989015017314,https://doaj.org/article/643e9f52b13c425aa156284fe3941ac8,01/10/2015,EN,crystal structure|CuII cubane-type complex|Schiff base ligand|o-vanillin|tris(hydroxymethyl)aminomethane|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1203-1206 (2015)",CC BY +"Crystal structures of two chiral piperidine derivatives: 1-[(1R)-2-hydroxy-1-phenylethyl]piperidin-4-one and 8-[(1S)-1-phenylethyl]-1,4-dioxa-8-azaspiro[4.5]decane-7-thione",Nancy Romero|Sylvain Bernès|Luis F. Roa|Joel L. Terán|Dino Gnecco,10.1107/S2056989015017119,https://doaj.org/article/abfdb3cb60eb416d89a057bc3771aa55,01/10/2015,EN,crystal structure|piperidine|piperidone|thione|ring conformation|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1207-1211 (2015)",CC BY +"Crystal structure of 3-C-(N-benzyloxycarbonyl)aminomethyl-3-deoxy-1,2:5,6-di-O-isopropylidene-α-d-allofuranose",Vitalijs Rjabovs|Dmitrijs Stepanovs|Maris Turks,10.1107/S2056989015017582,https://doaj.org/article/ebcc9719d5964d91b58ff38633931799,01/10/2015,EN,crystal structure|3-aminomethyl diacetone-D-allose|imino sugar precursor|sugar amino acid precursor|hydrogen bonding.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1212-1215 (2015)",CC BY +Crystal structure of bis[μ-(4-methoxyphenyl)methanethiolato-κ2S:S]bis[chlorido(η6-1-isopropyl-4-methylbenzene)ruthenium(II)] chloroform disolvate,David Stíbal|Georg Süss-Fink|Bruno Therrien,10.1107/S2056989015017399,https://doaj.org/article/ea0864ee536640be97a4903d468571ab,01/10/2015,EN,crystal structure|dithiolato ruthenium(II) complex|p-cymene|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1216-1218 (2015)",CC BY +Crystal structures of three (trichloromethyl)(carbamoyl)disulfanes,Barbara L. Goldenberg|Victor G. Young Jr|George Barany,10.1107/S2056989015015893,https://doaj.org/article/5d3e1b50143d491db1a8d0197092bbf4,01/10/2015,EN,crystal structures|carbamoyl disulfanes|hydrogen bonding|Z = 16|Z′ = 2|halogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1169-1173 (2015)",CC BY +Crystal structure of 3-methylpyridinium picrate: a triclinic polymorph,Jeganathan Gomathi|Doraisamyraja Kalaivani,10.1107/S2056989015017090,https://doaj.org/article/4131fbb7dca24e1d8843fa2586509da3,01/10/2015,EN,crystal structure|3-methylpyridinium picrate|triclinic polymorph|π–π stacking|anticonvulsant activity.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1196-1198 (2015)",CC BY +"Crystal structures of 5-amino-N-phenyl-3H-1,2,4-dithiazol-3-iminium chloride and 5-amino-N-(4-chlorophenyl)-3H-1,2,4-dithiazol-3-iminium chloride monohydrate",Chien Ing Yeo|Yee Seng Tan|Edward R. T. Tiekink,10.1107/S2056989015016655,https://doaj.org/article/24bbaa481ea64990a751d56a87e71924,01/10/2015,EN,crystal structure|hydrogen bonding|dithiazole ring|salt|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1159-1164 (2015)",CC BY +Crystal structure of (μ-4-hydroxybenzenethiolato-κ2S:S)bis(μ-phenylmethanethiolato-κ2S:S)bis[(η6-1-isopropyl-4-methylbenzene)ruthenium(II)] tetrafluoridoborate,David Stíbal|Georg Süss-Fink|Bruno Therrien,10.1107/S2056989015016953,https://doaj.org/article/eb5b7d1de7dc4f94a04d59dc09d1d152,01/10/2015,EN,crystal structure|ruthenium complex|piano-stool coordination geometry|thiolate ligands|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1174-1176 (2015)",CC BY +"Crystal structure of (±)-(7RS,8SR)-7-methyl-1,4-dioxaspiro[4.5]decane-7,8-diol",Takeshi Oishi|Hiroaki Yamamoto|Tomoya Sugai|Keisuke Fukaya|Yu Yamaguchi|Ami Watanabe|Takaaki Sato|Noritaka Chida,10.1107/S2056989015016783,https://doaj.org/article/47faee69e7a64ca6ac046432a5cc70a5,01/10/2015,EN,crystal structure|hydrogen bonds|paclitaxel|cyclohexane|hydroxy groups|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1181-1184 (2015)",CC BY +Crystal structure of poly[[μ2-diaqua-diaqua-μ2-l-proline-κ2O:O′-strontium] dibromide],Selladurai Sathiskumar|Thangavelu Balakrishnan|Kandasamy Ramamurthi|Subbiah Thamotharan,10.1107/S2056989015017302,https://doaj.org/article/914be909cb334c0fbc90ee55caa70ca3,01/10/2015,EN,crystal structure|proline|amino acid|strontium coordination polymer|N/O—H...Br hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1199-1202 (2015)",CC BY +"Crystal structures of the potassium and rubidium salts of (3,5-dichlorophenoxy)acetic acid: two isotypic coordination polymers",Graham Smith,10.1107/S2056989015016722,https://doaj.org/article/529e352acca140eb9efaa98296d3d1f9,01/10/2015,EN,"crystal structure|coordination polymers|(3,5-dichlorophenoxy)acetic acid|3,5-D|potassium and rubidium salts|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1177-1180 (2015)",CC BY +Etude structurale et vibrationnelle d'un nouveau composé complexe de cobalt: [Co(imidazole)4Cl]Cl,Amira Derbel|Tahar Mhiri|Mohsen Graia,10.1107/S2056989015015807,https://doaj.org/article/af98517c1c834bdbbad120879c5707cc,01/10/2015,EN,crystal structure|cobalt complex|imidazole|hydrogen bonding|framework|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1185-1189 (2015)",CC BY +"Crystal structure of acetonitrile[η6-1-methyl-4-(1-methylethyl)benzene][1-(pyrimidin-2-yl)-3H-indol-1-ium-2-yl-κ2N,C]ruthenium(II) bis(hexafluoridoantimonate)",Carina Sollert|Andreas Orthaber|Lukasz T. Pilarski,10.1107/S2056989015016710,https://doaj.org/article/b3252c09e1204a199305c855bf12d49c,01/10/2015,EN,crystal structure|cyclometalated RuII|pyrimidyl-3H-indole|para-cymene|C—H...F hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1190-1192 (2015)",CC BY +Crystal structure of Boc-(S)-ABOC-(S)-Ala-(S)-ABOC-(S)-Phe-OBn chloroform monosolvate,Emmanuel Wenger|Laure Moulat|Baptiste Legrand|Muriel Amblard|Monique Calmès|Claude Didierjean,10.1107/S2056989015016941,https://doaj.org/article/28af0f43531f4409b6019398fcbee0af,01/10/2015,EN,"crystal structure|α,β-hybrid peptide|(S)-1-aminobicyclo[2.2.2]octane-2-carboxylic acid|(S)-ABOC|(S)-Ala|(S)-Phe|Boc|OBn|11/9 helix|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1193-1195 (2015)",CC BY +"Crystal structure of bis(acetylacetonato-κ2O,O′)(tetrahydrofuran-κO)(trifluoromethanesulfonato-κO)iron(III)",Casseday P. Richers|Jeffery A. Bertke|Thomas B. Rauchfuss,10.1107/S2056989015016849,https://doaj.org/article/b62bf8f6a5cd438ab48a9a0770de46a4,01/10/2015,EN,crystal structure|iron(III)|acac|triflate|tetrahydrofuran|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1165-1168 (2015)",CC BY +"Comparison of the crystal structures of 4,4′-bis[3-(4-methylpiperidin-1-yl)prop-1-yn-1-yl]-1,1′-biphenyl and 4,4′-bis[3-(2,2,6,6-tetramethylpiperidin-1-yl)prop-1-yn-1-yl]-1,1′-biphenyl",Anqi Wan|Narsimha Reddy Penthala|E. Kim Fifer|Sean Parkin|Peter A. Crooks,10.1107/S2056989015015352,https://doaj.org/article/62abdeb5c0b54bfda480afd0c6ceb3a5,01/10/2015,EN,bis-tertiary ammonium analog|biphenyl ring|piperidine ring|crystal structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1132-1135 (2015)",CC BY +Crystal structure of 4-(methoxycarbonyl)phenylboronic acid,Keith J. Flanagan|Mathias O. Senge,10.1107/S2056989015015923,https://doaj.org/article/d0edfc4dfeeb46259e0d47a4a29767e8,01/10/2015,EN,crystal structure|boronic acid|methoxycarbonyl|ester|protecting groups|Suzuki coupling|hydrogen bonding|inversion dimers|π–π interactions.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1151-1154 (2015)",CC BY +Redetermination of the crystal structure of catena-poly[[[bis(ethylenediamine)platinum(II)]-μ-iodido-[bis(ethylenediamine)platinum(IV)]-μ-iodido] tetrakis(octane-1-sulfonate) dihydrate],Nobuyuki Matsushita,10.1107/S2056989015016801,https://doaj.org/article/5cb216f877ba4aefabd1c29bbd78deca,01/10/2015,EN,crystal structure|redetermination|MX-chain structure|PtII/PtIV mixed-valence|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1155-1158 (2015)",CC BY +"A monoclinic polymorph of 4-(2H-1,3-benzodioxol-5-yl)-1-(4-methylphenyl)-1H-pyrazol-5-amine",Mukesh M. Jotani|Nilesh N. Gajera|Mukesh C. Patel|Herman H. Y. Sung|Edward R. T. Tiekink,10.1107/S2056989015016023,https://doaj.org/article/403f7757b9564d268459e52209f0c7ab,01/10/2015,EN,crystal structure|amine|polymorph|conformation|Hirshfeld surface|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1121-1124 (2015)",CC BY +"Structure and spectroscopic properties of N,S-coordinating 2-methylsulfanyl-N-[(1H-pyrrol-2-yl)methylidene]aniline methanol monosolvate",D. Douglas Richards|M. Trisha C. Ang|Robert McDonald|Matthias Bierenstiel,10.1107/S205698901501590X,https://doaj.org/article/06bfd44854fd436eb727a9ea04e1d5b9,01/10/2015,EN,"crystal structure|imine|Schiff base|hydrogen bonding|N,S-ligand|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1136-1139 (2015)",CC BY +"Crystal structure of dimethyl 3,3′-[(4-fluorophenyl)methylene]bis(1H-indole-2-carboxylate)",Hong-Shun Sun|Yu-long Li|Hong Jiang|Ning Xu|Hong Xu,10.1107/S205698901501628X,https://doaj.org/article/feb7ebf704ad4967a7c6e3a6614d34bf,01/10/2015,EN,crystal structure|MRI contrast agent|indole|bis-indolymethane|N—H...O hydrogen bonds|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1140-1142 (2015)",CC BY +"Crystal structure of [μ2-1,1′-bis(diphenylphosphanyl)ferrocene-κ2P:P′]bis[(pyrrolidine-1-carbodithioato-κS)gold(I)]",Yee Seng Tan|Edward R. T. Tiekink,10.1107/S2056989015016382,https://doaj.org/article/90ac49a1537a4c6ca9f18693ffb411dd,01/10/2015,EN,crystal structure|gold(I)|phosphane|dithiocarbamate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1143-1146 (2015)",CC BY +"Comparison crystal structure conformations of two structurally related biphenyl analogues: 4,4′-bis[3-(pyrrolidin-1-yl)prop-1-yn-1-yl]-1,1′-biphenyl and 4,4′-bis{3-[(S)-2-methylpyrrolidin-1-yl]prop-1-yn-1-yl}-1,1′-biphenyl",Anqi Wan|Narsimha Reddy Penthala|E. Kim Fifer|Sean Parkin|Peter A. Crooks,10.1107/S2056989015016163,https://doaj.org/article/62fc45b7b88041c29fc48d9e819cf80b,01/10/2015,EN,crystal structure|bis-tertiary ammonium salt|biphenyl ring|pyrolidine ring|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1147-1150 (2015)",CC BY +"Crystal structures of 1-bromo-3,5-bis(4,4-dimethyl-1,3-oxazolin-2-yl)benzene 0.15-hydrate and 3,5-bis(4,4-dimethyl-1,3-oxazolin-2-yl)-1-iodobenzene",Timo Stein|Frank Hoffmann|Michael Fröba,10.1107/S2056989015016059,https://doaj.org/article/7fa02ad1b96c43e899fb78c34a7d949a,01/10/2015,EN,crystal structure|2-oxazolines|bromoaryl|iodoaryl|Phebox ligands|hydrogen bonding|parallel-displaced π–π interaction|N...I contacts|isostructural compounds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1125-1131 (2015)",CC BY +Crystal structures of two (±)-exo-N-isobornylacetamides,Dmitrijs Stepanovs|Daniels Posevins|Maris Turks,10.1107/S2056989015015984,https://doaj.org/article/76a81dbc5e384155baddbed0666304a0,01/10/2015,EN,crystal structure|Ritter reaction|(±)-exo-N-isobornylacetamides|polymorph|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 10, Pp 1117-1120 (2015)",CC BY +"Crystal structure of 1-{(E)-[(3,4-dichlorophenyl)imino]methyl}naphthalen-2-ol",Muhammad Nawaz Tahir|Muhammad Anwar-ul-Haq|Hazoor Ahmad Shad,10.1107/S2056989015015959,https://doaj.org/article/62476a3fab5143a9a7b7c0b75a0ad22e,01/09/2015,EN,crystal structure|naphthalen-2-ol|inversion dimers|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o696-o696 (2015)",CC BY +"A new polymorph of 1-({[1,3-dihydroxy-2-(hydroxymethyl)propan-2-yl]iminio}methyl)naphthalen-2-olate",Ailing Guo|Shurong Zhang|Kun Wang|Ruitao Zhu,10.1107/S205698901501539X,https://doaj.org/article/39414f0a1a6044de84b1fb8b9f2746ad,01/09/2015,EN,Schiff base|2-hydroxy-1-naphthaldehyde|O—H...O hydrogen bonding|N—H...O hydrogen bonding|crystal structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o686-o687 (2015)",CC BY +"Crystal structure of rac-(3aR,4S,5aR,6S,9R,10aS,10bR)-3a,5a,9-trimethyltetradecahydro-6,9-epoxycyclohepta[e]inden-4-ol monohydrate",Andreas Schäfer|Christopher Golz|Hans Preut|Carsten Strohmann|Martin Hiersemann,10.1107/S2056989015015698,https://doaj.org/article/ee553cd1c35846e4ac0d4f803aeef226,01/09/2015,EN,crystal structure|hydrate|hydrogen bonding|diterpenoid synthesis|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o690-o691 (2015)",CC BY +"Crystal structure of (2-{[3,5-bis(1,1-dimethylethyl)-4-hydroxyphenyl](5-methyl-2H-pyrrol-2-ylidene)methyl}-5-methyl-1H-pyrrolido-κ2N,N′)difluoridoboron",Yukio Morimoto|Keizo Ogawa|Yoshihiro Uto|Hideko Nagasawa|Hitoshi Hori,10.1107/S2056989015015789,https://doaj.org/article/5551cda0d12240ad909dce972cb5682c,01/09/2015,EN,crystal structure|boron tracedrug|boron neutron capture therapy (BNCT)|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o694-o695 (2015)",CC BY +Crystal structure of ammonium bis[(pyridin-2-yl)methyl]ammonium dichloride,Aaron Trischler|Kayode Oshin|Tomislav Pintauer,10.1107/S2056989015015753,https://doaj.org/article/64cf014ca83d4338b0e86d66e2a94946,01/09/2015,EN,crystal structure|protonated structure|hydrogen bonding|atom transfer radical addition (ATRA) reactions|chirality|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o692-o693 (2015)",CC BY +"Crystal structure of 10-benzyl-9-(3,4-dimethoxyphenyl)-3,3,6,6-tetramethyl-3,4,6,7,9,10-hexahydroacridine-1,8(2H,5H)-dione",N. Sureshbabu|V. Sughanya,10.1107/S2056989015014966,https://doaj.org/article/784648d5ec244e0f94db8462c7cdad8b,01/09/2015,EN,crystal structure|dimedone|benzylamine|acridinedione|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o688-o689 (2015)",CC BY +"Crystal structure of ethyl 4-(2-chlorophenyl)-2-methyl-4H-pyrimido[2,1-b][1,3]benzothiazole-3-carboxylate",Balbir Kumar|Manmeet Kour|Satya Paul|Rajni Kant|Vivek K. Gupta,10.1107/S2056989015014905,https://doaj.org/article/36bf445eed9146fa8c0122493e5542c6,01/09/2015,EN,"crystal structure|pyrimido[2,1-b][1,3]benzothiazole|ester|biological activity|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o669-o669 (2015)",CC BY +"Crystal structure of 1,3,5-trimethyl-2,4-dinitrobenzene",Ouarda Brihi|Noudjoud Hamdouni|Ali Boudjada|Jean Meinnel,10.1107/S2056989015014243,https://doaj.org/article/dc60c8e5765e484d9c98f4649eb1df0b,01/09/2015,EN,crystal structure|dinitrobenzene|weak C—H...O interaction|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o670-o671 (2015)",CC BY +Crystal structure of 3-chloro-N-(2-nitrophenyl)benzamide,Rodolfo Moreno-Fuquen|Alexis Azcárate|Alan R. Kennedy,10.1107/S2056989015014620,https://doaj.org/article/e81c101900ba4d91b14c4a8206ff203f,01/09/2015,EN,crystal structure|benzamide|hydrogen bonding|halogen–halogen interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o674-o674 (2015)",CC BY +Crystal structure of 2-methylsulfanyl-1-(thiomorpholin-4-yl)ethanone,Gihaeng Kang|Jineun Kim|Eunjin Kwon|Tae Ho Kim,10.1107/S2056989015015418,https://doaj.org/article/ffa4d0097990497095d793c07d2047d3,01/09/2015,EN,crystal structure|thiomorpholine|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o679-o679 (2015)",CC BY +Crystal structure of ethyl 2-(4-chlorophenyl)-3-cyclopentyl-4-oxo-1-propylimidazolidine-5-carboxylate,Mohamed Ali Tabarki|Youssef Ben Smida|Abderrahmen Guesmi|Rafâa Besbes,10.1107/S2056989015015364,https://doaj.org/article/de395474d2a14d82b1e890f9540a186f,01/09/2015,EN,crystal structure|synthesis|aziridine rearrangement|C—H...O and C—H...O interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o682-o683 (2015)",CC BY +"Crystal structure of 10-[(3-oxo-3H-benzo[f]chromen-1-yl)methyl]-2-trifluoromethyl-9a,10-dihydrobenz[4,5]imidazo[1,2-a]pyrimidin-4(5aH)-one",Chandra|Shamantha Kumar.|K. B. Puttaraju|K. Shivashankar|M. Mahendra,10.1107/S2056989015014425,https://doaj.org/article/24967025aec94cfdb7fe49f611f6d885,01/09/2015,EN,crystal structure|fused-ring system|chromene|benzimidazole|pyrimidinone|benzopyrimidine|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o672-o673 (2015)",CC BY +Crystal structure of methyl 2-(7-hydroxy-2-oxo-2H-chromen-4-yl)acetate,Sammer Yousuf|Shafqat Hussain|Khalid Mohammed Khan|Muhammad Shabeer|Shahnaz Perveen,10.1107/S2056989015014061,https://doaj.org/article/52112f98fc7e44d7a0b175073bd733fb,01/09/2015,EN,crystal structure|ester|coumarin|chromene|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o677-o678 (2015)",CC BY +Crystal structure of fenbuconazole,Gihaeng Kang|Jineun Kim|Hyunjin Park|Tae Ho Kim,10.1107/S205698901501542X,https://doaj.org/article/90988a785293428a9c57d6a151ec05a6,01/09/2015,EN,crystal structure|fungicide|fenbuconazole|C—Cl...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o680-o681 (2015)",CC BY +Crystal structure of (Z)-ethyl 3-[2-(5-methyl-7-nitro-1H-indole-2-carbonyl)hydrazinylidene]butanoate,Amal Errossafi|Abdellatif El Kihel|Salaheddine Guesmi|Mohamed Saadi|Lahcen El Ammari,10.1107/S2056989015015054,https://doaj.org/article/bf3ab9b3f7444bfabc5bad09cd35f82e,01/09/2015,EN,crystal structure|conformation|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o684-o685 (2015)",CC BY +"Crystal structure of 12-benzylsulfanyl-2,9-dibromo-6H-dibenzo[b,g][1,8]naphthyridin-11-one",Sebastian Resch|Thomas Quell|Dieter Schollmeyer|Siegfried R. Waldvogel,10.1107/S2056989015014541,https://doaj.org/article/749b760db81a4c05aba7388f0f660f41,01/09/2015,EN,"crystal structure|1,8-naphthyridine|heterotetracene|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o675-o676 (2015)",CC BY +Crystal structure of dimethomorph,Gihaeng Kang|Jineun Kim|Eunjin Kwon|Tae Ho Kim,10.1107/S2056989015014735,https://doaj.org/article/5698d178a29d4c36be1fb5034e75a54d,01/09/2015,EN,crystal structure|dimethomorph|prop-2-en-1-one|fungicide|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o654-o654 (2015)",CC BY +"Crystal structure of 5-benzoyl-2,4-diphenyl-4,5-dihydrofuran-3-carbonitrile",V. Rajni Swamy|R.V. Krishnakumar|S. Sivakumar|N. Srinivasan|R. Ranjith Kumar,10.1107/S2056989015014887,https://doaj.org/article/0f5808f82c2746e489ab9bea2e639d73,01/09/2015,EN,crystal structure|furan|carbonitrile|hydrogen bond|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o663-o664 (2015)",CC BY +"Crystal structure of [1,1′:3′,1′′-terphenyl]-2′,3,3′′-tricarboxylic acid",Daniel A. Decato|Orion B. Berryman,10.1107/S2056989015015029,https://doaj.org/article/3862535cd719460eb96a412d0b147f66,01/09/2015,EN,crystal structure|hydrogen bonding|meta-terphenyl|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o667-o668 (2015)",CC BY +Crystal structure of 3-amino-2-ethylquinazolin-4(3H)-one,Gamal A. El-Hiti|Keith Smith|Amany S. Hegazy|Mohammed Baashen|Benson M. Kariuki,10.1107/S2056989015014450,https://doaj.org/article/6a43bc0b521c4b80a954ad85bf7341ef,01/09/2015,EN,crystal structure|3-amino-2-ethylquinazolin-4(3H)-one|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o650-o651 (2015)",CC BY +Crystal structure of l-tryptophan–fumaric acid–water (1/1/1),M. Lydia Caroline|S. Kumaresan|P. G. Aravindan|M. Peer Mohamed|G. Mani,10.1107/S205698901501484X,https://doaj.org/article/60419025161b41b49c6c10ed924e2bec,01/09/2015,EN,crystal structure|L-tryptophan|fumaric acid|hydrogen bonding|three-dimensional structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o661-o662 (2015)",CC BY +"Crystal structure of 6,7-dichloro-4-oxo-4H-chromene-3-carbaldehyde",Yoshinobu Ishikawa,10.1107/S2056989015014644,https://doaj.org/article/939ef6081e1c4c3e8bc8f7477c25aea2,01/09/2015,EN,crystal structure|chromone|hydrogen bonding|halogen–halogen contact|stacking interaction|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o652-o653 (2015)",CC BY +Crystal structure of 2-aminopyridinium 6-chloronicotinate,N. Jeeva Jasmine|A. Rajam|P. Thomas Muthiah|N. Stanley|I. Abdul Razak|M. Mustaqim Rosli,10.1107/S2056989015014796,https://doaj.org/article/faccc32c77fe480dab502986a1eddb4c,01/09/2015,EN,crystal structure|2-aminopyridinium|6-chloronicotinate|6-chloropyridine-3-carboxylate|noncovalent interactions|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o655-o656 (2015)",CC BY +Crystal structure of 2-methoxy-2-[(4-methoxyphenyl)sulfanyl]-1-phenylethanone,Ignez Caracelli|Paulo R. Olivato|Henrique J. Traesel|Jéssica Valença|Daniel N. S. Rodrigues|Edward R. T. Tiekink,10.1107/S2056989015014565,https://doaj.org/article/ccb0ac3b471648cfbd5498b6dadb162e,01/09/2015,EN,crystal structure|C—H...O interactions|β-thiocarbonyl|conformation|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o657-o658 (2015)",CC BY +Redetermined crystal structure of N-(β-carboxyethyl)-α-isoleucine,M. Chandrarekha|N. Srinivasan|R. V. Krishnakumar,10.1107/S2056989015014498,https://doaj.org/article/e201597a204b457bb146cbcfda7e850b,01/09/2015,EN,crystal structure|amino acids|ionization state|hydrogen bonding|isoleucine|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o665-o666 (2015)",CC BY +"Crystal structure of 1-isopropyl-4,7-dimethyl-3-nitronaphthalene",Ahmed Benharref|Jamal Elkarroumi|Lahcen El Ammari|Mohamed Saadi|Moha Berraho,10.1107/S2056989015014395,https://doaj.org/article/0d0eae8219a64b47af4bc78a2ce1d6d8,01/09/2015,EN,crystal structure|essential oil of the Atlas cedar|nitro-naphthalene|C—H...O interaction|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o659-o660 (2015)",CC BY +Crystal structure of 2-phenylethanaminium 3-carboxyprop-2-enoate,N. Swarna Sowmya|S. Sampathkrishnan|R. Akilan|G. Chakkaravarthi|R. Mohan Kumar,10.1107/S2056989015014292,https://doaj.org/article/98ca56cfb7814e72ba10a20c68ca56fe,01/09/2015,EN,crystal structure|molecular salt|aminium|3-carboxyprop-2-enoate|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o641-o642 (2015)",CC BY +"Crystal structure of 4,5-dinitro-1H-imidazole",G. Kenneth Windler|Brian L. Scott|Neil C. Tomson|Philip W. Leonard,10.1107/S2056989015013432,https://doaj.org/article/6f98ba4756514d92947d60a2676fe859,01/09/2015,EN,"crystal structure|4,5-dinitro-1H-imidazole|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o634-o634 (2015)",CC BY +"Crystal structure of 4-(6-bromo-4-oxo-4H-chromen-3-yl)-2-methylamino-3-nitropyrano[3,2-c]chromen-5(4H)-one chloroform monosolvate",Rajamani Raja|Subramani Kandhasamy|Paramasivam T. Perumal|A. SubbiahPandi,10.1107/S2056989015014553,https://doaj.org/article/e56d8fe2f33745dea5a8077d97da3678,01/09/2015,EN,crystal structure|chromenone|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o648-o649 (2015)",CC BY +"Crystal structure of 2-methylamino-4-(6-methyl-4-oxo-4H-chromen-3-yl)-3-nitropyrano[3,2-c]chromen-5(4H)-one with an unknown solvate",Rajamani Raja|Subramani Kandhasamy|Paramasivam T. Perumal|A. SubbiahPandi,10.1107/S2056989015014413,https://doaj.org/article/51ddf666a41c4556806d8bae65583081,01/09/2015,EN,crystal structure|chromene|bischromene|N—H...O hydrogen bonding|C—H...O hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o645-o646 (2015)",CC BY +Crystal structure of 3-[4-(1H-imidazol-1-yl)phenyl]-2-(4-nitrophenyl)prop-2-enenitrile,Ting-ting Yu|Ming-Di Yang|Jing-jing Pi|Yu-Bin Zhang|Jian-Hua Yu,10.1107/S2056989015013730,https://doaj.org/article/f5ef9607d54541e9b8b77a3b1277c2e9,01/09/2015,EN,crystal structure|delocalised D—π—A electronic structure|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o635-o635 (2015)",CC BY +Crystal structure of 2-methyl-N-{[2-(pyridin-2-yl)ethyl]carbamothioyl}benzamide,Nadiah Ameram|Farook Adam,10.1107/S2056989015013559,https://doaj.org/article/d9bc14ed7b4e43cba075dca4a64d57e6,01/09/2015,EN,crystal structure|benzamide|carbonyl thiourea|inversion dimers|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o636-o636 (2015)",CC BY +"Crystal structure of N-(2-{[2,6-bis(2,2,2-trifluoroacetamido)phenyl]disulfanyl}-3-(2,2,2-trifluoroacetamido)phenyl)-2,2,2-trifluoroacetamide",Dennis Awasabisah|Douglas R. Powell|George B. Richter-Addo,10.1107/S2056989015014231,https://doaj.org/article/a6a0673520014d32b11f8b672a413521,01/09/2015,EN,crystal structure|diaryl disulfide|S—S bonds|N—H...S interactions|N—H...F interactions|C—H...O interactions.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o639-o640 (2015)",CC BY +"Crystal structure of 2,5-dimethylanilinium salicylate",A. Mani|P. Praveen Kumar|G. Chakkaravarthi,10.1107/S2056989015014401,https://doaj.org/article/050a34cf5dee440192f873999ef472e6,01/09/2015,EN,crystal structure|hydrogen bonding|aromatic π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o643-o644 (2015)",CC BY +"Crystal structure of 2,2′-bis[(2-chlorobenzyl)oxy]-1,1′-binaphthalene",Rajamani Raja|Mani Jayanthi|Perumal Rajakumar|A. SubbiahPandi,10.1107/S2056989015014322,https://doaj.org/article/71a8c23adabc44e388e18be490cfa7a2,01/09/2015,EN,crystal structure|binaphthyl|antimicrobials|antibiotic properties|minimum toxicity|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o637-o638 (2015)",CC BY +Crystal structure of S-(4-methylbenzyl) piperidinedithiocarbamate,Z. A. Rahima|Siti Nadiah Abdul Halim|Fiona N.-F. How,10.1107/S2056989015014462,https://doaj.org/article/f13416af4d7b4f4d9357d0e386f7a575,01/09/2015,EN,crystal structure|dithiocarbamate|substituted dithiocarbamate|piperidine dithiocarbamate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o647-o647 (2015)",CC BY +"Crystal structure of (piperidine-1-carbodithioato-κ2S,S)[2-(pyridin-2-yl)phenyl-κ2C1,N]palladium(II)",Mikhail Kondrashov|André Fleckhaus|Roman Gritcenko|Ola F. Wendt,10.1107/S2056989015015005,https://doaj.org/article/642cf9f125384b8787c83deb78b23487,01/09/2015,EN,crystal structure|palladium|phenylpyridine|dithiocarbamate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp m166-m166 (2015)",CC BY +"Crystal structure of di-μ-chlorido-bis(chlorido{N1-phenyl-N4-[(pyridin-2-yl-κN)methylidene]benzene-1,4-diamine-κN4}mercury(II))",Md. Serajul Haque Faizi|Elena V. Prisyazhnaya,10.1107/S2056989015015790,https://doaj.org/article/6f72bb534ec34ace89f3248506acce22,01/09/2015,EN,crystal structure|mercury(II)|Schiff base|bidentate ligand|inversion symmetry|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp m175-m176 (2015)",CC BY +"Crystal structure of 2-azido-1H-imidazole-4,5-dicarbonitrile",G. Kenneth Windler|Brian L. Scott|Neil C. Tomson|Philip W. Leonard,10.1107/S2056989015013444,https://doaj.org/article/b0fd6294cb6f4723b50bbeadb256ffca,01/09/2015,EN,"crystal structure|2-azido-4,5-dicyano-1H-imidazole|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp o633-o633 (2015)",CC BY +"Crystal structure of catena-poly[bis(formato-κO)bis[μ2-1,1′-(1,4-phenylene)bis(1H-imidazole)-κ2N3:N3′]cobalt(II)]",Guo-Wang Xu|Ye-Nan Wang|Hong-Xu Xia|Zhong-Long Wang,10.1107/S2056989015014255,https://doaj.org/article/ca0ac129c6f4437dbdf17c2facad48ab,01/09/2015,EN,"crystal structure|Co complex|1,4-bis(1-imidazolyl)benzene|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp m156-m157 (2015)",CC BY +"Crystal structure of (2-amino-7-methyl-4-oxidopteridine-6-carboxylato-κ3O4,N5,O6)aqua(1,10-phenanthroline-κ2N,N′)zinc trihydrate",Siddhartha S. Baisya|Baidyanath Ghosh|Parag S. Roy,10.1107/S2056989015014619,https://doaj.org/article/a2ffbfadcac245769c846c26804ff0f7,01/09/2015,EN,crystal structure|phenanthroline|zinc complex|hydrogen bonding|pteridine|π–π stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp m162-m163 (2015)",CC BY +"Crystal structure of poly[[hexaqua-1κ4O,2κ2O-bis(μ3-pyridine-2,4-dicarboxylato-1κO2:2κ2N,O2′;1′κO4)cobalt(II)strontium(II)] dihydrate]",Zhaojun Yu|Peng Jiang|Yanmei Chen,10.1107/S2056989015014942,https://doaj.org/article/203866052fe74ff4a64ca8098472d523,01/09/2015,EN,"crystal structure|heterometallic complex|pyridine-2,4-dicarboxylic acid heterometallic complex|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp m167-m168 (2015)",CC BY +"Crystal structure of bis[2-(benzothiazol-2-yl)phenolato-κ2N,O]copper(II)",Namhun Kim|Sung Kwon Kang,10.1107/S2056989015015303,https://doaj.org/article/e8eeab1bb0e54c0c9c51f8377fb78127,01/09/2015,EN,crystal structure|Cu(II) complex|benzothiazolphenol|hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp m173-m174 (2015)",CC BY +"Crystal structure of [N,N′-bis(4-methylphenyl)-1,2-diphenylethane-1,2-diimine-κ2N,N′]dichloridopalladium(II) methanol monosolvate",Alfredo Peñaloza|Frank R. Fronczek|Ralph Isovitsch,10.1107/S2056989015014851,https://doaj.org/article/896c8fc6b4224dbbb67f1ddff12f9823,01/09/2015,EN,crystal structure|palladium(II) dichlorido diimine complex|polymerization catalyst|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp m164-m165 (2015)",CC BY +"Crystal structure of cis,fac-{N,N-bis[(pyridin-2-yl)methyl]methylamine-κ3N,N′,N′′}dichlorido(dimethyl sulfoxide-κS)ruthenium(II)",Kasey Trotter|Navamoney Arulsamy|Elliott Hulley,10.1107/S2056989015014875,https://doaj.org/article/d20cec1d20534966acf28a0d5af85de0,01/09/2015,EN,crystal structure|ruthenium(II) complex|S-bound dimethyl sulfoxide|distorted octahedral coordination geometry|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp m169-m170 (2015)",CC BY +Crystal structure of octa-μ3-selenido-(p-toluenesulfonato-κO)pentakis(triethylphosphane-κP)-octahedro-hexarhenium(III) p-toluenesulfonate dichloromethane disolvate,Julia A. Edwards|Robert McDonald|Lisa F. Szczepura,10.1107/S2056989015014334,https://doaj.org/article/2d4ff884b1c344c29f5f786d22392a29,01/09/2015,EN,crystal structure|rhenium complex|[Re6(μ3-Se)8]2+ cluster core|tosylate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp m158-m159 (2015)",CC BY +"Crystal structure of dibromidobis(1,3-dibenzyl-1,3-diazinan-2-one-κO)cobalt(II)",Eduard Rais|Ulrich Flörke|René Wilhelm,10.1107/S2056989015014577,https://doaj.org/article/a07f11ed108443a392ce2298b1d5d21c,01/09/2015,EN,crystal structure|coordination compound|cobalt pyrimidinone complex|C—H...Br interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp m160-m161 (2015)",CC BY +"Crystal structure of bis(μ2-tetrabromophthalato-κ2O1:O2)bis[aqua(N,N,N′,N′-tetramethylethane-1,2-diamine-κ2N,N′)copper(II)]",Luis Manuel Tobón-Trujillo|Luis Felipe Villanueva-Sánchez|Diego Martínez-Otero|Alejandro Dorazco-González,10.1107/S2056989015015194,https://doaj.org/article/3a14d86c270a47a0ba26a39421d14774,01/09/2015,EN,"crystal structure|copper(II) complex|tetramethylethane-1,2-diamine|tetrabromophthalate anion|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp m171-m172 (2015)",CC BY +Crystal structure of (μ-N-allylthiourea-κ2S:S)bis[μ-bis(diphenylphosphanyl)methane-κ2P:P′]bis[bromidocopper(I)] acetonitrile disolvate,Mareeya Hemman|Chaveng Pakawatchai|Jaursup Boonmak|Sujittra Youngme|Saowanit Saithong,10.1107/S2056989015015637,https://doaj.org/article/a87fe5e61a714e4aa8873b4fa33f7d78,01/09/2015,EN,crystal structure|copper(I) complex|diphenylphosphinomethane|N′-allylthiourea|hydrogen bonding|C—H...π interactions|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1081-1084 (2015)",CC BY +The crystal structures of six (2E)-3-aryl-1-(5-halogenothiophen-2-yl)prop-2-en-1-ones,Vasant S. Naik|Hemmige S. Yathirajan|Jerry P. Jasinski|Victoria A. Smolenski|Christopher Glidewell,10.1107/S2056989015015534,https://doaj.org/article/7aa286a2dc394a359b7dca6bfe7a9272,01/09/2015,EN,crystal structure|chalcones|halogenothiophens|hydrogen bonding|halogen...halogen interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1093-1099 (2015)",CC BY +"Crystal structure of 2,4-dinitrophenyl 4-methylbenzenesulfonate: a new polymorph",Tyler A. Cooley|Sean Riley|Shannon M. Biros|Richard J. Staples|Felix N. Ngassa,10.1107/S2056989015015650,https://doaj.org/article/9d08f3f5af00454faa0abf4b5e9ea8de,01/09/2015,EN,crystal structure|aryl sulfonate|π–π interactions|C—H...O interactions|p-toluenesulfonyl chloride|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1085-1088 (2015)",CC BY +Crystal structure of post-perovskite-type CaIrO3 reinvestigated: new insights into atomic thermal vibration behaviors,Akihiko Nakatsuka|Kazumasa Sugiyama|Akira Yoneda|Keiko Fujiwara|Akira Yoshiasa,10.1107/S2056989015015649,https://doaj.org/article/a8827121ec7842218f2468acce5019bc,01/09/2015,EN,crystal structure|redetermination|calcium iridium(IV) trioxide|post-perovskite|thermal vibration|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1109-1113 (2015)",CC BY +Crystal structure of bis(3-bromomesityl)(quinolin-1-ium-8-yl)boron(III) tribromide,Jungho Son|Sem Raj Tamang|James D. Hoefelmeyer,10.1107/S2056989015015467,https://doaj.org/article/a02f37a8a434410abe2bbb4e59e6a8ae,01/09/2015,EN,crystal structure|frustrated Lewis pair|halogen|heterolysis|electrophilic aromatic substitution|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1114-1116 (2015)",CC BY +"Crystal structure of bis[μ-1,2-bis(diphenylphosphanyl)ethane-κ2P:P′]bis[(N,N′-diethylthiourea-κS)iodidocopper(I)]",Ladawan Khongsichan|Arunpatcha Nimthong-Roldán|Chaveng Pakawatchai|Sumpun Wongnawa,10.1107/S2056989015014176,https://doaj.org/article/887fa78056c8402886ce47306866298b,01/09/2015,EN,"crystal structure|copper(I) complex|N,N′-diethylthiourea|N—H...I hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp m154-m155 (2015)",CC BY +"Crystal structure of 1-[(2,3-dihydro-1H-naphtho[1,2-e][1,3]oxazin-2-yl)methyl]naphthalen-2-ol: a possible candidate for new polynaphthoxazine materials",Augusto Rivera|Jicli José Rojas|Jaime Ríos-Motta|Michael Bolte,10.1107/S2056989015015583,https://doaj.org/article/6adce1352b2c4e968d6d5654c65f8be1,01/09/2015,EN,crystal structure|polynaphthoxazine materials|oxazine|intramolecular hydrogen bond|C—H...π interactions|π–π interaction|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1089-1092 (2015)",CC BY +"Crystal structure of an unknown solvate of {2,2′-[ethane-1,2-diylbis(nitrilomethanylylidene)]diphenolato-κ4O,N,N′,O′}(N-ferrocenylisonicotinamide-κN1)cobalt(II): a CoII–salen complex that forms hydrogen-bonded dimers",Bryan Brautigam|Chelsea Herholdt|William Farnsworth|Ellen Brudi|Eric McDonald|Guang Wu|Stephen Contakes,10.1107/S2056989015014723,https://doaj.org/article/979a3f2758154c9b8639d13deebd95f7,01/09/2015,EN,crystal structure|salen complex|pyridine ligand|ferrocene|bimetallic|hydrogen-bonded dimer|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1100-1104 (2015)",CC BY +"Crystal structure of hexaaquanickel(II) bis{2-[(5,6-dihydroxy-3-sulfonatoquinolin-1-ium-7-yl)oxy]acetate} dihydrate",Hai Le Thi Hong|Vinh Nguyen Thi Ngoc|Da Tran Thi|Ngan Nguyen Bich|Luc Van Meervelt,10.1107/S2056989015015662,https://doaj.org/article/020e89059e054098be7a29b55a6c0fb3,01/09/2015,EN,crystal structure|quinoline|hydrogen bonding|π–π stacking|zwitterion|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1105-1108 (2015)",CC BY +"Crystal structure of aqua-1κO-{μ-2-[(2-hydroxyethyl)methylamino]ethanolato-2:1κ4O1,N,O2:O1}[μ-2,2′-(methylimino)diethanolato-1:2κ4O,N,O′:O]dithiocyanato-1κN,2κN-chromium(III)copper(II)",Julia A. Rusanova|Valentina V. Semenaka|Viktoriya V. Dyakonenko|Oleg V. Shishkin,10.1107/S2056989015015601,https://doaj.org/article/17579058dbd544c0a3b5b546485a08a7,01/09/2015,EN,crystal structure|N-methyldiethanolamine|heterometal CuII/CrIII complex|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1077-1080 (2015)",CC BY +"Crystal structures of three N-aryl-2,2,2-tribromoacetamides",S. Sreenivasa|S. Naveen|N. K. Lokanath|G. M. Supriya|H. N. Lakshmikantha|P. A. Suchetan,10.1107/S2056989015015248,https://doaj.org/article/51150271bd6e43a6a4b9e3bcfe5a655f,01/09/2015,EN,crystal structures|bromine...bromine contact|bromine...fluorine contact|N-aryl-tribromoacetamides|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1048-1053 (2015)",CC BY +"Crystal structure of dichloridobis(N,N′-dimethylthiourea-κS)mercury(II)",Muhammad Ashraf Shaheen|Aisha Munawar|Haseeba Sadaf|Muhammad Nawaz Tahir|Anvarhusein A. Isab|Saeed Ahmad,10.1107/S2056989015015406,https://doaj.org/article/03cc15e08dcc4189b2c5df4a64735406,01/09/2015,EN,crystal structure|mercury|dimethylthiourea|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1061-1063 (2015)",CC BY +"Crystal structure of cis-aquachlorido(rac-5,5,7,12,12,14-hexamethyl-1,4,8,11-tetraazacyclotetradecane-κ4N)chromium(III) tetrachloridozincate trihydrate from synchrotron data",Dohyun Moon|Jong-Ha Choi,10.1107/S2056989015015212,https://doaj.org/article/2c287848f3ac4b37b164fc1d1bda33a6,01/09/2015,EN,crystal structure|synchrotron radiation|macrocyclic chromium(III) complex|chlorido ligand|aqua ligand|cis-geometry|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1054-1057 (2015)",CC BY +"Crystal structure of trans-bis{4-bromo-N-[(pyridin-2-yl)methylidene]aniline-κ2N,N′}dichloridoruthenium(II)",Kittipong Chainok|Filip Kielar,10.1107/S205698901501556X,https://doaj.org/article/f295af12c0f5402e91bb3d76ad19c570,01/09/2015,EN,crystal structure|Schiff base ligand|π–π stacking|ruthenium(II)|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1067-1069 (2015)",CC BY +Crystal structure of bis(2-methyl-1H-imidazol-3-ium) tetrachloridocobaltate(II),Mouhamadou Birame Diop|Libasse Diop|Thierry Maris,10.1107/S2056989015014127,https://doaj.org/article/6b69615548df4b6a81f1cf1972ff93c6,01/09/2015,EN,crystal structure|cobalt complex|hydrogen bonds|organic–inorganic hybrid compound|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1064-1066 (2015)",CC BY +Crystal structure of chlorido(2-{[2-(phenylcarbamothioyl)hydrazin-1-ylidene](pyridin-2-yl)methyl}pyridin-1-ium)gold(I) chloride sesquihydrate,Claudia C. Gatto|Iariane J. Lima,10.1107/S2056989015015480,https://doaj.org/article/20bab31d50b244bba423573cd4378aee,01/09/2015,EN,crystal structure|gold(I) complex|thiosemicarbazone|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1070-1072 (2015)",CC BY +"Crystal structure of dichlorido(4,11-dimethyl-1,4,8,11-tetraazabicyclo[6.6.2]hexadecane)iron(III) hexafluoridophosphate",Neil L. Funwie|Amy N. Cain|Brian Z. Fanning|Serena A. Hageman|Malorie Mullens|Travis K. Roberts|Daniel J. Turner|Cammi N. Valdez|Robert W. Vaughan|Henok G. Ermias|Jon D. Silversides|Stephen J. Archibald|Timothy J. Hubin|Timothy J. Prior,10.1107/S2056989015015340,https://doaj.org/article/c13a266c2ec1433492ae79774d9dfca3,01/09/2015,EN,crystal structure|macrocycle|cross bridge|iron|cylam|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1073-1076 (2015)",CC BY +Crystal structure of bis[2-(1H-benzimidazol-2-yl)aniline]silver(I) nitrate,Yongtae Kim|Sung Kwon Kang,10.1107/S2056989015015315,https://doaj.org/article/22c734f590de40369552edb9957b0df1,01/09/2015,EN,crystal structure|silver(I) complex|distorted square-planar geometry|benzimidazole|N—H...O hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1058-1060 (2015)",CC BY +"Crystal structure of 4-(3,4-dicyanophenoxy)-N-[3-(dimethylamino)propyl]benzamide monohydrate: a phenoxyphthalonitrile derivative",Senem Çolak|Salih Zeki Yıldız|Nagihan Çaylak Delibaş|Hasan Pişkin|Tuncer Hökelek,10.1107/S2056989015014991,https://doaj.org/article/6d092afb202842c9bfc99f93f180542c,01/09/2015,EN,crystal structure|amido amine derivatives|phthalonitrile derivatives|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1042-1044 (2015)",CC BY +"Crystal structure of 3,5-dimethylphenyl 2-nitrobenzenesulfonate",Tsvetelina P. Atanasova|Sean Riley|Shannon M. Biros|Richard J. Staples|Felix N. Ngassa,10.1107/S2056989015015078,https://doaj.org/article/8093b3fa52ed474b81aa9fd67fe5512e,01/09/2015,EN,crystal structure|nitrobenzenesulfonate|N(nitro)...O interactions|C—H...O interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1045-1047 (2015)",CC BY +"Crystal structures of three indole derivatives: 3-ethnyl-2-methyl-1-phenylsulfonyl-1H-indole, 4-phenylsulfonyl-3H,4H-cyclopenta[b]indol-1(2H)-one and 1-{2-[(E)-2-(5-chloro-2-nitrophenyl)ethenyl]-1-phenylsulfonyl-1H-indol-3-yl}ethan-1-one chloroform monosolvate",S. Gopinath|K. Sethusankar|Bose Muthu Ramalingam|Arasambattu K. Mohanakrishnan,10.1107/S2056989015014917,https://doaj.org/article/e31ff855b6ff4844977345e499efb5bf,01/09/2015,EN,crystal structure|phenylsulfonyl|indole derivatives|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1036-1041 (2015)",CC BY +"Crystal structure of 6,6,12,12-tetrachlorotricyclo[8.2.0.04,7]dodecane-5,11-dione",Esra Turan Akın|Tuncer Hökelek,10.1107/S2056989015014383,https://doaj.org/article/03a061cc2f374f0898f93448027679d8,01/09/2015,EN,crystal structure|cyclooctadiene|fused ring system|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1000-1002 (2015)",CC BY +Crystal structure of potassium sodium heptahydrogen hexamolybdocobaltate(III) octahydrate: an extra-protonated B-series Anderson-type heteropolyoxidometalate,Ki-Min Park|Hea-Chung Joo|Uk Lee,10.1107/S2056989015014784,https://doaj.org/article/a81197e81f9b4a5580ae670ede402442,01/09/2015,EN,crystal structure|novel protonated B series Anderson-type polyanion|hexamolybdocobaltate(III)|noncentrosymmetric strong hydrogen bond|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1032-1035 (2015)",CC BY +"Crystal structure of 1,1′-{(pentane-1,5-diyl)bis[(azaniumylylidene)methanylylidene]}bis(naphthalen-2-olate)",Kamel Ouari|Moufida Merzougui|Lydia Karmazin,10.1107/S2056989015014437,https://doaj.org/article/a45a11211b634dc0bd618f502b96b0dc,01/09/2015,EN,"crystal structure|1,5-diaminopentane|2-hydroxy-1-naphthaldehyde|zwitterion|bis-zwitterion|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1010-1012 (2015)",CC BY +"Crystal structure and absolute configuration of (3aS,4S,5R,7aR)-2,2,7-trimethyl-3a,4,5,7a-tetrahydro-1,3-benzodioxole-4,5-diol",Mario A. Macías|Leopoldo Suescun|Enrique Pandolfi|Valeria Schapiro|Gaurao D. Tibhe|Álvaro W. Mombrú,10.1107/S2056989015014590,https://doaj.org/article/4ce162d4c2904984b3a11e6531da5568,01/09/2015,EN,crystal structure|epoxycyclohexenones|absolute configuration|chiral crystal|chemoenzymatic strategy|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1013-1016 (2015)",CC BY +Crystal structure of bis[(phenylmethanamine-κN)(phthalocyaninato-κ4N)zinc] phenylmethanamine trisolvate,Norzianah Shamsudin|Ai Ling Tan|Franz L. Wimmer|David J. Young|Edward R. T. Tiekink,10.1107/S2056989015014280,https://doaj.org/article/c32d3ebdf5ef44269dd490cf3c063b7d,01/09/2015,EN,crystal structure|zinc phthalocyaninato complex|co-crystal|hydrogen bonding|conformation|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1026-1031 (2015)",CC BY +Crystal structure of a mononuclear RuII complex with a back-to-back terpyridine ligand: [RuCl(bpy)(tpy–tpy)]+,Francisca N. Rein|Weizhong Chen|Brian L. Scott|Reginaldo C. Rocha,10.1107/S2056989015014632,https://doaj.org/article/8b613b8c906e474fa27b0549405eaf43,01/09/2015,EN,crystal structure|π–π stacking|terpyridine|ruthenium catalysts|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1017-1021 (2015)",CC BY +"Crystal structure of poly[bis(μ-2-amino-4,5-dicyanoimidazolato-κ2N1:N3)-trans-bis(N,N′-dimethylformamide-κO)cadmium]",Jin-Li Zhu|Guo -Qing Jiang|Xiao-Qing Guo|Yan-Feng Tang|Miao Wang,10.1107/S2056989015014516,https://doaj.org/article/7c2a70a1bc674af6aa397034480e10de,01/09/2015,EN,"crystal structure|2-amino-4,5-dicyanoimidazole|metal–organic framework|cadmium coordination polymer|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1022-1025 (2015)",CC BY +"The crystal structures of three 3-methyl-1H-1,2,4-triazole-5-thiones, including a second polymorph of 4-[(E)-(5-bromo-2-hydroxybenzylidene)amino]-3-methyl-1H-1,2,4-triazole-5(4H)-thione and a redetermination of 4-amino-3-methyl-1H-1,2,4-triazole-5(4H)-thione",Padmanabha S. Manjula|Balladka K. Sarojini|Hemmige S. Yathirajan|Mehmet Akkurt|Cem Cüneyt Ersanlı|Christopher Glidewell,10.1107/S205698901501422X,https://doaj.org/article/8d1b5ace6e864e99ad3566ae84b0ba65,01/09/2015,EN,"crystal structures|1H-1,2,4-triazole-5-thiones|polymorphism|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 9, Pp 1003-1009 (2015)",CC BY +Crystal structure of natural phaeosphaeride A,Victoria V. Abzianidze|Ekaterina V. Poluektova|Ksenia P. Bolshakova|Taras L. Panikorovskii|Alexander S. Bogachenkov|Alexander O. Berestetskiy,10.1107/S205698901501395X,https://doaj.org/article/3482fe9ffb2d48d1b71b9e38db5bf383,01/08/2015,EN,crystal structure|natural phaeosphaeride A|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o625-o626 (2015)",CC BY +"Crystal structure of methyl 7-phenyl-6a,7,7a,8,9,10-hexahydro-6H,11aH-thiochromeno[3,4-b]pyrrolizine-6a-carboxylate",M. P. Savithri|M. Suresh|R. Raghunathan|R. Raja|A. SubbiahPandi,10.1107/S2056989015014024,https://doaj.org/article/ca46d45ff601416d8658cad45c802705,01/08/2015,EN,crystal structure|thiochromane|pyrrolizine|thiopyran|pyrrolidine|inversion dimers|C—H...O hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o627-o628 (2015)",CC BY +Crystal structure of cyclosulfamuron,Gihaeng Kang|Jineun Kim|Eunjin Kwon|Tae Ho Kim,10.1107/S2056989015014115,https://doaj.org/article/dfaf4cf2b66e47bb92aae4e9e061f8f8,01/08/2015,EN,crystal structure|hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o631-o632 (2015)",CC BY +"Crystal structure of 4,4′-dimethoxy-2,2′-bipyridine",Yukiko Kusano|Keiji Ohno|Takashi Fujihara,10.1107/S2056989015013985,https://doaj.org/article/75cbdc559f0b4cf29b045e04f01e95b4,01/08/2015,EN,crystal structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o623-o624 (2015)",CC BY +Crystal structure of 3-bromoacetyl-6-chloro-2H-1-benzopyran-2-one,Ramanaiah Chennuru|Balaji Maddimsetti|Suman Gundlapalli|R. Ravi Chandra Babu|Sudarshan Mahapatra,10.1107/S2056989015012955,https://doaj.org/article/d12a8852d80c4d6ca0291cc1beed3d00,01/08/2015,EN,crystal structure|coumarin|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o615-o616 (2015)",CC BY +"Crystal structure of ethyl 2-amino-4-(4-chlorophenyl)-4H-1-benzothieno[3,2-b]pyran-3-carboxylate",Mohamed Bakhouch|Asmae Mahfoud|Mohamed El Yazidi|Mohamed Saadi|Lahcen El Ammari,10.1107/S2056989015014085,https://doaj.org/article/c1ddaf1b1e9e482aac5bb3c3cf0591ed,01/08/2015,EN,crystal structure|thioaurones|thiophenones|benzothienopyran|N—H...O hydrogen bonds|inversion dimers|Cl...O short contact.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o619-o620 (2015)",CC BY +Crystal structure of trans-1-{2-[4-(dimethylamino)phenyl]ethyl}-4-[2-(pyren-1-yl)ethyl]cyclohexane,Sreevidya Thekku Veedu|Simone Techert,10.1107/S2056989015013729,https://doaj.org/article/504271faef904eb299dc9378c7e01564,01/08/2015,EN,crystal structure|pyrene|donor acceptor|electron transfer|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o629-o630 (2015)",CC BY +Crystal structure of 5-chloro-2-(2-fluorophenyl)-3-methylsulfinyl-1-benzofuran,Hong Dae Choi|Uk Lee,10.1107/S2056989015013948,https://doaj.org/article/912cb1b6a3b44d31ae96afbe19c4f212,01/08/2015,EN,crystal structure|benzofuran|2-fluorophenyl|C—H...O hydrogen bonds|F...π and S...F contacts|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o621-o622 (2015)",CC BY +Crystal structure of 2-cyano-N-(furan-2-ylmethyl)acetamide. Corrigendum,Shivanna Subhadramma|Budanur Papaiah Siddaraju|Chandra Naveen|Janardhanan Saravanan|Dasararaju Gayathri,10.1107/S2056989015013742,https://doaj.org/article/64a0ef10157b430d81f59082b7530345,01/08/2015,EN,Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp e3-e3 (2015)",CC BY +"Crystal structure of 7,8-benzocoumarin-4-acetic acid",R. Ranga Swamy|Ramakrishna Gowda|K. V. Arjuna Gowda|Mahantesha Basanagouda,10.1107/S2056989015014103,https://doaj.org/article/81b1ee86e34b4c669166649193fc4d64,01/08/2015,EN,crystal structure|coumarin|acetic acid|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o617-o618 (2015)",CC BY +"Crystal structure of 5-bromo-2,4,6-trimethyl-3-[(2-methylphenyl)sulfinyl]-1-benzofuran",Hong Dae Choi|Uk Lee,10.1107/S2056989015013687,https://doaj.org/article/d8592c4b46ef4a52adc4ff862ab0e478,01/08/2015,EN,crystal structure|benzofuran|π–π interactions|C—H...π interactions|C—H...O hydrogen bonds|Br...Br contacts|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o602-o603 (2015)",CC BY +"Crystal structure of (E)-1-(1-hydroxynaphthalen-2-yl)-3-(2,3,4-trimethoxyphenyl)prop-2-en-1-one",J. Srividya|D. Reuben Jonathan|B. K. Revathi|G. Anbalagan,10.1107/S2056989015013870,https://doaj.org/article/f09f5d099b2e437bbed9edce6f41ae11,01/08/2015,EN,crystal structure|chalcones|hydroxynaphthalene|O—H...O hydrogen bond|S(6) ring motif|π–π slipped parallel interaction|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o610-o611 (2015)",CC BY +Crystal structure of cafenstrole,Gihaeng Kang|Jineun Kim|Hyunjin Park|Tae Ho Kim,10.1107/S2056989015013869,https://doaj.org/article/070a0f64de3a44aa856452836b25abe0,01/08/2015,EN,"crystal structure|cafenstrole|triazole|herbicide,|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o614-o614 (2015)",CC BY +"Crystal structure of rac-(3aR*,9aS*)-4,4,4-trichloro-1,2,3,3a,4,9a-hexahydro-4λ5,9λ4-cyclopenta[4,5][1,3]tellurazolo[3,2-a]pyridine",Rizvan K. Askerov|Julia M. Lukiyanova|Zhanna V. Matsulevich|Alexander V. Borisov|Victor N. Khrustalev,10.1107/S2056989015012311,https://doaj.org/article/4fbd8f85427943deae6366eb3f85c1e5,01/08/2015,EN,crystal structure|arenetellurium trihalide|Te...Cl interactions|C—H...Cl hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o598-o599 (2015)",CC BY +"Crystal structure of 13-(2-methoxyphenyl)-3,4-dihydro-2H-indazolo[1,2-b]phthalazine-1,6,11(13H)-trione",Abdelmalek Bouraiou|Sofiane Bouacida|Hocine Merazig|Aissa Chibani|Zouhair Bouaziz,10.1107/S2056989015013894,https://doaj.org/article/52d2dfce6a26441687466c81e83b2d55,01/08/2015,EN,crystal structure|phthalazine|indazole|C—H...O hydrogen bonds|C—H...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o604-o605 (2015)",CC BY +Crystal structure of (7-methyl-2-oxo-2H-chromen-4-yl)methyl piperidine-1-carbodithioate,K. R. Roopashree|T. G. Meenakshi|K. Mahesh Kumar|O. Kotresh|H. C. Devarajegowda,10.1107/S2056989015013699,https://doaj.org/article/c6e1acc870e6424ea0698146d0a960d7,01/08/2015,EN,crystal structure|2H-chromene|hydrogen bonding|C—H...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o606-o607 (2015)",CC BY +"Crystal structure of 1-(2,4-dihydroxy-6-methylphenyl)ethanone",Samran Prabpai|Palangpon Kongsaeree,10.1107/S2056989015013468,https://doaj.org/article/5f9826ed38e2473bb78d6da2458436b4,01/08/2015,EN,"crystal structure|1-(2,4-dihydroxy-6-methylphenyl)ethanone|bioactive secondary metabolite|hydrogen bonding|π–π stacking|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o612-o613 (2015)",CC BY +"Crystal structure of methyl 3-(3-fluorophenyl)-1-methyl-1,3a,4,9b-tetrahydro-3H-thiochromeno[4,3-c]isoxazole-3a-carboxylate",M. P. Savithri|M. Suresh|R. Raghunathan|G. Vimala|A. SubbiahPandi,10.1107/S2056989015013651,https://doaj.org/article/f129fa06d0694930b6829e779782f3de,01/08/2015,EN,crystal structure|oxazolidine|thiopyran|thiochromenone|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o600-o601 (2015)",CC BY +"Crystal structure of 4,6-diamino-2,2-dimethyl-3-[3-(2,4,5-trichlorophenoxy)propoxy]-2,3-dihydro-1,3,5-triazin-1-ium chloride methanol monosolvate",Pattarapol Khongsuk|Samran Prabpai|Palangpon Kongsaeree,10.1107/S205698901501378X,https://doaj.org/article/08b2b6122b8d432aabf9633bfe05bd58,01/08/2015,EN,crystal structure|triazine|antifolate drug|antimalarial|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o608-o609 (2015)",CC BY +Crystal structure of 4-oxo-4H-chromene-3-carboxylic acid,Yoshinobu Ishikawa,10.1107/S2056989015013456,https://doaj.org/article/688e92dd9dbc4306bd3861cbaed8b67f,01/08/2015,EN,crystal structure|chromone|hydrogen bonding|stacking interaction|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o580-o581 (2015)",CC BY +Crystal structure of 1-benzyl-2-hydroxy-5-oxopyrrolidin-3-yl acetate,Ignez Caracelli|Julio Zukerman-Schpector|Hélio A. Stefani|Bakhat Ali|Edward R. T. Tiekink,10.1107/S2056989015013353,https://doaj.org/article/57af36f8d06a4a188f33a64fd8a09601,01/08/2015,EN,crystal structure|oxopyrrolidin-3-yl|hydrogen bonding|conformation|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o582-o583 (2015)",CC BY +Crystal structure of metobromuron,Gihaeng Kang|Jineun Kim|Eunjin Kwon|Tae Ho Kim,10.1107/S205698901501347X,https://doaj.org/article/722252fc1da04d5288fc2086d3847084,01/08/2015,EN,crystal structure|metobromuron|phenylurea herbicide|hydrogen bonding|Br...Br contacts|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o589-o589 (2015)",CC BY +Crystal structure of 3-amino-2-propylquinazolin-4(3H)-one,Gamal A. El-Hiti|Keith Smith|Amany S. Hegazy|Saud A. Alanazi|Benson M. Kariuki,10.1107/S2056989015013134,https://doaj.org/article/09599efd80f34bbc91e4608cc11a7711,01/08/2015,EN,crystal structure|quinazolin-4(3H)-one|hydrogen bonding|π–π overlap|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o590-o591 (2015)",CC BY +Crystal structure of 6-chloro-5-(2-chloroethyl)-3-(propan-2-ylidene)indolin-2-one,K. R. Roopashree|Gangadhar Y. Meti|Ravindra R. Kamble|H. C. Devarajegowda,10.1107/S2056989015012268,https://doaj.org/article/15f7b75d4710489fb00d34bb6c00a468,01/08/2015,EN,crystal structure|indolin-2-one|propan-2-ylidene|hyaluronidase|disorder|N—H...O hydrogen bonding|inversion dimers|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o592-o593 (2015)",CC BY +Crystal structure of diethyl 2-[(2-sulfanylquinolin-3-yl)methylidene]malonate,Rihanabanu|B. R. Anitha|T. G. Meenakshi|K. Mahesh Kumar|H. C. Devarajegowda,10.1107/S2056989015013596,https://doaj.org/article/178b4d54b6ce4e2981b026092ebd5185,01/08/2015,EN,crystal structure|diester|quinoline|malonate|intermolecular interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o594-o595 (2015)",CC BY +Crystal structure and absolute configuration of preaustinoid A1,Andrea Stierle|Donald Stierle|Daniel Decato,10.1107/S2056989015013614,https://doaj.org/article/95aa54166ca44beaa4271cfe26f6f2d4,01/08/2015,EN,crystal structure|meroterpene|preaustinoid A1|absolute configuration|hydrogen bonding|helical chain|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o596-o597 (2015)",CC BY +Crystal structure of nuarimol,Gihaeng Kang|Jineun Kim|Hyunjin Park|Tae Ho Kim,10.1107/S2056989015013493,https://doaj.org/article/eac7e1f997bc44ae99558af197396e23,01/08/2015,EN,crystal structure|nuarimol|pyrimidine fungicide|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o586-o587 (2015)",CC BY +Crystal structure of pyriproxyfen,Gihaeng Kang|Jineun Kim|Hyunjin Park|Tae Ho Kim,10.1107/S2056989015013481,https://doaj.org/article/eb30d6c9e2d44f18bcfb99d36afda391,01/08/2015,EN,crystal structure|pyriproxyfen|ether|juvenile hormone mimic|insecticide|π–π stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o588-o588 (2015)",CC BY +"Crystal structure of 1-[(1S,2R)-2-hydroxy-1-methyl-2-phenylethyl]pyrrolidinium 2-amino-5-chlorobenzoate",Yunli Li|Zhanjun Li|Yanjie Hu|Wen Li,10.1107/S2056989015013389,https://doaj.org/article/2afea3b3a5fa40d4951a8c1069c90627,01/08/2015,EN,"crystal structure|2-amino-5-chlorobenzoate anion|1-[(1S,2R)-2-Hydroxy-1-methyl-2-phenylethyl]pyrrolidinium cation|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o584-o585 (2015)",CC BY +"Crystal structure of ethyl 8-chloro-4-oxo-1,4-dihydroquinoline-3-carboxylate",Yoshinobu Ishikawa|Nanako Yoshida,10.1107/S2056989015013171,https://doaj.org/article/f762e0ea9ac741f4b42f2d5e6fe9ace5,01/08/2015,EN,crystal structure|quinolone|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o566-o566 (2015)",CC BY +"Crystal structure of 2,2,4-trimethyl-2,3,4,5-tetrahydro-1H-benzo[b][1,4]diazepine hemihydrate",K. S. Ezhilarasi|A. Akila|S. Ponnuswamy|B. K. Revathi|G. Usha,10.1107/S2056989015013201,https://doaj.org/article/1ce37986e34945f69a3df66b1cab2616,01/08/2015,EN,crystal structure|benzodiazepine|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o570-o571 (2015)",CC BY +Crystal structure of 8-bromo-4-oxo-4H-chromene-3-carbaldehyde,Yoshinobu Ishikawa,10.1107/S2056989015013250,https://doaj.org/article/52567d658ddc428fac3bcd0b6cd01934,01/08/2015,EN,crystal structure|chromone|hydrogen bonding|halogen bonding|π–π stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o572-o573 (2015)",CC BY +Crystal structure of N-deacetyllappaconitine,Xin-Wei Shi|Qiang-Qiang Lu|Jun-Hui Zhou|Xin-Ai Cui,10.1107/S2056989015012335,https://doaj.org/article/b07a0b36025c4dd2b83f463c44afc9c3,01/08/2015,EN,N-deacetyllappaconitine|C19-diterpenoid alkaloid|O—H...O hydrogen bonding.|crystal structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o576-o577 (2015)",CC BY +Crystal structure of (E)-4-hydroxy-3-{1-[(4-hydroxyphenyl)imino]ethyl}-6-methyl-2H-pyran-2-one,Amel Djedouani|Sihem Boufas|Franck Cleymand|Michel François|Solenne Fleutot,10.1107/S2056989015012840,https://doaj.org/article/197622b2da16459a898dd3be8f75edb6,01/08/2015,EN,crystal structure|hydroxy Schiff base|pyran-2-one|phenol–imine tautomer|hydrogen bonding|proton-transfer processes|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o564-o565 (2015)",CC BY +Crystal structure of C-2-benzothiazole-N-methylnitrone,Roman Doroschuk,10.1107/S2056989015013262,https://doaj.org/article/1a2e553bd6274737ac9f35fa4b5f9cb2,01/08/2015,EN,crystal structure|benzothiazole|nitrone|S...O attractive interaction|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o578-o579 (2015)",CC BY +Crystal structure of 2-cyano-N-(furan-2-ylmethyl)-3-(3-nitrophenyl)propanamide,Shivanna Subhadramma|Budanur Papaiah Siddaraju|Naveen Chandra|Janardhanan Saravanan|Dasararaju Gayathri,10.1107/S2056989015012918,https://doaj.org/article/a263878a8ed041bdac26e7d7c5f7b546,01/08/2015,EN,crystal structure|furan|acetamide|N—H...N hydrogen bonds|inversion dimers|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o568-o569 (2015)",CC BY +Crystal structure of 2-[bis(1H-pyrazol-1-yl)methyl]pyridine,Kyung-sun Son|Jong-Eun Park|Daeyoung Kim|Sung Kwon Kang,10.1107/S2056989015013195,https://doaj.org/article/e8fddc89f3824768a58c22fcaaa60bbe,01/08/2015,EN,crystal structure|pyrazolyl|pyridyl|C—H...N interactions|crystal structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o567-o567 (2015)",CC BY +"Crystal structure of 2,3-dimethoxy-5,6,7,8,13,13a-hexahydro-6a,8-diazaindeno[2,1-b]phenanthrene methanol monosolvate",Shahobiddin M. Adizov|Abdusalom Sh. Saidov|Kambarali K. Turgunov|Rasul Ya. Okmanov|Bakhodir Tashkhodjaev,10.1107/S2056989015013286,https://doaj.org/article/519477690dfb4f6eb299bd551c977c6f,01/08/2015,EN,crystal structure|indole alkaloid|isoquinoline alkaloid|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o574-o575 (2015)",CC BY +Crystal structure of the enol form of mesotrione: a benzoylcyclohexanedione herbicide,Gihaeng Kang|Jineun Kim|Hyunjin Park|Tae Ho Kim,10.1107/S2056989015012803,https://doaj.org/article/89a119acde8641aca4c511cb4a6929b1,01/08/2015,EN,crystal structure|tautomerization|enol form|intramolecular O—H...O hydrogen bond.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o548-o549 (2015)",CC BY +"Crystal structure of sepaconitine, a C19-diterpenoid alkaloid from the roots of Aconitum sinomontanum Nakai",Xin-Wei Shi|Qiang-Qiang Lu|Jun-Hui Zhou|Xin-Ai Cui,10.1107/S205698901501258X,https://doaj.org/article/dadb8e11493f49e5813e25bed1e48983,01/08/2015,EN,crystal structure|C19-diterpenoid alkaloid|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o550-o551 (2015)",CC BY +"Crystal structure of 2-(2-methylphenyl)-1,3-thiazolo[4,5-b]pyridine",Gamal A. El-Hiti|Keith Smith|Amany S. Hegazy|Saud A. Alanazi|Benson M. Kariuki,10.1107/S2056989015012797,https://doaj.org/article/3410d01220da45738d11b28bfa93cfff,01/08/2015,EN,crystal structure|thiazolopyridine|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o562-o563 (2015)",CC BY +Crystal structure of (R)-6-fluoro-2-[(S)-oxiran-2-yl]chroman,Yoann Rousselin|Hugo Laureano|Alexandre Clavel,10.1107/S205698901501261X,https://doaj.org/article/b73d0ea74f1d474691910d3687318cc9,01/08/2015,EN,crystal structure|nebivolol|absolute configuration|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o552-o553 (2015)",CC BY +"Crystal structure of 2,5-dimethyl-3-(2-methylphenylsulfinyl)-1-benzofuran",Hong Dae Choi|Uk Lee,10.1107/S2056989015012773,https://doaj.org/article/94ab1f53aaa14b6293ef221bddbc050f,01/08/2015,EN,crystal structure|benzofuran|2-methylphenyl|C—H...O hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o554-o555 (2015)",CC BY +Crystal structure of (Z)-3-[5-chloro-2-(prop-2-ynyloxy)phenyl]-3-hydroxy-1-[4-(trifluoromethyl)phenyl]prop-2-en-1-one,Aarti Dalal|Ramesh C. Kamboj|Dinesh Kumar|Mahendra Kumar Sharma|Nagendran Selvarajan,10.1107/S2056989015012748,https://doaj.org/article/7277af0aeeb2422f9804f06ca968e5fd,01/08/2015,EN,crystal structure|hydroxy enone|tautomerisation|hydrogen bonding|photo-isomerisation|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o556-o557 (2015)",CC BY +"Crystal structure of 3-hydroxymethyl-1,2,3,4-tetrahydroisoquinolin-1-one",Ignez Caracelli|Camila Lury Hino|Julio Zukerman-Schpector|Francisco Carlos Biaggio|Edward R. T. Tiekink,10.1107/S2056989015012670,https://doaj.org/article/e22aeda454414344b3a843b4caff757e,01/08/2015,EN,crystal structure|hydrogen bonding|conformation|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o558-o559 (2015)",CC BY +Crystal structure of 2-[2-(benzyloxy)benzylidene]malononitrile,Sammer Yousuf|Huma Bano|Munira Taj Muhammad|Khalid Mohammed Khan,10.1107/S2056989015012608,https://doaj.org/article/342cf14398e74ba2b101881db414332f,01/08/2015,EN,crystal structure|malononitrile|benzylidenemalononitrile derivatives|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o560-o561 (2015)",CC BY +"Crystal structure of 1-(4-fluorophenyl)-4-(4-methoxyphenyl)-1H-1,2,3-triazole",Balbir Kumar|Madhvi Bhardwaj|Satya Paul|Rajni Kant|Vivek K. Gupta,10.1107/S2056989015012153,https://doaj.org/article/d474cb6d17dc49589cb82e5025d4dabf,01/08/2015,EN,"crystal structure|1,2,3-triazole|π–π interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o534-o535 (2015)",CC BY +Crystal structure of 1-iodo-3-{[4-(tert-butylsulfanyl)phenyl]ethynyl}azulene,Sebastian Förster|Wilhelm Seichter|Edwin Weber,10.1107/S2056989015012542,https://doaj.org/article/0f403e062bb14b46935b5179e4e4257e,01/08/2015,EN,"crystal structure|azulene|1,3-disubstitution|C—H...π interaction|I...π contact|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o544-o545 (2015)",CC BY +Crystal structure of 2-amino-7-hydroxy-4-(4-hydroxyphenyl)-4H-chromene-3-carbonitrile,Peter N. Horton|Mehmet Akkurt|Shaaban K. Mohamed|Sabry H. H. Younes|Mustafa R. Albayati,10.1107/S2056989015012815,https://doaj.org/article/d8525eea50104d6facc390743fcbb5d4,01/08/2015,EN,"crystal structure|chromene|hydrogen bonding,|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o546-o547 (2015)",CC BY +"Crystal structure of (E)-4-(acetoxyimino)-N-allyl-3-isopropyl-2,6-diphenylpiperidine-1-carbothioamide",T. Mohandas|K. Gokula Krishnan|S. Balamurugan|William T. A. Harrison|V. Thanikachalam|P. Sakthivel,10.1107/S2056989015012499,https://doaj.org/article/101886a1fbbf4be5b4051bbc5084454f,01/08/2015,EN,crystal structure|carbothioamide|piperidine|acetoxyimino|inversion dimers|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o542-o543 (2015)",CC BY +"Crystal structure of (1R,2S,4R,7R,8S,9R)-3,3-dichloro-8,9-epoxy-4,8,12,12-tetramethyltricyclo[5.5.0.02,4]dodecane",Ahmed Benzalim|Aziz Auhmani|My Youssef Ait Itto|Jean-Claude Daran|Abdelwahed Auhmani,10.1107/S205698901501244X,https://doaj.org/article/b1c0845575d74c8a84de6b61b5e3bcc9,01/08/2015,EN,crystal structure|absolute configuration|natural products|epoxide|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o538-o539 (2015)",CC BY +Crystal structure of pencycuron,Gihaeng Kang|Jineun Kim|Eunjin Kwon|Tae Ho Kim,10.1107/S2056989015012414,https://doaj.org/article/3db7419c8ad34116b80b79858ebd1e36,01/08/2015,EN,crystal structure|pencycuron|urea|fungicide|hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o532-o532 (2015)",CC BY +"Crystal structure of 2,6-dimethyl-4-pyridone hemihydrate",Dalena M. Nguyen|Vasumathi Desikan|James A. Golen|David R. Manke,10.1107/S2056989015012402,https://doaj.org/article/121c2e914c3446e3ad7570c6b58ace36,01/08/2015,EN,crystal structure|hydrogen bonding|pyridones|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o533-o533 (2015)",CC BY +Crystal structure of poly[[[μ4-5-(9H-carbazol-9-yl)isophthalato][μ3-5-(9H-carbazol-9-yl)isophthalato]bis(dimethylformamide)(methanol)dizinc] dimethylformamide monosolvate],Liubov M. Lifshits|Charles Campana|Jeremy K. Klosterman,10.1107/S2056989015013961,https://doaj.org/article/f2dbf1cfd3d24feaa31c2fdea809a248,01/08/2015,EN,crystal structure|zinc|metal–organic framework|laminar solids|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp m152-m153 (2015)",CC BY +Crystal structure of 3-amino-1-(4-hydroxyphenyl)-1H-benzo[f]chromene-2-carbonitrile,Mehmet Akkurt|Peter N. Horton|Sabry H. H. Younes|Shaaban K. Mohamed|Mustafa R. Albayati,10.1107/S2056989015012566,https://doaj.org/article/3c000449546f4fbc87b19524fcf888cb,01/08/2015,EN,crystal structure|aminochromenes|hydrogen bonding|N—H...π(arene) interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o536-o537 (2015)",CC BY +Crystal structure of 5-hydroxymethyl-2-methoxyphenol,Mubashir Hassan|Zaman Ashraf|Sung-Yum Seo|Daeyoung Kim|Sung Kwon Kang,10.1107/S205698901501230X,https://doaj.org/article/fce8a8d0264d447eb164e64f481e186a,01/08/2015,EN,crystal structure|alcoholic hydroxy compounds|O—H...O hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp o540-o541 (2015)",CC BY +Crystal structure of undecapotassium bis[α-hemipentahydrogen hexamolybdoplatinate(IV)] dodecahydrate,Hea-Chung Joo|Ki-Min Park|Uk Lee,10.1107/S2056989015014188,https://doaj.org/article/b88492d9c4ba4571ae52afc6550bc1c9,01/08/2015,EN,crystal structure|platinium(IV)|platinum-containing heteropolyoxometalate|short hydrogen bond|Anderson structure heteropolyoxomolybdate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 986-988 (2015)",CC BY +Crystal structure of potassium (1S)-d-lyxit-1-ylsulfonate monohydrate,Alan H. Haines|David L. Hughes,10.1107/S2056989015014139,https://doaj.org/article/64365bba43ce427c8598c9ea48527297,01/08/2015,EN,crystal structure|D-lyxose bisulfite adduct|potassium hydrogen sulfite|potassium metabisulfite|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 993-996 (2015)",CC BY +"Crystal structure of di-μ-hydroxido-κ4O:O-bis[bis(acetylacetonato-κ2O,O′)cobalt(III)]",Casseday P. Richers|Jeffery A. Bertke|Thomas B. Rauchfuss,10.1107/S2056989015013663,https://doaj.org/article/bf405b860d2f4a7dbcee105541f19e6c,01/08/2015,EN,crystal structure|cobalt(III)|acac ligand|bridging hydroxide ligand|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 983-985 (2015)",CC BY +"Crystal structure of bis[4′-(1,4,7,10-tetraoxa-13- azacyclopentadecan-13-yl)-2,2′:6′,2′′-terpyridine]cobalt(III) tris(perchlorate) methanol monosolvate monohydrate",Hitomi Ohmagari|Manabu Nakaya|Ryo Ohtani|Masaaki Nakamura|Shinya Hayami,10.1107/S2056989015014164,https://doaj.org/article/68502271cf944aa6adf04634a44bd47c,01/08/2015,EN,crystal structure|terpyridine|crown ether|hydrogen bonding|C—H...π interactions|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 997-999 (2015)",CC BY +"Crystal structure of catena-poly[hemi[1,3-bis(2,6-diisopropylphenyl)imidazolium] [[μ3-acetato-κ3O:O:O′-tri-μ2-acetato-κ6O:O′-dicopper(II)(Cu—Cu)]-μ-chlorido] dichloromethane sesquisolvate]",Mohammad Iqbal|James Raftery|Peter Quayle,10.1107/S2056989015013675,https://doaj.org/article/cbf67e95e87a40e4ab6f2fa99aba45d2,01/08/2015,EN,crystal structure|coordination polymer|copper(II) tetraacetate|paddle-wheel|imidazolium|paramagnetism|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp m148-m149 (2015)",CC BY +Crystal structure of tetrakis(acetylacetonato)dichloridodi-μ3-methanolato-tetra-μ2-methanolato-tetrairon(III),Casseday P. Richers|Jeffery A. Bertke|Danielle L. Gray|Thomas B. Rauchfuss,10.1107/S2056989015013535,https://doaj.org/article/a5575b2b062e4d9e8623bfb1b295bc87,01/08/2015,EN,crystal structure|cluster|iron(III)|acetylacetonate|ouble cubane|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 976-979 (2015)",CC BY +"Structure of poly[diaqua[μ-1,2-bis(pyridin-4-yl)ethane-κ2N:N′]bis(μ3-cyclobutane-1,1-dicarboxylato-κ3O,O′:O′′:O′′′)dimanganese(II)]",Do Nam Lee|Youngmee Kim,10.1107/S2056989015013791,https://doaj.org/article/09b554db4ea7412a944f384ddfa9d5e9,01/08/2015,EN,"crystal structure|α,ω-alkanedicarboxylate|manganese(II)|cyclobutane-1,1-dicarboxylate (cbdc) ligand|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp m150-m151 (2015)",CC BY +"Crystal structure of aquabis[4-(methylsulfanyl)benzoato-κO](1,10-phenanthroline-κ2N,N′)copper(II) monohydrate",Jin-Li Zhu|Jian-hua Li|Miao Wang|Guo-Min Jiang|Guo-Qing Jiang,10.1107/S205698901501364X,https://doaj.org/article/7cc7e0f1a14e4c779097e5b65cc84dcb,01/08/2015,EN,"crystal structure|copper(II) complex|benzoate|1,10-phenanthroline|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 980-982 (2015)",CC BY +"Crystal structure of tetrakis(μ-2,4,6-trimethylbenzoato-κ2O:O′)bis[(nicotinamide-κN1)copper(II)]",Gülçin Şefiye Aşkın|Hacali Necefoğlu|Safiye Özkaya|Nefise Dilek|Tuncer Hökelek,10.1107/S2056989015013882,https://doaj.org/article/5610801bcba2400aad7451882bb00232,01/08/2015,EN,"crystal structure|copper(II) complex|nicotinamide ligand|2,4,6-trimethylbenzoate|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 989-992 (2015)",CC BY +"Crystal structure of dichloridobis(1,3,4,5-tetramethyl-1H-imidazol-2-ium-2-thiolate-κS)nickel(II)",Aziza Ahmida|Ulrich Flörke|Hans Egold|Gerald Henkel,10.1107/S2056989015012281,https://doaj.org/article/ad77b7537f2d497b9d4ee9ac55c13923,01/08/2015,EN,"crystal structure|nickel(II) complex|1,3,4,5-tetramethylimidazole-2-thione ligand|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp m147-m147 (2015)",CC BY +"Anomalous halogen bonds in the crystal structures of 1,2,3-tribromo-5-nitrobenzene and 1,3-dibromo-2-iodo-5-nitrobenzene",José A. Romero|Gerardo Aguirre Hernández|Sylvain Bernès,10.1107/S2056989015013377,https://doaj.org/article/880d2fc79eea4e33a6229f2d93821830,01/08/2015,EN,crystal structure|polyhalogenated benzene|halogen bond|bromine|iodine|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 960-964 (2015)",CC BY +Crystal structure of 4-(4-chlorophenyl)-6-(morpholin-4-yl)pyridazin-3(2H)-one,Abdullah Aydın|Mehmet Akkurt|Murat Şüküroğlu|Orhan Büyükgüngör,10.1107/S2056989015012980,https://doaj.org/article/321a21db094d476687cf6376643fa318,01/08/2015,EN,crystal structure|pyridazinone derivative|hydrogen bonding|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 944-946 (2015)",CC BY +"Crystal structure of 2,3-dimethylmaleic anhydride: continuous chains of electrostatic attraction",Ren A. Wiscons|Matthias Zeller|Jesse L. C. Rowsell,10.1107/S2056989015013419,https://doaj.org/article/6fbe7b4023614bc085c8522d5dfe59ee,01/08/2015,EN,crystal structure|maleic anhydride|carbonyl–carbonyl interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 950-955 (2015)",CC BY +Crystal structure of (ferrocenylmethyl)dimethylammonium hydrogen oxalate,Mamadou Ndiaye|Abdoulaye Samb|Libasse Diop|Thierry Maris,10.1107/S205698901501333X,https://doaj.org/article/4d4f76b1b24742ed9d7690dc8bc07b36,01/08/2015,EN,crystal structure|hydrogen oxalate|(ferrocenylmethyl)dimethylammonium|bifurcated hydrogen bond|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 947-949 (2015)",CC BY +"Crystal structures of 4-phenylpiperazin-1-ium 6-chloro-5-ethyl-2,4-dioxopyrimidin-1-ide and 4-phenylpiperazin-1-ium 6-chloro-5-isopropyl-2,4-dioxopyrimidin-1-ide",Monirah A. Al-Alshaikh|Ali A. El-Emam|Omar A. Al-Deeb|Mohammed S. M. Abdelbaky|Santiago Garcia-Granda,10.1107/S2056989015013298,https://doaj.org/article/fffd0bfd8d2d481ca382d2d24eaad2cc,01/08/2015,EN,crystal structure|piperazinium salts|anticancer activity|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 956-959 (2015)",CC BY +Crystal structure of (±)-1-({[4-(allyloxy)phenyl]sulfanyl}methyl)-2-(diphenylthiophosphoryl)ferrocene,Audric Michelot|Stéphanie Sarda|Jean-Claude Daran|Eric Deydier|Eric Manoury,10.1107/S2056989015013560,https://doaj.org/article/6253086fca5e487295faf240e0ade4ae,01/08/2015,EN,crystal structure|ferrocenyl ligands|planar chirality|asymmetric catalysis|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 972-975 (2015)",CC BY +"Crystal structure of (1S,3R,8R,9R,10S)-2,4,6-tris(2,2-dichloro-3,7,7,10-tetramethyltricyclo[6.4.0.01,3]dodec-9-yl)cyclotriboroxane",Ahmed Benharref|Lahcen El Ammari|Mohamed Saadi|Noureddine Mazoir|Moha Berraho,10.1107/S2056989015013390,https://doaj.org/article/d0b19053b063430799179c7f2954d343,01/08/2015,EN,crystal structure|oil of the Atlas cedar (Cedrus Atlantica)|cyclotriboroxane|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 941-943 (2015)",CC BY +"Crystal structures of (2E)-1-(3-bromothiophen-2-yl)-3-(2-methoxyphenyl)prop-2-en-1-one and (2E)-1-(3-bromothiophen-2-yl)-3-(3,4-dimethoxyphenyl)prop-2-en-1-one",Vasant S. Naik|Venkataraya Shettigar|Tyler S. Berglin|Jillian S. Coburn|Jerry P. Jasinski|Hemmige S. Yathirajan,10.1107/S2056989015013420,https://doaj.org/article/5b2304e51a1840f9b0bb0d57dec2ae77,01/08/2015,EN,crystal structure|bromothiophene|methoxyphenylprop-2-en-1-one|molecular conformation|nearly coplanar molecules|C—H...π interactions|π–π sacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 965-971 (2015)",CC BY +"Crystal structure of bis[tris(1,10-phenanthroline-κ2N,N′)cobalt(II)] tetranitrate N,N′-(1,4-phenylenedicarbonyl)diglycine solvate octahydrate",Niels-Patrick Pook|Philipp Hentrich|Mimoza Gjikaj,10.1107/S2056989015013006,https://doaj.org/article/db910923efbe4da59b4b3557d446b7a6,01/08/2015,EN,"crystal structure|cobalt(II) complex|N,N′-(1,4-phenylenedicarbonyl)diglycine|phenanthroline ligand|supramolecular interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 910-914 (2015)",CC BY +"Crystal structures of diiodidobis[(1S,5S)-4-mesityl-1,2,8,8-tetramethyl-2,4-diazabicyclo[3.2.1]octan-3-ylidene-κC3]palladium(IV) and dichlorido[(1S,5S)-4-mesityl-1,2,8,8-tetramethyl-2,4-diazabicyclo[3.2.1]octan-3-ylidene-κC3](triphenylphosphane-κP)palladium(IV)",Eduard Rais|Ulrich Flörke|René Wilhelm,10.1107/S2056989015013055,https://doaj.org/article/c585b5bc6e804244a473dcaebffb6b81,01/08/2015,EN,crystal structure|coordination compound|palladium complexes|NHC ligands|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 919-922 (2015)",CC BY +Crystal structures and conformational analyses of three pyranochromene derivatives,K. Swaminathan|K. Sethusankar|G. Siva Kumar|M. Bakthadoss,10.1107/S2056989015012967,https://doaj.org/article/c541cecbdaaa4710b03943e5999f4864,01/08/2015,EN,crystal structure|pyranochromene|coumarin derivatives|molecular sheets|inversion dimers|chains|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 926-930 (2015)",CC BY +"Crystal structure of 2′-[(2′,4′-difluorobiphenyl-4-yl)carbonyl]-1′-phenyl-1′,2′,5′,6′,7′,7a'-hexahydrospiro[indole-3,3′-pyrrolizin]-2(1H)-one",M. Fathimunnisa|H. Manikandan|S. Selvanayagam|B. Sridhar,10.1107/S2056989015012931,https://doaj.org/article/73798b5476f943e09d9b1106e0fd71f0,01/08/2015,EN,crystal structure|pyrrolizidine derivatives|N—H...O hydrogen bonds|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 915-918 (2015)",CC BY +"Crystal structure of poly[[di-μ2-aqua-aquasodium] 4-amino-3,5,6-trichloropyridine-2-carboxylate trihydrate], the sodium salt of the herbicide picloram",Graham Smith,10.1107/S2056989015012633,https://doaj.org/article/ed9f43697807444797c6c90ca127c430,01/08/2015,EN,crystal structure|picloram|Tordon|herbicide|sodium salt|coordination polymer|sodium–water cationic chain|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 931-933 (2015)",CC BY +"Crystal structure of 4-(dimethylamino)pyridinium cis-diaquabis(oxalato-κ2O,O′)ferrate(III) hemihydrate",Edith Dimitri Djomo|Frédéric Capet|Justin Nenwa|Michel M. Bélombé|Michel Foulon,10.1107/S2056989015013213,https://doaj.org/article/5b7dad25f0f346e8b0587e4f6f95cdbf,01/08/2015,EN,crystal structure|4-(dimethylamino)pyridine|bis(oxalate)ferrate(III) complex|hybrid salt|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 934-936 (2015)",CC BY +Crystal structure of bis[μ-bis(diphenylphosphanyl)methane-κ2P:P′]digold(I) dichloride acetone monosolvate monohydrate,Chien Ing Yeo|Yee Seng Tan|Edward R. T. Tiekink,10.1107/S2056989015013341,https://doaj.org/article/09e446496a8a4426927226951389c98e,01/08/2015,EN,crystal structure|phosphanegold(I) salt|pseudopolymorph|aurophilic interaction|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 937-940 (2015)",CC BY +"Crystal structure of 1,3-dihydroxy-2-(hydroxymethyl)propan-2-aminium 2-(4-isobutylphenyl)propanoate: a simple organic salt of racemic ibuprofen",Benyong Lou,10.1107/S2056989015012979,https://doaj.org/article/31a06bd95f5e4de891f73aea62d42546,01/08/2015,EN,crystal structure|ibuprofen|trometamol|molecular salt|hydrogen bonding|chains|sheets|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 923-925 (2015)",CC BY +"Crystal structure of 7,8-dichloro-4-oxo-4H-chromene-3-carbaldehyde",Yoshinobu Ishikawa,10.1107/S205698901501275X,https://doaj.org/article/0ff58557ca1a49eab14f9fa5ce8921c6,01/08/2015,EN,crystal structure|π–π stacking|hydrogen bond|halogen bond|halogen–halogen interaction|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 902-905 (2015)",CC BY +"Crystal structure of catena-poly[calcium-di-μ3-benzoato-κ6O,O′:O-μ2-(dimethyl sulfoxide)-κ2O:O]",Anna S. Voronova|Svitlana R. Petrusenko|Evgeny Goreshnik,10.1107/S2056989015012487,https://doaj.org/article/2c5dc05a7a044dbc8b5ce69fc7f8bbe1,01/08/2015,EN,crystal structure|calcium benzoate|coordination polymer|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 906-909 (2015)",CC BY +Crystal structures of vortioxetine and its methanol monosolvate,Xin-Bo Zhou|Jian-Ming Gu|Meng-ying Sun|Xiu-Rong Hu|Su-Xiang Wu,10.1107/S2056989015012256,https://doaj.org/article/7588343e311a4166bbf5ce1fb3ed449d,01/08/2015,EN,crystal structure|vortioxetine|major depressive disorder|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 883-885 (2015)",CC BY +"Structure of a dinuclear cadmium complex with 2,2′-bipyridine, monodentate nitrate and 3-carboxy-6-methylpyridine-2-carboxylate ligands: intramolecular carbonyl(lone pair)...π(ring) and nitrate(π)...π(ring) interactions",Juan Granifo|Sebastián Suarez|Ricardo Baggio,10.1107/S2056989015012384,https://doaj.org/article/0ae25b89e80844e4a3281dbb6f4ff428,01/08/2015,EN,crystal structure|dinuclear Cd complex|intramolecular C—O...π(ring) and N—O...π(ring) interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 890-894 (2015)",CC BY +"Crystal structure of hexakis(dmpu)-di-μ2-hydroxido-dialuminium tetraiodide dmpu tetrasolvate [dmpu is 1,3-dimethyltetrahydropyrimidin-2(1H)-one]: a centrosymmetric dinuclear aluminium complex containing AlO5 polyhedra",Daniel Lundberg|Krzysztof Lyczko,10.1107/S2056989015012785,https://doaj.org/article/246302cfc1824c929ed7041cf8f00d1b,01/08/2015,EN,crystal structure|group 13 metals|five-coordination|dmpu|space-demanding solvent|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 895-898 (2015)",CC BY +"Crystal structure of [1,1′′′-bis(pyrimidin-2-yl)-4,4′:2′,2′′:4′′,4′′′-quaterpyridine-1,1′′′-diium-κ2N1′,N1′′]bis[2-(pyridin-2-yl)phenyl-κ2N,C1]iridium(III) tris(hexafluoridophosphate) acetonitrile trisolvate",Benjamin J. Coe|Martyn K. Peers|James Raftery|Nigel S. Scrutton,10.1107/S2056989015012463,https://doaj.org/article/b47914f30f5f4448a9b06d5601a106e0,01/08/2015,EN,"crystal structure|iridium(III)|cyclometalated|4,4′:2′,2′′:4′′,4′′′-quaterpyridyl ligand|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 879-882 (2015)",CC BY +Crystal structure of the bis(cyclohexylammonium) succinate succinic acid salt adduct,Modou Sarr|Aminata Diasse-Sarr|Libasse Diop|Laurent Plasseraud|Hélène Cattey,10.1107/S2056989015012621,https://doaj.org/article/13a9e94933ea40a0a9f4e918560203aa,01/08/2015,EN,crystal structure|organic salt|molecular adduct|hydrogen bonds|succinate|succinic acid|cyclohexylammonium cation|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 899-901 (2015)",CC BY +"A new monoclinic polymorph of 1,1′-bis(diphenylthiophosphoryl)ferrocene",Yee Seng Tan|Chien Ing Yeo|Edward R. T. Tiekink,10.1107/S2056989015012682,https://doaj.org/article/e1b5ae0265a649f0a637bf7e6892e0b1,01/08/2015,EN,crystals structure|ferrocene derivative|polymorph|conformation|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 8, Pp 886-889 (2015)",CC BY +Crystal structure of [(E)-({2-[3-(2-{(1E)-[(carbamothioylamino)imino]methyl}phenoxy)propoxy]phenyl}methylidene)amino]thiourea with an unknown solvate,Joel T. Mague|Shaaban K. Mohamed|Mehmet Akkurt|Sabry H. H. Younes|Mustafa R. Albayati,10.1107/S2056989015012074,https://doaj.org/article/cac9de07d164443791b6035b2eae27ca,01/07/2015,EN,crystal structure|bis-thiosemicarbazones|biological activity|SQUEEZE|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o530-o531 (2015)",CC BY +Crystal structure of 3-acetyl-4H-chromen-4-one,Yoshinobu Ishikawa,10.1107/S2056989015012098,https://doaj.org/article/1bd063e3a3b04e418345dfb256dfb0f3,01/07/2015,EN,crystal structure|chromone|hydrogen bond|π–π stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o527-o527 (2015)",CC BY +Crystal structure of (E)-dodec-2-enoic acid,Marcel Sonneck|Tim Peppel|Anke Spannenberg|Sebastian Wohlrab,10.1107/S2056989015011937,https://doaj.org/article/32b7e1bab5e342bbb8f4b54d53295195,01/07/2015,EN,crystal structure|hydrogen bonding|dimer|unsaturated carboxylic acid|fatty acid|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o528-o529 (2015)",CC BY +"Crystal structure of 1,2-bis(2,6-dimethylphenyl)-3-phenylguanidine",Hongfei Han|Zhiqiang Guo|Xuehong Wei,10.1107/S2056989015011822,https://doaj.org/article/55f6e16cb0ce4e2c864853445aecc1e3,01/07/2015,EN,crystal structure|guanidines|hydrogen bonding|π–π overlap|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o506-o507 (2015)",CC BY +"Crystal structure of ethyl 2-(2,4,5-trimethoxyphenyl)quinoline-4-carboxylate",T. O. Shrungesh Kumar|S. Naveen|M. N. Kumara|K. M. Mahadevan|N. K. Lokanath,10.1107/S2056989015011706,https://doaj.org/article/14b2cf35334049329596aa29056e0ece,01/07/2015,EN,crystal structure|quinoline|quinolone-4-ethyl carboxylate|hydrogen bonding|C—H...O interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o514-o515 (2015)",CC BY +Crystal structure of ethyl (4R)-2-amino-7-hydroxy-4-phenyl-4H-chromene-3-carboxylate,Joel T. Mague|Shaaban K. Mohamed|Mehmet Akkurt|Sabry H. H. Younes|Mustafa R. Albayati,10.1107/S2056989015012013,https://doaj.org/article/1491c6a2b1a142afafd3a4386bcd3a07,01/07/2015,EN,crystal structure|amino chromenes|4H-chromene|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o519-o520 (2015)",CC BY +Crystal structure of N-[(naphthalen-1-yl)carbamothioyl]cyclohexanecarboxamide,G. Vimala|J. Haribabu|S. Aishwarya|R. Karvembu|A. SubbiahPandi,10.1107/S2056989015011950,https://doaj.org/article/256b3fb7865240e2838f1291d8814f24,01/07/2015,EN,crystal structure|whole-molecule disorder|thiourea derivatives|intramolecular N—H...O hydrogen bond|N—H...S hydrogen bonds|π–π stacking interactions|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o508-o509 (2015)",CC BY +Crystal structure of 2-amino-4-phenyl-4H-benzo[h]chromene-3-carbonitrile,Shaaban K. Mohamed|Peter N. Horton|Mehmet Akkurt|Sabry H. H. Younes|Mustafa R. Albayati,10.1107/S2056989015011536,https://doaj.org/article/70054412450c4f179303a8d8b57c87b0,01/07/2015,EN,crystal structure|aminochromene|fused chromene|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o516-o517 (2015)",CC BY +Crystal structure of 3-bromo-2-hydroxybenzonitrile,Sean R. Dickinson|Peter Müller|Joseph M. Tanski,10.1107/S2056989015011974,https://doaj.org/article/e99837aaedfe4ee9868ea9966f579608,01/07/2015,EN,crystal structure|disorder|hydrogen bonding|π-stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o523-o524 (2015)",CC BY +"Crystal structure of 1′-(prop-2-yn-1-yl)-1,4-dihydrospiro[benzo[d][1,3]oxazine-2,3′-indolin]-2′-one",Y. AaminaNaaz|J. Kamalraja|G. Vimala|P. T. Perumal|A. SubbiahPandi,10.1107/S2056989015011949,https://doaj.org/article/b4309e0817f84ab7ae7f33699915609d,01/07/2015,EN,crystal structure|spiro compounds|spirooxazines|oxazine|indoline|N—H...O hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o510-o511 (2015)",CC BY +"Crystal structure of 11-[4-(hexyloxy)phenyl]-1,2,4-triazolo[4,3-a][1,10]phenanthroline",Jasmin Preis|Dieter Schollmeyer|Heiner Detert,10.1107/S2056989015012025,https://doaj.org/article/7be53c4ac93645bc9fc4abee5b5cdc40,01/07/2015,EN,crystal structure|phenanthroline|triazole|helicene|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o521-o522 (2015)",CC BY +"Crystal structure of 4-(6-chloro-4-oxo-4H-chromen-3-yl)-2-methylamino-3-nitro-4H,5H-pyrano[3,2-c]chromen-5-one chloroform monosolvate",Rajamani Raja|Subramani Kandhasamy|Paramasivam T. Perumal|A. SubbiahPandi,10.1107/S2056989015011810,https://doaj.org/article/99c4cef59dc54cc2a3377931f72d0964,01/07/2015,EN,crystal structure|chromene|chromones|pyran|hydrogen bonding|C—H...π interactions|π–π interactions|inversion dimers|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o512-o513 (2015)",CC BY +"Crystal structure of 4α-hydroxy-5α,8β(H)-eudesm-7(11)-en-8,12-olide monohydrate",Qiang-Qiang Lu|Xin-Wei Shi|Xing-Ke Yang,10.1107/S2056989015011251,https://doaj.org/article/a1be5daff7404caa8d29da0f2d7994b3,01/07/2015,EN,crystal structure|eudesmane sesquiterpenoid|hydrogen bonds|Chloranthus japonicus|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o518-o518 (2015)",CC BY +"Crystal structure of 3,9,9-trimethyl-2,3,3a,4,9,9a-hexahydro-1H-cyclopenta[b]quinolin-4-ium chloride",G. Sridhar|I. Mohammed Bilal|D. Easwaramoorthy|S. Kutti Rani|K. Anand Solomon,10.1107/S2056989015011858,https://doaj.org/article/ef292d51b5574237babfa34b537767e2,01/07/2015,EN,crystal structure|quinoline|N—H...Cl hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o525-o526 (2015)",CC BY +"Crystal structure of 5-(1-benzofuran-2-yl)-3-(4-methylphenyl)-4,5-dihydro-1,2-oxazol-5-ol",A. J. Ravi|A. C. Vinayaka|S. Jeyaseelan|M. P. Sadashiva|H. C. Devarajegowda,10.1107/S2056989015011263,https://doaj.org/article/37b226ab6a684c7b808f0ec9b3cc6dda,01/07/2015,EN,"crystal structure|benzofuran|1,2-oxazole|alcohol|biological properties|pharmaceutical properties|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o492-o493 (2015)",CC BY +Crystal structure of 3-(hydroxymethyl)chromone,Yoshinobu Ishikawa,10.1107/S2056989015011627,https://doaj.org/article/3fec1abd1335447b8a5927aef2d57a6d,01/07/2015,EN,crystal structure|chromone|hydrogen bonding|π–π stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o495-o495 (2015)",CC BY +"Crystal structure of (E)-1-{[(3,5-dimethylphenyl)imino]methyl}naphthalen-2-ol",Ahmed M. Abu-Dief|Mohammed S. M. Abdelbaky|Santiago Garcia-Granda,10.1107/S2056989015011548,https://doaj.org/article/ca9d3cd377da437b92f8a0587521a574,01/07/2015,EN,crystal structure|Schiff base|naphthalen-2-ol|imino|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o496-o497 (2015)",CC BY +Crystal structure of N-[(morpholin-4-yl)(thiophen-2-yl)methyl]benzamide,S. Arun Prabhu|M. Suresh|A. Abdul Jameel|M. Syed Ali Padusha|B. Gunasekaran,10.1107/S2056989015011639,https://doaj.org/article/6eff09e8f46a4e19ba9934928c986989,01/07/2015,EN,crystal structure|benzamide|morpholino|thiophene|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o498-o499 (2015)",CC BY +"Crystal structure of (E)-4,4′-(but-2-ene-1,4-diyl)bis(2-methoxyphenol)",Kyle S. Knight|Patrick J. Carey,10.1107/S2056989015011585,https://doaj.org/article/fc0302018c8d4fcca51cbe8dcd4cced8,01/07/2015,EN,crystal structure|metathesis|dimerization of eugenol|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o500-o500 (2015)",CC BY +Crystal structure of (E)-5-diethylamino-2-({[4-(dimethylamino)phenyl]imino}methyl)phenol,C. Vidya Rani|G. Chakkaravarthi|G. Rajagopal,10.1107/S2056989015011779,https://doaj.org/article/cb8ad3b7c7e14a75a7b0bf9e2aa8f352,01/07/2015,EN,crystal structure|Schiff base|intramolecular O—H...N hydrogen bond|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o503-o503 (2015)",CC BY +"Crystal structure of 1,4-diethoxy-9,10-anthraquinone",Chitoshi Kitamura|Sining Li|Munenori Takehara|Yoshinori Inoue|Katsuhiko Ono|Takeshi Kawase,10.1107/S2056989015011901,https://doaj.org/article/c42ee5363d6b4b1282fe8113482d5096,01/07/2015,EN,"crystal structure|9,10-anthraquinone|crystallographically independent molecules|π–π interactions|C—H...O interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o504-o505 (2015)",CC BY +Crystal structure of oxadiargyl,Gihaeng Kang|Jineun Kim|Hyunjin Park|Tae Ho Kim,10.1107/S2056989015011524,https://doaj.org/article/b998908e67db4bb1bc0ff95081159d7b,01/07/2015,EN,"crystal structure|oxadiargyl|1,3,4-oxadiazolone|herbicide|hydrogen bonding|Cl...Cl short contacts|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o494-o494 (2015)",CC BY +"Crystal structure of (2-hydroxy-5-methylphenyl)(3-methyl-1-phenyl-1H-pyrazolo[3,4-b]pyridin-5-yl)methanone",Rajamani Raja|Nataraj Poomathi|Paramasivam T. Perumal|A. SubbiahPandi,10.1107/S2056989015011597,https://doaj.org/article/421e470aee9245bb820bce64426795cc,01/07/2015,EN,crystal structure|pyrazoles|propenones|pyrazolopyridine|intramolecular hydrogen bonding|π–π interactions|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o501-o502 (2015)",CC BY +Crystal structure of 4-methylbenzyl N′-[(thiophen-2-yl)methylidene]hydrazinecarbodithioate,Syahirah binti Ramli|Thahira Begum S. A. Ravoof|Mohamed Ibrahim Mohamed Tahir|Edward R. T. Tiekink,10.1107/S205698901501107X,https://doaj.org/article/1e5b6831bf98461d95674b2b64989bfa,01/07/2015,EN,crystal structure|hydrogen bonding|dithiocarbazate|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o475-o476 (2015)",CC BY +Crystal structure of cis-anti-cis-dicyclohexane-18-crown-6 acetonitrile disolvate,Alexander Nazarenko,10.1107/S2056989015011056,https://doaj.org/article/062fba8ca8034461a20512582b2c2965,01/07/2015,EN,crystal structure|dicyclohexane-18-crown-6|crown ether|acetonitrile|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o472-o473 (2015)",CC BY +Crystal structure of 3-acetoxy-2-methylbenzoic acid,Matheswaran Saranya|Annamalai Subashini|Chidambaram Arunagiri|Packianathan Thomas Muthiah,10.1107/S2056989015010865,https://doaj.org/article/6d7061fed8ec4940aad3a38d74d2763b,01/07/2015,EN,crystal structure|ester|acetoxy|benzoic acid|hydrogen bonding|graph-set motifs|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o474-o474 (2015)",CC BY +"Crystal structure of 15,16-epoxy-7β,9α-dihydroxylabdane-13(16),14-dien-6-one",Vikram Dev Singh|Kamni|Musarat Amina|Nawal Al-Musayeib|Sumati Anthal|Rajni Kant,10.1107/S2056989015011214,https://doaj.org/article/d60813d1c38b4417a8d6c60eb7df5c43,01/07/2015,EN,"crystal structure|15,16-epoxy-7β,9α-dihydroxylabdane-13(16),14-dien-6-one|otostegiafruticosa|biological activity|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o483-o484 (2015)",CC BY +"Crystal structure of (E)-5,5-dimethyl-2-[3-(4-nitrophenyl)allylidene]cyclohexane-1,3-dione",Jae Kyun Lee|Sun-Joon Min|Yong Seo Cho|Jang Hyuk Kwon|Junghwan Park,10.1107/S2056989015011172,https://doaj.org/article/0b201c12fb7b4d3eba17cd2f040ac21a,01/07/2015,EN,"crystal structure|cyclohexane-1,3-dione|dimedone|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o485-o486 (2015)",CC BY +"Crystal structure of 1,2-dibenzoylacenaphthylene",Fred H. Greenberg|Alexander Y. Nazarenko,10.1107/S2056989015011160,https://doaj.org/article/9d1bf1b736e14effac5d22a98d89e8d8,01/07/2015,EN,"crystal structure|1,2-dibenzoylacenaphthylene|crystal packing|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o487-o488 (2015)",CC BY +"Crystal structure of ethyl 2-acetyl-3,7-dimethyl-5-(thiophen-2-yl)-5H-thiazolo[3,2-a]pyrimidine-6-carboxylate",N. L. Prasad|M. S. Krishnamurthy|Noor Shahina Begum,10.1107/S2056989015010981,https://doaj.org/article/d0686fddb22344abb2d1b1eed17ff207,01/07/2015,EN,crystal structure|fused pyrimidine derivative|hydrogen bonding|C—H...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o477-o478 (2015)",CC BY +"Crystal structure of 2-amino-4,6-dimethoxypyrimidinium thiophene-2-carboxylate",Ammaiyappan Rajam|P.T. Muthiah|Ray J. Butcher|Jerry P. Jasinski,10.1107/S2056989015010907,https://doaj.org/article/d60e611bdf95405f84df8e13a0d46d55,01/07/2015,EN,crystal structure|crystal salts|hydrogen-bonding patterns|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o479-o480 (2015)",CC BY +Crystal structure of (6-bromo-2-oxo-2H-chromen-4-yl)methyl morpholine-4-carbodithioate,K. Mahesh Kumar|K. R. Roopashree|M. Vinduvahini|O. Kotresh|H. C. Devarajegowda,10.1107/S2056989015011007,https://doaj.org/article/5d732ad61ce74e718e782dd43034c290,01/07/2015,EN,crystal structure|coumarins|dithiocarbamates|biological applications|hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o489-o490 (2015)",CC BY +"Crystal structure of 2-diazoimidazole-4,5-dicarbonitrile",Damon A. Parrish|Stephanie Kramer|G. Kenneth Windler|David E. Chavez|Philip W. Leonard,10.1107/S2056989015010944,https://doaj.org/article/5560dcf58eba4bf190e7d0e85fe935c8,01/07/2015,EN,crystal structure|diazo|imidazole|carbonitrile|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o491-o491 (2015)",CC BY +Crystal structure of 3-amino-1-(4-chlorophenyl)-1H-benzo[f]chromene-2-carbonitrile,Mehmet Akkurt|Peter N. Horton|Shaaban K. Mohamed|Sabry H. H. Younes|Mustafa R. Albayati,10.1107/S2056989015011159,https://doaj.org/article/8e882b73ce7a4ffda481c6cad81653bc,01/07/2015,EN,crystal structure|chromene compounds|N—H...N hydrogen bonds|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o481-o482 (2015)",CC BY +Crystal structure of 3-amino-1-(4-methoxyphenyl)-1H-benzo[f]chromene-2-carbonitrile,Shaaban K. Mohamed|Peter N. Horton|Mehmet Akkurt|Sabry H. H. Younes|Mustafa R. Albayati,10.1107/S2056989015011020,https://doaj.org/article/6a2248ed1351449b9f30c1bf5c5184b4,01/07/2015,EN,crystal structure|chromene compounds|benzochromene|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o468-o469 (2015)",CC BY +Crystal structure of azimsulfuron,Youngeun Jeon|Jineun Kim|Eunjin Kwon|Tae Ho Kim,10.1107/S2056989015010968,https://doaj.org/article/f79f412c06ab4adb8a626373bbe3f978,01/07/2015,EN,crystal structure|azimsulfuron|hydrogen bonding|herbicide|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o470-o471 (2015)",CC BY +Crystal structure of pymetrozine,Youngeun Jeon|Jineun Kim|Gihaeng Kang|Tae Ho Kim,10.1107/S2056989015010804,https://doaj.org/article/01c5e723eab5465086881ee468710b85,01/07/2015,EN,crystal structure|pymetrozine|triazinone|insecticide|antifeedant|hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o461-o462 (2015)",CC BY +Crystal structure of the pyridine–diiodine (1/1) adduct,Matti Tuikka|Matti Haukka,10.1107/S2056989015010518,https://doaj.org/article/4919c7929618421db009cc5d824332c3,01/07/2015,EN,pyridine|diiodine|halogen bonding|crystal structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o463-o463 (2015)",CC BY +Crystal structure of 2-cyano-N-(furan-2-ylmethyl)acetamide,Shivanna Subhadramma|Budanur Papaiah Siddaraju|Chandra Naveen|Janardhanan Saravanan|Dasararaju Gayathri,10.1107/S2056989015010488,https://doaj.org/article/15b443fc41564671be9d9d750e641759,01/07/2015,EN,crystal structure|furan|acetamide|cyano|bifurcated hydrogen bonding.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o455-o456 (2015)",CC BY +"Crystal structure of (E)-1,2-bis(4-bromo-2,6-difluorophenyl)diazene",Johannes Broichhagen|David H. Woodmansee|Dirk Trauner|Peter Mayer,10.1107/S2056989015010622,https://doaj.org/article/4551d33a722e4df286983355441bb2c5,01/07/2015,EN,crystal structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o459-o460 (2015)",CC BY +"Crystal structure of 16-hydroxy-4,4,10,13,14-pentamethyl-17-(6-methylhept-5-en-2-yl)-4,5,6,9,10,11,12,13,14,15,16,17-dodecahydro-1H-cyclopenta[a]phenanthren-3(2H)-one",Jun-Jun Ge|Pian Chen|Xiao-Xia Ye,10.1107/S2056989015010592,https://doaj.org/article/2e5280c6082d4fb0af1f53a78e620d8b,01/07/2015,EN,crystal structure|triterpenoid|Melia azedarach|O—H...O hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o464-o465 (2015)",CC BY +Crystal structure of 2-{[2-methoxy-5-(trifluoromethyl)phenyl]iminomethyl}-4-nitrophenol,Nevzat Karadayı|Songül Şahin|Yavuz Köysal|Emine Coşkun|Orhan Büyükgüngör,10.1107/S2056989015010129,https://doaj.org/article/77d92b4e116b4e1cb5231549442715c8,01/07/2015,EN,crystal structure|Schiff base|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o466-o467 (2015)",CC BY +Crystal structure of obscurine: a natural product isolated from the stem bark of B. obscura,Bruno N. Lenta|Rodolphe J. Chouna|Beate Neumann|Hans-Georg Stammler|Norbert Sewald,10.1107/S2056989015010567,https://doaj.org/article/ebfe2a221f42442aba72dae2298b1cc9,01/07/2015,EN,crystal structure|obscurine|octahydronaphthalene|benzodioxole|isobutylacrylamide|N—H...O hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o457-o458 (2015)",CC BY +"Crystal structure of 3,4-dichloroanilinium hydrogen phthalate",Muhammad Shahid|Muhammad Nawaz Tahir|Muhammad Salim|Munawar Ali Munawar,10.1107/S2056989015010300,https://doaj.org/article/07bdd09cf514489695078d976a97e6e3,01/07/2015,EN,crystal structure|hydrogen phthalate|hydrogen bonding|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o446-o446 (2015)",CC BY +"Crystal structure of (1R,4R)-tert-butyl 3-oxo-2-oxa-5-azabicyclo[2.2.2]octane-5-carboxylate",Suvratha Krishnamurthy|Venkataprasad Jalli|Tarun Chand Vagvala|Tetsuji Moriguchi|Akihiko Tsuge,10.1107/S2056989015010476,https://doaj.org/article/0d8d782608244f959223154955383007,01/07/2015,EN,"crystal structure|(1R,4R)- aza-oxa bicyclic chiral lactone|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o449-o450 (2015)",CC BY +"Crystal structure of ethyl 4-(2-methoxyphenyl)-6-methyl-2-sulfanylidene-1,2,3,4-tetrahydropyrimidine-5-carboxylate",Shaaban K. Mohamed|Joel T. Mague|Mehmet Akkurt|Ahmed Khodairy|Eman A. Ahmed,10.1107/S2056989015010026,https://doaj.org/article/3dafabcbcebb4cb8828759a5aa27300c,01/07/2015,EN,crystal structure|Biginelli reactions|dihyropyrimidinones|three-component reactions|N—H...S interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o444-o445 (2015)",CC BY +Crystal structure of benzyl 3-oxo-2-oxa-5-azabicyclo[2.2.1]heptane-5-carboxylate,Suvratha Krishnamurthy|Venkataprasad Jalli|Tarun Chand Vagvala|Tetsuji Moriguchi|Akihiko Tsuge,10.1107/S2056989015010464,https://doaj.org/article/764c79d0788f40dda4b9268a8ddef7a6,01/07/2015,EN,crystal structure|4-hydroxyproline|C—H...O interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o447-o448 (2015)",CC BY +"Crystal structure of 6-amino-4-(3-bromo-4-methoxyphenyl)-3-methyl-2,4-dihydropyrano[2,3-c]pyrazole-5-carbonitrile dimethyl sulfoxide monosolvate",Sammer Yousuf|Huma Bano|Munira Taj Muhammad|Khalid Mohammed Khan,10.1107/S2056989015010543,https://doaj.org/article/f24e92ecede74e6cb8ff9b1bef1e2667,01/07/2015,EN,crystal structure|pyrazole derivative|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o453-o454 (2015)",CC BY +"Cystal structure of N-[2-(benzo[d][1,3]dioxol-5-yl)ethyl]-4-methylbenzenesulfonamide",Ke-Bin Huang|Gui-Jie Zhang,10.1107/S2056989015010555,https://doaj.org/article/4ee7125eb7534068a54ba204a2b466e8,01/07/2015,EN,crystal structure|methylbenzenesulfonamide derivatives|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o452-o452 (2015)",CC BY +Crystal structure of 2-methyl-3-nitrobenzoic anhydride,Rodolfo Moreno-Fuquen|Alexis Azcárate|Alan R. Kennedy,10.1107/S2056989015010531,https://doaj.org/article/9c0725818845482a9f552a527aab68e0,01/07/2015,EN,crystal structure|benzoic acid derivative|anhydrous compound|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o451-o451 (2015)",CC BY +Redetermined structure of gossypol (P3 polymorph),Muhabbat Honkeldieva|Rishad Kunafiev|Hayrullo I. Hamidov,10.1107/S205698901500941X,https://doaj.org/article/577cb7ead9f9462c97fc2b0c55f72549,01/07/2015,EN,crystal structure|redetermination|gossypol|polymorph|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o442-o443 (2015)",CC BY +"Crystal structure of 1-[(2,4,6-triisopropylphenyl)sulfonyl]aziridine",Lena Knauer|Christopher Golz|Carsten Strohmann,10.1107/S2056989015010221,https://doaj.org/article/9ee73099e2334fe8a935492d93dc94d1,01/07/2015,EN,crystal structure|aziridine|triisopropylbenzenesulfonyl|consecutive ring-opening reactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o438-o439 (2015)",CC BY +Crystal structure of catena-poly[[[triaquastrontium]-di-μ2-glycinato] dibromide],Palanisamy Revathi|Thangavelu Balakrishnan|Kandasamy Ramamurthi|Subbiah Thamotharan,10.1107/S2056989015012219,https://doaj.org/article/fef94260fd1a4fb5a2c5b63225854c66,01/07/2015,EN,crystal structure|glycine|strontium|N/O—H...Br/O hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 875-878 (2015)",CC BY +Redetermination of the crystal structure of β-zinc molybdate from single-crystal X-ray diffraction data,Olfa Mtioui-Sghaier|Rafael Mendoza-Meroño|Lilia Ktari|Mohamed Dammak|Santiago García-Granda,10.1107/S205698901501186X,https://doaj.org/article/51780584bd254084acb0d26f35b33819,01/07/2015,EN,crystal structure|redetermination|β-ZnMoO4|hydrothermal synthesis|wolframite structure type|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp i6-i7 (2015)",CC BY +"Crystal structure of [NaZn(BTC)(H2O)4]·1.5H2O (BTC = benzene-1,3,5-tricarboxylate): a heterometallic coordination compound",Min Ni|Quanle Li|Hao Chen|Shengqing Li,10.1107/S2056989015012001,https://doaj.org/article/ff0915cce60443a58c59f40891a07c7b,01/07/2015,EN,"crystal structure|heterometallic coordination compound|benzene-1,3,5-tricarboxylic acid|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp m143-m144 (2015)",CC BY +"Crystal structure of (4Z)-4-[(dimethylamino)methylidene]-3,5-dioxo-2-phenylpyrazolidine-1-carbaldehyde",Joel T. Mague|Shaaban K. Mohamed|Mehmet Akkurt|Eman A. Ahmed|Ahmed Khodairy,10.1107/S2056989015010038,https://doaj.org/article/8ec63411c5cb4dd4b03c6f51bcf0a6a1,01/07/2015,EN,crystal structure|pyrazolones|short intramolecular C—H...O contact|C—H...O hydrogen bonds|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp o440-o441 (2015)",CC BY +"Crystal structure of catena-poly[[diaquacobalt(II)]-bis[μ-5-(4-carboxyylatophenyl)picolinato]-κ3N,O2:O5;κ3O5:N,O2-[diaquacobalt(II)]-μ-1-[4-(1H-imidazol-1-yl)phenyl]-1H-imidazole-κ2N3:N3′]",Guo-Wang Xu|Ye-Nan Wang|Hai-Bing Wang|Zhong-Long Wang,10.1107/S2056989015012190,https://doaj.org/article/2ca88f6a3da54f77b4d73d52385f8b22,01/07/2015,EN,crystal structure|5-(4-carboxyphenyl)picolinate|1-[4-(1H-imidazol-1-yl)phenyl]-1H-imidazole|one-dimensional coordination polymer|cobalt(II) complex|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp m145-m146 (2015)",CC BY +"Crystal structure of a second polymorph of 2-cyclopentadienyl-1,7-dicarba-2-cobalta-closo-dodecaborane(11)",Wing Y. Man|Georgina M. Rosair|Alan J. Welch,10.1107/S2056989015011445,https://doaj.org/article/f0a972bdf99d4f48b13ba2370080870c,01/07/2015,EN,metallacarborane|polymorph|crystal structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp m141-m142 (2015)",CC BY +"Crystal structure of 5-amino-4H-1,2,4-triazol-1-ium pyrazine-2-carboxylate: an unexpected salt arising from the decarboxylation of both precursors",José A. Fernandes|Bing Liu|João P. C. Tomé|Luís Cunha-Silva|Filipe A. Almeida Paz,10.1107/S205698901501172X,https://doaj.org/article/fa0bdd9cec9c4e958cc6eb55ab5e89ac,01/07/2015,EN,crystal structure|ionothermal synthesis|decarboxylation|triazolium salt|hydrogen bonding|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 840-843 (2015)",CC BY +Crystal structure of 6-bromo-7-fluoro-4-oxo-4H-chromene-3-carbaldehyde,Yoshinobu Ishikawa,10.1107/S2056989015011871,https://doaj.org/article/e4142eecba774bd2a974f24f7280123c,01/07/2015,EN,crystal structure|chromone|hydrogen bonding|halogen interaction|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 857-860 (2015)",CC BY +"Crystal structure of 4-({5-[(E)-(3,5-difluorophenyl)diazenyl]-2-hydroxybenzylidene}amino)-2,2,6,6-tetramethylpiperidin-1-oxyl",Ramazan Tatsız|Veli T. Kasumov|Tuncay Tunc|Tuncer Hökelek,10.1107/S2056989015012049,https://doaj.org/article/870973bda2da4efa8e0030328453bbaa,01/07/2015,EN,crystal structure|spin-labeled compounds|Schiff base compounds|hydrogen bonding|π–π stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 864-866 (2015)",CC BY +Crystal structure of catena-poly[[tetraaquamagnesium]-μ-(dihydrogen hypodiphosphato)-κ2O:O′],Mimoza Gjikaj|Madeline Haase,10.1107/S2056989015012037,https://doaj.org/article/4359d849e8324bbdacf6f7c470ba809e,01/07/2015,EN,crystal structure|hydrogen bonding|chain structure|hypodiphosphate|magnesium|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 867-869 (2015)",CC BY +"Crystal structures of 4-chloropyridine-2-carbonitrile and 6-chloropyridine-2-carbonitrile exhibit different intermolecular π-stacking, C—H...Nnitrile and C—H...Npyridine interactions",Matthew J. Montgomery|Thomas J. O'Connor|Joseph M. Tanski,10.1107/S2056989015011767,https://doaj.org/article/8f71460c12364b6faa87390a4d5ea65e,01/07/2015,EN,crystal structure|chlorocyanopyridine|π-stacking|C—H...N interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 852-856 (2015)",CC BY +Crystal structure of cis-2-(2-carboxycyclopropyl)glycine (CCG-III) monohydrate,Sergey Lindeman|Nathaniel J. Wallock|William A. Donaldson,10.1107/S2056989015011500,https://doaj.org/article/27808d4f3fbc4f4d943c789c579fbb15,01/07/2015,EN,crystal structure|cyclopropane|conformationally restricted glutamate analog|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 844-846 (2015)",CC BY +"Crystal structure of orthorhombic {bis[(pyridin-2-yl)methyl](3,5,5,5-tetrachloropentyl)amine-κ3N,N′,N′′}chloridocopper(II) perchlorate",Katherine A. Bussey|Annie R. Cavalier|Jennifer R. Connell|Margaret E. Mraz|Kayode D. Oshin|Tomislav Pintauer|Danielle L. Gray|Sean Parkin,10.1107/S2056989015011792,https://doaj.org/article/cf6a7c524a284a59a902c95fa5fe8382,01/07/2015,EN,crystal structure|four-coordinate copper(II)|hetero-scorpionate complex|Atom Transfer Radical Addition (ATRA) reactions|disorder in cation and counter-ion|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 847-851 (2015)",CC BY +"Crystal structure of 4-hydroxypyridin-1-ium 3,5-dicarboxybenzoate",Selena L. Staun|Allen G. Oliver,10.1107/S2056989015011780,https://doaj.org/article/a54ba0a6d441428e9f3edfb4c5ddd99c,01/07/2015,EN,"crystal structure|4-hydroxypyridin-1-ium|3,5-dicarboxybenzoate|hydrogen bonding|cocrystal|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 861-863 (2015)",CC BY +"The crystal structure of 4′-{4-[(2,2,5,5-tetramethyl-N-oxyl-3-pyrrolin-3-yl)ethynyl]phenyl}-2,2′:6′,2′′-terpyridine",Andreas Meyer|Jennifer Wiecek|Gregor Schnakenburg|Olav Schiemann,10.1107/S2056989015012086,https://doaj.org/article/15be93787f1346a99a48653979a060b5,01/07/2015,EN,crystal structure|terpyridine|nitroxide|nitroxyl|C—H...π interactions|π–π interactions|C—H...O hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 870-874 (2015)",CC BY +Crystal structure of a new homochiral one-dimensional zincophosphate containing l-methionine,Nadjet Chouat|Mohammed Abdelkrim Hasnaoui|Mohamed Sassi|Abdelkader Bengueddach|Gigliola Lusvardi|Andrea Cornia,10.1107/S2056989015011561,https://doaj.org/article/788f5d49e9814a889d327ea5e4cd4073,01/07/2015,EN,crystal structure|hydrothermal synthesis|zincophosphates|methionine|hybrid materials|homochiral structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 832-835 (2015)",CC BY +Crystal structure of alluaudite-type NaMg3(HPO4)2(PO4),Ahmed Ould Saleck|Abderrazzak Assani|Mohamed Saadi|Cyrille Mercier|Claudine Follet|Lahcen El Ammari,10.1107/S205698901501155X,https://doaj.org/article/ca13d78407ab4dd8b740faa5996d94c2,01/07/2015,EN,crystal structure|transition metal phosphates|alluaudite structure type|hydrothermal synthesis|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 813-815 (2015)",CC BY +"Crystal structure of 4,4′-diethynylbiphenyl",Tei Tagg|C. John McAdam|Brian H. Robinson|Jim Simpson,10.1107/S2056989015011494,https://doaj.org/article/8344202ea3a14dd7bdd5e0857c76b002,01/07/2015,EN,"crystal structure|4,4′-diethynylbiphenyl|C—H...π(ring) interactions|C[triple-bond]C—H...π contacts|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 816-820 (2015)",CC BY +Crystal structure of 2-(4-tert-butylphenyl)-3-hydroxy-4H-chromen-4-one,Fuka Narita|Akihiro Takura|Takashi Fujihara,10.1107/S2056989015011482,https://doaj.org/article/78649918e8354db2a481c9d43a22a3f8,01/07/2015,EN,crystal structure|flavonol|hydrogen bonding|fluorescent material|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 824-826 (2015)",CC BY +Crystal structure of bis(N-methyl-N-phenylamino)trisulfane,George Barany|Matthew J. Henley|Lauren A. Polski|Alayne L. Schroll|Victor G. Young Jr,10.1107/S2056989015011342,https://doaj.org/article/a6c32083b2bf432abf11a3e2d188005f,01/07/2015,EN,crystal structure|trisulfane|organosulfur compounds|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 836-839 (2015)",CC BY +Crystal structure of metronidazolium tetrachloridoaurate(III),Patrick J. Quinlivan|Ja-Shin Wu|Rita K. Upmacis,10.1107/S2056989015010798,https://doaj.org/article/8602a7f6372d485e9952c13ab2e22cba,01/07/2015,EN,crystal structure|gold|metronidazole|flagyl|tetrachloridoaurate(III)|O—H...Cl hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 810-812 (2015)",CC BY +"Crystal structure of ethyl 6-chloromethyl-2-oxo-4-(2,3,4-trimethoxyphenyl)-1,2,3,4-tetrahydropyrimidine-5-carboxylate",M. Suresh|M. Syed Ali Padusha|J. Josephine Novina|G. Vasuki|Vijayan Viswanathan|Devadasan Velmurugan,10.1107/S2056989015011688,https://doaj.org/article/4f39546ee1b8466e988db704a9267ea1,01/07/2015,EN,crystal structure|conformation|dihydropyrimidine|ring motif|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 821-823 (2015)",CC BY +Crystal structures of two triazola-dioxola-benzenacyclononaphanes,Vijayan Viswanathan|Naga Siva Rao|Raghavachary Raghunathan|Devadasan Velmurugan,10.1107/S205698901501141X,https://doaj.org/article/2ecf17865f1b4d7490c93819975a29a7,01/07/2015,EN,crystal structure|triazole|dioxalabenzenacyclononaphane|pyrrolizine|pyrrolothiazole|tetrahydrodurodioxole|chiral|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 827-831 (2015)",CC BY +`Pd20Sn13' revisited: crystal structure of Pd6.69Sn4.31,Wilhelm Klein|Hanpeng Jin|Viktor Hlukhyy|Thomas F. Fässler,10.1107/S2056989015011366,https://doaj.org/article/4d649b2566c3478488bf0c67034dc170,01/07/2015,EN,crystal structure|redetermination|system Pd–Sn|defect variant of the AlB2 structure type|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 807-809 (2015)",CC BY +Crystal structures of deuterated sodium molybdate dihydrate and sodium tungstate dihydrate from time-of-flight neutron powder diffraction,A. Dominic Fortes,10.1107/S2056989015011354,https://doaj.org/article/ab4abca1c19e41bc9f69d92e0decea65,01/07/2015,EN,neutron powder diffraction|sodium molybdate dihydrate|sodium tungstate dihydrate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 799-806 (2015)",CC BY +Crystal structure of (E)-N-{2-[2-(2-chlorobenzylidene)hydrazin-1-yl]-2-oxoethyl}-4-methylbenzamide monohydrate,H. Purandara|Sabine Foro|B. Thimme Gowda,10.1107/S2056989015011147,https://doaj.org/article/2114d4a1241b4a1f86391de8b7d161aa,01/07/2015,EN,crystal structure|glycinyl hydrazone|monohydrate|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 795-798 (2015)",CC BY +"Crystal structure of 3-(thiophen-2-yl)-5-p-tolyl-4,5-dihydro-1H-pyrazole-1-carbothioamide",S. Naveen|G. Pavithra|Muneer Abdoh|K. Ajay Kumar|Ismail Warad|N. K. Lokanath,10.1107/S2056989015010774,https://doaj.org/article/d7622bef96064e799ffe383ac5e9bad7,01/07/2015,EN,crystal structure|pyrazole|thiophene|carbothioamide|C—H...S hydrogen bonds|N—H...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 763-765 (2015)",CC BY +"Crystal structure of 1,10-phenanthrolinium 3-hydroxy-2,4,6-trinitrophenolate",Selvarasu Muthulakshmi|Doraisamyraja Kalaivani,10.1107/S2056989015010737,https://doaj.org/article/9384aac7d4ef486f942b6ac87a50006f,01/07/2015,EN,crystal structure|spectroscopic characterization|sensitivity test|thermal testing|high energy density material|IHDEM|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 783-785 (2015)",CC BY +"Crystal structures of two 6-(2-hydroxybenzoyl)-5H-thiazolo[3,2-a]pyrimidin-5-ones",Ligia R. Gomes|John Nicolson Low|Fernando Cagide|Fernanda Borges,10.1107/S2056989015011044,https://doaj.org/article/d8710146da9a4a6f8819907f781a5507,01/07/2015,EN,crystal structure|thiazole|conformation|supramolecular structure|hydrogen bonding|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 766-771 (2015)",CC BY +"Crystal structure of trans-(1,8-dibutyl-1,3,6,8,10,13-hexaazacyclotetradecane-κ4N3,N6,N10,N13)bis(thiocyanato-κN)nickel(II) from synchrotron data",Dae-Woong Kim|Jong Jin Kim|Jong Won Shin|Jin Hong Kim|Dohyun Moon,10.1107/S205698901501110X,https://doaj.org/article/d356944f18dd4d708b68fd63ca43beaf,01/07/2015,EN,crystal structure|azamacrocyclic ligand|Jahn–Teller distortion|sodium thiocyanate|hydrogen bonding|synchrotron data|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 779-782 (2015)",CC BY +Double salt crystal structure of nonasodium dihydrogen nonavanadoplatinate(IV) trihydrogen nonavanadoplatinate(IV) tetracontahydrate: stepwise-protonated nonavanadoplatinate(IV),Hea-Chung Joo|Ki-Min Park|Uk Lee,10.1107/S2056989015010956,https://doaj.org/article/94a45a470fad4a6085db200dcbc21f3e,01/07/2015,EN,crystal structure|protonated nonavanadoplatinate(IV)|heteropolyoxovanadate containing platinum(IV)|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 786-790 (2015)",CC BY +Crystal structure of a mono-bridged calix[4]arene,Shimelis T. Hailu|Ray J. Butcher|Paul F. Hudrlik|Anne M Hudrlik,10.1107/S2056989015010932,https://doaj.org/article/70ee449454aa4c9a9bdce666a07ab028,01/07/2015,EN,crystal structure|calix[4]arene|bridged calix[4]arene|flattened cone conformation|bromopentoxy chain|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 772-775 (2015)",CC BY +Crystal structure of high-spin tetraaquabis(2-chloropyrazine-κN4)iron(II) bis(4-methylbenzenesulfonate),Bohdan O. Golub|Sergii I. Shylin|Sebastian Dechert|Maria L. Malysheva|Il`ya A. Gural`skiy,10.1107/S2056989015010713,https://doaj.org/article/577d1630288241b5916698acd45c4f8d,01/07/2015,EN,crystal structure|iron(II) complex|2-chloropyrazine|hydrogen bonding|π–π contacts|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 776-778 (2015)",CC BY +Crystal structure of a mixed-ligand dinuclear Ba—Zn complex with 2-methoxyethanol having triphenylacetate and chloride bridges,Józef Utko|Maria Sobocińska|Danuta Dobrzyńska|Tadeusz Lis,10.1107/S2056989015011226,https://doaj.org/article/a9ab69448e48432b9a2e39afd4412676,01/07/2015,EN,crystal structure|Ba–Zn dinuclear complex|triphenylacetate ligand|2-methoxyethanol|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 791-794 (2015)",CC BY +"Crystal structure of Sc1.91In1.39Mo15Se19, containing Mo6 and Mo9 clusters",Patrick Gougeon|Philippe Gall|Diala Salloum,10.1107/S2056989015010634,https://doaj.org/article/67533fc8d0c44c55b397be7d4ebe57a6,01/07/2015,EN,crystal structure|Mo clusters|reduced molybdenum selenide|monovalent indium|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 760-762 (2015)",CC BY +"Crystal structures of 4-chlorophenyl N-(3,5-dinitrophenyl)carbamate and phenyl N-(3,5-dinitrophenyl)carbamate",Rajamani Raja|Subramaniyan Sathiyaraj|B. Mohamad Ali|A. Sultan Nasar,10.1107/S2056989015010245,https://doaj.org/article/8306bb343e16412088d319344d703e51,01/07/2015,EN,"crystal structure|carbamate|3,5-dinitrophenylcarbamate|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 744-747 (2015)",CC BY +"Crystal structure of N,N-dimethyl-2-[(4-methylbenzyl)sulfonyl]ethanamine",Alan R. Kennedy|Abedawn I. Khalaf|Fraser J. Scott|Colin J. Suckling,10.1107/S2056989015010233,https://doaj.org/article/2b763972cc1a4f3d8034b78c2db0548d,01/07/2015,EN,crystal structures|sulfone|collagen-induced arthritis|non-classical hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 757-759 (2015)",CC BY +Different hydrogen-bonded chains in the crystal structures of three alkyl N-[(E)-1-(2-benzylidene-1-methylhydrazinyl)-3-hydroxy-1-oxopropan-2-yl]carbamates,Thais C. M. Noguiera|Alessandra C. Pinheiro|James L. Wardell|Marcus V. N. de Souza|Jordan P. Abberley|William T. A. Harrison,10.1107/S2056989015010440,https://doaj.org/article/02715f91529f43bc9cc2abe1089e88dd,01/07/2015,EN,Carbohydrazide|methylation|hydrogen bonds|chain|crystal structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 752-756 (2015)",CC BY +"Crystal structure of the co-crystalline adduct 1,3,6,8-tetraazatricyclo[4.4.1.13,8]dodecane (TATD)–4-chloro-3,5-dimethylphenol (1/1)",Augusto Rivera|Jicli José Rojas|Jaime Ríos-Motta|Michael Bolte,10.1107/S2056989015010257,https://doaj.org/article/feeb3ff9d7e94b38ae4464d66907f638,01/07/2015,EN,crystal structure|co-crystalline adducts|TATD|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 737-740 (2015)",CC BY +"Crystal structure of methyl (S)-2-{(R)-4-[(tert-butoxycarbonyl)amino]-3-oxo-1,2-thiazolidin-2-yl}-3-methylbutanoate: a chemical model for oxidized protein tyrosine phosphatase 1B (PTP1B)",Kasi Viswanatharaju Ruddraraju|Roman Hillebrand|Charles L. Barnes|Kent S. Gates,10.1107/S2056989015010051,https://doaj.org/article/94fdace3892048ed850b047bd0b2e4d7,01/07/2015,EN,crystal structure|isothiazolidine-3-one derivative|oxidized PTP1B|sulfenyl amide|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 741-743 (2015)",CC BY +Crystal structure of (E)-N′-(5-bromo-2-hydroxybenzylidene)nicotinohydrazide monohydrate,S. Sravya|S. Sruthy|N. Aiswarya|M. Sithambaresan|M. R. Prathapachandra Kurup,10.1107/S2056989015009627,https://doaj.org/article/165811b51a484463b97202615a6d2ce3,01/07/2015,EN,crystal structure|aroylhydrazone|carbohydrazide|nicotinohydrazide|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 734-736 (2015)",CC BY +Crystal structure of tetramethyltetrathiafulvalenium (1S)-camphor-10-sulfonate dihydrate,Mathieu Sommer|Magali Allain|Cécile Mézière|Flavia Pop|Michel Giffard,10.1107/S2056989015010294,https://doaj.org/article/9dc6b248bbd5437181aa057c0d88c915,01/07/2015,EN,crystal structure|tetrathiafulvalene-based materials|chirality|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 7, Pp 748-751 (2015)",CC BY +Crystal structure of 5-(4-methylphenyl)-3-[(E)-2-(4-methylphenyl)ethenyl]cyclohex-2-en-1-one,Joel T. Mague|Shaaban K. Mohamed|Mehmet Akkurt|Antar A. Abdelhamid|Mustafa R. Albayati,10.1107/S2056989015008324,https://doaj.org/article/a7215c2880a04b34b6e845781e8f0100,01/06/2015,EN,"crystal structure|cyclohexenenones|α,β-unsaturated ketones|C—H...O interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o436-o437 (2015)",CC BY +Crystal structure of oryzalin,Gihaeng Kang|Jineun Kim|Youngeun Jeon|Tae Ho Kim,10.1107/S205698901500955X,https://doaj.org/article/89067188db224de6ba22459613412009,01/06/2015,EN,crystal structure|oryzalin|sulfonamide|herbicidal properties|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o429-o429 (2015)",CC BY +"Crystal structure of (1E,1′E)-N,N′-(ethane-1,2-diyl)bis[(pyridin-2-yl)methanimine]",Muneer Abdoh|Ismail Warad|S. Naveen|N. K. Lokanath|Rachid Salghi,10.1107/S2056989015010087,https://doaj.org/article/e8ee522252124fd59cfa430adc1b8c46,01/06/2015,EN,"crystal structure|pyridinecarbaldehydes|1,2-diaminopyridine|Schiff base|chelating ligands|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o431-o431 (2015)",CC BY +"Crystal structure of [1,1′-biphenyl]-2,2′-dicarbonitrile",Gihaeng Kang|Tae Ho Kim|Youngeun Jeon|Jineun Kim,10.1107/S2056989015009561,https://doaj.org/article/fcb6d73ea2f542b0814b80731a2b4d94,01/06/2015,EN,crystal structure|biphenyl|π–π contacts|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o430-o430 (2015)",CC BY +"Crystal structure of (E)-4-ethyl-2-(4-methoxybenzylidene)-3,4-dihydronaphthalen-1(2H)-one",Mohamed Akhazzane|Ghali Al Houari|Mohamed El Yazidi|Mohamed Saadi|Lahcen El Ammari,10.1107/S205698901501004X,https://doaj.org/article/c88f0399bd4843699c4caf0851b42165,01/06/2015,EN,"crystal structure|benzylidene|naphthalenone|dipolar 1,3-cycloaddition reactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o432-o432 (2015)",CC BY +Crystal structure of bis(prop-2-yn-1-yl) 5-nitroisophthalate,K. S. Ezhilarasi|Sivasamy Selvarani|Perumal Rajakumar|B. K. Revathi|G. Usha,10.1107/S2056989015009846,https://doaj.org/article/eaaf68cf93d8467e8ec8935177f0279f,01/06/2015,EN,crystal structure|5-nitroisophthalate|prop-2-yn-1-yl|twofold rotation symmetry|C—H...O hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o435-o435 (2015)",CC BY +Crystal structure of (E)-3-allyl-2-sulfanylidene-5-[(thiophen-2-yl)methylidene]thiazolidin-4-one,Rahhal El Ajlaoui|El Mostapha Rakib|Souad Mojahidi|Mohamed Saadi|Lahcen El Ammari,10.1107/S2056989015010166,https://doaj.org/article/5fe3bb3f56194a7da5ef53c98a11e3bd,01/06/2015,EN,crystal structure|rhodanine derivative|2-thioxathiazolidin-4-one|hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o433-o434 (2015)",CC BY +Crystal structure of 1-((1E)-{(E)-2-[(2-hydroxynaphthalen-1-yl)methylidene]hydrazin-1-ylidene}methyl)naphthalen-2-ol,Paranthaman Vijayan|Periasamy Viswanathamurthi|Michel Fleck|Sugumar Paramasivam|Ponnuswamy Mondikalipudur Nanjappagounder,10.1107/S205698901500972X,https://doaj.org/article/8392faddb8d74926a47d5dba90201ebd,01/06/2015,EN,crystal structure|Schiff base derivative|intramolecular hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o428-o428 (2015)",CC BY +Crystal structure of N-carbamothioyl-2-methylbenzamide,Farook Adam|Nadiah Ameram|Wai Mun Tan,10.1107/S2056989015009585,https://doaj.org/article/6eb3af89508b43be8ea92250af9289df,01/06/2015,EN,crystal structure|benzamide|thiourea|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o425-o425 (2015)",CC BY +Crystal structure of (E)-undec-2-enoic acid,Marcel Sonneck|Tim Peppel|Anke Spannenberg|Sebastian Wohlrab,10.1107/S2056989015009469,https://doaj.org/article/9429846c7a754253b9a0414aa8623fb9,01/06/2015,EN,crystal structure|hydrogen bond|dimer|unsaturated carboxylic acid|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o426-o427 (2015)",CC BY +Crystal structure of (4E)-4-(8-methoxy-2H-chromen-2-ylidene)-3-methyl-1-phenyl-1H-pyrazol-5(4H)-one,Muhammad Salim|Munawar Ali Munawar|Muhammad Nawaz Tahir|Muhammad Shahid|Khizar Iqbal Malik,10.1107/S2056989015009445,https://doaj.org/article/bb38034790bd4842be7366030af3a09e,01/06/2015,EN,crystal structure|pyrazolone|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o414-o415 (2015)",CC BY +"Crystal structure of 4-chloro-2-{(E)-[(3,4-dimethylphenyl)imino]methyl}phenol",Muhammad Salim|Muhammad Nawaz Tahir|Munawar Ali Munawar|Muhammad Shahid|Hazoor Ahmad Shad,10.1107/S2056989015009354,https://doaj.org/article/d4374e68070f4bdc825362d326b85d28,01/06/2015,EN,crystal structure|phenol|intramolecular hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o416-o416 (2015)",CC BY +"Crystal structure of 3-(3,4-dimethylanilino)-2-benzofuran-1(3H)-one",Muhammad Salim|Muhammad Nawaz Tahir|Muhammad Shahid|Munawar Ali Munawar,10.1107/S2056989015009299,https://doaj.org/article/f4c12a95cd894f8c86c2018aaead1c99,01/06/2015,EN,crystal structure|2-benzofuranone|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o413-o413 (2015)",CC BY +Crystal structure of 2-{[(5-nitrothiophen-2-yl)methylidene]amino}phenol,Figen Koçak|Hasan Tanak|Erbil Ağar|Onur Erman Doğan|Namık Özdemir,10.1107/S2056989015009202,https://doaj.org/article/1ef15c19957e4c588dbf361fc0756c48,01/06/2015,EN,crystal structure|Schiff bases|phenol|hydrogen bonding|π–π stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o418-o418 (2015)",CC BY +"Crystal structure of 2,2-dimethyl-N-(5-methylpyridin-2-yl)propanamide",Gamal A. El-Hiti|Keith Smith|Amany S. Hegazy|Saud A. Alanazi|Benson M. Kariuki,10.1107/S2056989015009378,https://doaj.org/article/7d2b3befcdff41ffbff49374cbd3154a,01/06/2015,EN,crystal structure|propanamide|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o419-o420 (2015)",CC BY +Crystal structure of p-toluenesulfonylmethyl isocyanide,Huma Bano|Sammer Yousuf,10.1107/S2056989015008816,https://doaj.org/article/e15a35879dfb47e7923dc3d9a7a5fb59,01/06/2015,EN,crystal structure|isocyanide derivative|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o412-o412 (2015)",CC BY +"Crystal structure of (E)-2-benzylidene-4-[(3-phenyl-4,5-dihydroisoxazol-5-yl)methyl]-2H-benzo[b][1,4]thiazin-3(4H)-one",Nada Kheira Sebbar|Mohamed Ellouz|El Mokhtar Essassi|Mohamed Saadi|Lahcen El Ammari,10.1107/S2056989015009755,https://doaj.org/article/02273a16e32140be80949dfde34368e2,01/06/2015,EN,"crystal structure|benzothiazine|dihydroisoxazole|C—H...O,N hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o423-o424 (2015)",CC BY +"Crystal structure of 4-amino-3-(3-methyl-5-phenyl-1H-pyrazol-1-yl)-1H-1,2,4-triazole-5(4H)-thione",Joel T. Mague|Shaaban K. Mohamed|Mehmet Akkurt|Mustafa R. Albayati,10.1107/S205698901500938X,https://doaj.org/article/38288a60f0cd4ceb906b0153f0661669,01/06/2015,EN,crystal structure|aminotriazoles|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o417-o417 (2015)",CC BY +"1-{[(E)-(4-{[(2Z)-2,3-Dihydro-1,3-thiazol-2-ylidene]sulfamoyl}phenyl)iminiumyl]methyl}naphthalen-2-olate",Muhammad Shahid|Muhammad Nawaz Tahir|Muhammad Salim|Munawar Ali Munawar|Hazoor Ahmad Shad,10.1107/S2056989015009640,https://doaj.org/article/3e73da81df944b8a9691b6d3e173635f,01/06/2015,EN,crystal structure|zwitterionic compound|sulfathiazole|hydrogen bonding|C—H...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o421-o422 (2015)",CC BY +Crystal structure of (4Z)-4-[(2E)-3-(2-chlorophenyl)-1-hydroxyprop-2-en-1-ylidene]-3-methyl-1-phenyl-1H-pyrazol-5(4H)-one,Muhammad Shahid|Munawar Ali Munawar|Muhammad Nawaz Tahir|Muhammad Salim|Khizar Iqbal Malik,10.1107/S2056989015009020,https://doaj.org/article/133226dc4355481daf6dc1d831417e49,01/06/2015,EN,crystal structure|pyrazole|hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o407-o408 (2015)",CC BY +"Crystal structure of 3-(3,4,5-trimethoxyphenyl)-1,2,3,4-tetrahydrocyclopenta[b]indole-2-carboxylic acid",Daniara Fernandes|Deborah de Alencar Simoni|Manoel T. Rodrigues Jr|Marilia S. Santos|Fernando Coelho,10.1107/S2056989015008786,https://doaj.org/article/47cb36d298404056acf349766146c0ae,01/06/2015,EN,crystal strycture|indole skeleton|Morita–Baylis–Hillman adduct|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o395-o396 (2015)",CC BY +"Crystal structure of dimethyl 2,5-bis[(diphenoxyphosphoryl)oxy]cyclohexa-1,4-diene-1,4-dicarboxylate",Lei Gao|Zongshan Ma|Hong Yan,10.1107/S2056989015008658,https://doaj.org/article/cbc714970a92435982d5178edca69dac,01/06/2015,EN,"crystal structure|cyclohexa-1,4-diene|C—H...O hydrogen bonds|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o401-o402 (2015)",CC BY +"Crystal structure of 3β-acetoxyandrosta-5,16-dien-17-yl trifluoromethanesulfonate",Shengjun Zhou|Huaqi Huang|Ting Zhang|Dangfeng Wang|Rongbin Huang,10.1107/S2056989015009123,https://doaj.org/article/162ebcaa2ed449b39ad5c36372cea5a5,01/06/2015,EN,"crystal structure|chiral space group|3β-acetoxyandrosta-5,16-dien-17-yl trifluoromethanesulfonate|C—H...O interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o404-o405 (2015)",CC BY +"Crystal structure of 4-amino-2,6-dichlorophenol",Kyle J. McDonald|Vasumathi Desikan|James A. Golen|David R. Manke,10.1107/S2056989015009172,https://doaj.org/article/327b8d550da14e8296570c09980fe9ce,01/06/2015,EN,crystal structure|aminophenols|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o406-o406 (2015)",CC BY +Crystal structure of benzyltriphenylphosphonium chloride monohydrate,Jimmy Ahmad|Siti Nadiah Abdul Halim|Fiona N.-F. How,10.1107/S2056989015009159,https://doaj.org/article/93ac639c7c5a46f08475fc22ba48d925,01/06/2015,EN,crystal structure|benzyltriphenylphosphonium|chloride|hydrogen bonding|C—H... π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o410-o411 (2015)",CC BY +"Crystal structure of N,N′-[(thiophene-2,5-diyl)bis(methanylylidene)]di-p-toluidine",Raina Boyle|Guy Crundwell|Neil M. Glagovich,10.1107/S205698901500849X,https://doaj.org/article/9e3f8501c75a49ccaacc796c7649de2f,01/06/2015,EN,crystal structure|symmetrical diazomethine|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o403-o403 (2015)",CC BY +Crystal structure of 4-benzamido-2-hydroxybenzoic acid,Muhammad Shahid|Muhammad Aziz Choudhary|Arshad Farooq Butt|Muhammad Nawaz Tahir|Muhammad Salim,10.1107/S2056989015009032,https://doaj.org/article/50c603cf667145fda6f36066252ce774,01/06/2015,EN,crystal structure|hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o409-o409 (2015)",CC BY +Redetermined crystal structure of β-dl-methionine at 320 K,Carl Henrik Görbitz|Jan Christian Paulsen|Jon Borgersen,10.1107/S2056989015008749,https://doaj.org/article/c6c3eb5b058e4cf6a4df17f03464027f,01/06/2015,EN,crystal structure|amino acid|phase transition|disorder|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o398-o399 (2015)",CC BY +Crystal structure of tert-butyldiphenylphosphine oxide,George Agbeworvi|Zerihun Assefa|Richard E. Sykora|Jared D. Taylor,10.1107/S2056989015008919,https://doaj.org/article/72a54abeac464081b2f6639886312490,01/06/2015,EN,crystal structure|phosphine oxide|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o400-o400 (2015)",CC BY +Crystal structure of 3-methyl-5-trimethylsilyl-1H-pyrazole,Gregory M. Ferrence|Joshua L. Kocher,10.1107/S2056989015008567,https://doaj.org/article/93125ed2d4d14919b28b8d476f450036,01/06/2015,EN,crystal structure|pyrazole|tertramer|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o397-o397 (2015)",CC BY +Crystal structure of 2-nitro-N-(2-nitrophenyl)benzamide,Rodolfo Moreno-Fuquen|Alexis Azcárate|Alan R. Kennedy,10.1107/S2056989015008695,https://doaj.org/article/1b2b0e246e964d2abc8b3de1ee2bbb27,01/06/2015,EN,crystal structure|benzamide|anticonvulsant properties|antimicrobial properties|inhibitors of diverse enzymes|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o389-o390 (2015)",CC BY +Crystal structure of (4Z)-4-[(2E)-1-hydroxy-3-(naphthalen-2-yl)prop-2-en-1-ylidene]-3-methyl-1-phenyl-1H-pyrazol-5(4H)-one,Muhammad Salim|Munawar Ali Munawar|Muhammad Nawaz Tahir|Muhammad Shahid|Khizar Iqbal Malik,10.1107/S205698901500866X,https://doaj.org/article/db3246fad777491cb6d5d763e59f83f9,01/06/2015,EN,crystal structure|pyrazole|intramolecular hydrogen bonding|π–π stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o381-o381 (2015)",CC BY +"Crystal structure of 1,2-bis[(2-tert-butylphenyl)imino]ethane",Alexandre C. Silvino|Juliana M. Torres,10.1107/S2056989015008610,https://doaj.org/article/f2f02701076b42bab51729f44b58eeb8,01/06/2015,EN,crystal structure|diimine|non-classical hydrogen bonds|DNA|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o385-o386 (2015)",CC BY +"Crystal structure of 14-methyl-11-(3-methylphenyl)-12-oxa-8,14-diazatetracyclo[8.3.3.01,10.02,7]hexadeca-2(7),3,5-triene-9,13-dione",M. P. Savithri|M. Suresh|R. Raghunathan|R. Raja|A. SubbiahPandi,10.1107/S2056989015008129,https://doaj.org/article/72001855529e407d875670ca7c69c2f8,01/06/2015,EN,crystal structure|tetracyclo|hexadecatrienedione|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o379-o380 (2015)",CC BY +Crystal structure of 2-(p-tolyl)-6-(trifluoromethyl)benzo[b]thiophene-3-carbonitrile,N. C. Sandhya|S. Naveen|N. K. Lokanath|S. Ananda,10.1107/S2056989015008671,https://doaj.org/article/445127060ecc44ca847c3efa8ff677cd,01/06/2015,EN,crystal structure|benzo[b]thiophene|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o382-o382 (2015)",CC BY +Crystal structure of 2-(4-chloro-3-fluorophenyl)-1H-benzimidazole,M. S. Krishnamurthy|Noor Shahina Begum,10.1107/S2056989015008683,https://doaj.org/article/1e390fe70f7d42e5908cb90b248ec9c4,01/06/2015,EN,crystal structure|benzimidazole|fluorine-containing compound|hydrogen bonding|C—H...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o387-o388 (2015)",CC BY +Crystal structure of (Z)-2-(5-fluoro-2-oxoindolin-3-ylidene)hydrazinecarbothioamide,Viviane C. D. Bittencourt|Vitor Y. G. Almeida|Davi F. Back|Vanessa C. Gervini|Adriano Bof de Oliveira,10.1107/S2056989015008609,https://doaj.org/article/8b78f41a54b2444bbe73651ca301cf56,01/06/2015,EN,crystal structure|thiosemicarbazone derivative|isatin|two-dimensional hydrogen-bonding network|natural product|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o383-o384 (2015)",CC BY +Crystal structure of dibenzyldimethylsilane,Lena Knauer|Christopher Golz|Ulrike Kroesen|Stephan G. Koller|Carsten Strohmann,10.1107/S2056989015008713,https://doaj.org/article/c195e10a25c04340a9ae2012d5885ff7,01/06/2015,EN,crystal structure|dibenzyldimethylsilane|Bent's rule|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o391-o392 (2015)",CC BY +Crystal structure of (4Z)-4-[(2E)-3-(4-chlorophenyl)-1-hydroxyprop-2-en-1-ylidene]-5-methyl-2-phenyl-1H-pyrazol-5(4H)-one,Muhammad Shahid|Munawar Ali Munawar|Muhammad Nawaz Tahir|Muhammad Salim|Khizar Iqbal Malik,10.1107/S205698901500883X,https://doaj.org/article/5c791239731344daa062d9107c01c438,01/06/2015,EN,crystal structure|intramolecular O—H...O hydrogen bond|C—H...O interactions|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o393-o394 (2015)",CC BY +"Crystal structure of 2-amino-3-ethyl-4,5-dihydro-1,3-thiazol-3-ium 3-chlorobenzoate",Sara Maira M. Hizam|Bohari M. Yamin,10.1107/S2056989015008385,https://doaj.org/article/51e801572a214f409e9fa97e6305348c,01/06/2015,EN,"crystal structure|salt|3-chlorobenzoate anion|2-amino-3-ethyl-4,5-dihydro-1,3-thiazol-3-ium cation|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o378-o378 (2015)",CC BY +Crystal structure of bis[μ-bis(diphenylphosphanyl)methane-κ2P:P′]-μ-chlorido-chlorido-1κCl-(1-phenylthiourea-2κS)disilver acetonitrile hemisolvate,Arunpatcha Nimthong-Roldán|Janejira Ratthiwal|Yupa Wattanakanjana,10.1107/S2056989015008981,https://doaj.org/article/213e350c35c341aa9bcc96fa1df4ed7b,01/06/2015,EN,"crystal structure|silver complex|N,N′-phenylthiourea|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp m133-m134 (2015)",CC BY +"Crystal structure of di-μ-iodido-bis{[1,3-bis(2,6-diisopropylphenyl)imidazol-2-ylidene]lithium}",Hui-Da Wan|Jian-Quan Hong,10.1107/S2056989015009822,https://doaj.org/article/80792d9e19a3488196b120265c1dcde8,01/06/2015,EN,crystal structure|dinuclear lithium complex|imidazol-2-ylidene ligand|catalysis|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp m137-m138 (2015)",CC BY +Crystal structure of 4-methoxyphenyl 2-oxo-2H-chromene-3-carboxylate,H.C. Devarajegowda|P. A. Suchetan|S. Sreenivasa|H. T. Srinivasa|B. S. Palakshamurthy,10.1107/S2056989015006970,https://doaj.org/article/3730bc121c0c46b3bf22bbd7e7b3d119,01/06/2015,EN,crystal structure|2-oxo-2H-chromene|C—H...π interactions|C—H...O interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o374-o375 (2015)",CC BY +"Crystal structure of 2,4-diamino-7-(hydroxymethyl)pteridin-1-ium nitrate",Palaniyappan Sivajeyanthi|Kasthuri Balasubramani|Muthaiah Jeevaraj|Kaliyaperumal Thanigaimani|Nuridayanti Che Khalib|Ibrahim Abdul Razak,10.1107/S2056989015008397,https://doaj.org/article/f3e3e9d803dc4c39a61c4394804fc8d3,01/06/2015,EN,"crystal structure|pteridine|2,4-diaminopteridinium|pteridin-1-ium nitrate|hydrogen bonding|ring motifs|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o376-o377 (2015)",CC BY +Crystal structure of catena-poly[[[diaquacobalt(II)]-bis(μ-hex-3-enedinitrile-κ2N:N′)] bis(tetrafluoridoborate)],Jung-Su Son|Sung-Chul Lim|Hochun Lee|Seung-Tae Hong,10.1107/S2056989015009548,https://doaj.org/article/cbed4c6c47a648c5a822fa7cc0254e3f,01/06/2015,EN,crystal structure|cobalt|hex-3-enedinitrile|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp m135-m136 (2015)",CC BY +"Crystal structure of tetraaquabis(3,5-diamino-4H-1,2,4-triazol-1-ium)cobalt(II) bis[bis(pyridine-2,6-dicarboxylato)cobaltate(II)] dihydrate",Atim Johnson|Justina Mbonu|Zahid Hussain|Wan-Sin Loh|Hoong-Kun Fun,10.1107/S2056989015010014,https://doaj.org/article/c5722b3bcc9844e39291884a82cf65f7,01/06/2015,EN,"crystal structure|pyridine-2,6-dicarboxylate|triazolium|CoII complex|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp m139-m140 (2015)",CC BY +"Crystal structure of 1,3,6,8-tetrabromo-9-ethyl-9H-carbazole",Mykola Bezuglyi|Gintare Grybauskaite|Gintautas Bagdziunas|Juozas Vidas Grazulevicius,10.1107/S2056989015010117,https://doaj.org/article/ad0e621105464900a02aad0eb9f648ab,01/06/2015,EN,crystal structure|carbazole|halogen–halogen contact|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp o373-o373 (2015)",CC BY +Crystal structure of hexaaquadichloridoytterbium(III) chloride,Kevin M. Knopf|Guy Crundwell|Barry L. Westcott,10.1107/S2056989015008488,https://doaj.org/article/eeae1e919c514259b9a9555644cf68c7,01/06/2015,EN,crystal structure|ytterbium(III)|chloride|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp i5-i5 (2015)",CC BY +Crystal structure of methyl (2Z)-3-(4-chlorophenyl)-2-[(3-methyl-1H-indol-1-yl)methyl]prop-2-enoate,S. Selvanayagam|B. Sridhar|S. Kathiravan|R. Raghunathan,10.1107/S2056989015010002,https://doaj.org/article/fb1d203122dc42b9bbe289ac56b77754,01/06/2015,EN,crystal structure|indole|methyl methacrylate|C—H...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 720-722 (2015)",CC BY +"Crystal structure of poly[[μ-1,1′-(butane-1,4-diyl)bis(1H-benzimidazole)-κ2N3:N3′]{μ-4,4′-[1,4-phenylenebis(oxy)]dibenzoato-κ4O,O′:O′′,O′′′}cobalt(II)]",Chen Xie|ChangGe Zheng,10.1107/S2056989015008294,https://doaj.org/article/7d2da890535642ec8f467500ce3805a4,01/06/2015,EN,crystal structure|metal–organic frameworks|bis-benzimidazole|dicarboxylate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp m131-m132 (2015)",CC BY +Crystal structure of 1-ethyl-5-iodoindolin-2-one,Man Zhang|Yu-Xiang Shen|Qi Fang|Lei Wang|Da-Zhi Li,10.1107/S2056989015009937,https://doaj.org/article/25849a758dcb4ccaac2d8cd3e7244b44,01/06/2015,EN,crystal structure|indolinone derivatives|hydrogen bonding|intermolecular interactions|dipole moment|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 712-715 (2015)",CC BY +Crystal structure of seleno-l-cystine dihydrochloride,Carl Henrik Görbitz|Vladimir Levchenko|Jevgenijs Semjonovs|Mohamed Yusuf Sharif,10.1107/S205698901501021X,https://doaj.org/article/32c3290697e241938180a2950ba6f260,01/06/2015,EN,crystal structure|L-cystine analogue|Se—Se bridge|cancer therapy|isotypism|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 726-729 (2015)",CC BY +Crystal structure of poly[[μ-4-(hydroxymethyl)pyridine-κ2N:O][4-(hydroxymethyl)pyridine-κN](μ-thiocyanato-κ2N:S)(thiocyanato-κN)cadmium],Julia Werner|Inke Jess|Christian Näther,10.1107/S2056989015008890,https://doaj.org/article/8a1da1ef984a44b5ab679c1923c986b2,01/06/2015,EN,crystal structure|coordination polymer|cadmium|octahedral coordination|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp m129-m130 (2015)",CC BY +"Crystal structure of bis(1,1,2,2-tetramethyldiphosphane-1,2-dithione-κ2S,S′)copper(I) tetrafluoridoborate",Peter W. R. Corfield|Uwe Seeler,10.1107/S2056989015009913,https://doaj.org/article/201d3220257646cda85cfba052ccd2fd,01/06/2015,EN,crystal structure|diphosphine disulfide|copper|C—H. . F hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 716-719 (2015)",CC BY +"Crystal structure and biological evaluation of 4-methylmorpholin-4-ium 1,3-dimethyl-2,6-dioxo-5-(2,4,6-trinitrophenyl)-1,2,3,6-tetrahydropyrimidin-4-olate",Jeganathan Gomathi|Doraisamyraja Kalaivani,10.1107/S2056989015010075,https://doaj.org/article/9e61f62e1868400588b35494eceb3780,01/06/2015,EN,crystal structure|anticonvulsant activity|hypnotic activity|barbiturate|molecular salt|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 723-725 (2015)",CC BY +Crystal structure of (E)-N-{2-[2-(4-methylbenzylidene)hydrazin-1-yl]-2-oxoethyl}-p-toluenesulfonamide,H. Purandara|Sabine Foro|B. Thimme Gowda,10.1107/S2056989015009330,https://doaj.org/article/aac042553c0e40d88d17d14af67dee85,01/06/2015,EN,crystal structure|p-toluenelsulfonyl|glycinyl|arylhydrazone|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 730-733 (2015)",CC BY +"Crystal structure of poly[diaqua(μ2-benzene-1,4-dicarboxylato-κ2O1:O4)(μ2-benzene-1,4-dicarboxylato-κ4O1,O1′:O4,O4′)bis(μ2-3,3′,5,5′-tetramethyl-4,4′-bipyrazole-κ2N:N′)dinickel(II)]",Chao Wu|Peng Cao,10.1107/S2056989015008415,https://doaj.org/article/ba97cfc45246463bb3269e88c5439c81,01/06/2015,EN,crystal structure|nickel|coordination polymer|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp m127-m128 (2015)",CC BY +"Crystal structure of aqua[(E)-N′-(5-bromo-2-oxidobenzylidene-κO)benzohydrazidato-κ2O,N′]dioxidomolybdenum(VI) dimethylformamide monosolvate",Radhika Sudheer|M. Sithambaresan|N. R. Sajitha|E. Manoj|M. R. Prathapachandra Kurup,10.1107/S2056989015009639,https://doaj.org/article/e1969ba42db145588ef9f39dfbb53d69,01/06/2015,EN,crystal structure|aroyl hydrazone|supramolecular|hydrogen bonding|molybdenum complex|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 702-705 (2015)",CC BY +Crystal structures of coordination polymers from CaI2 and proline,Kevin Lamberts|Ulli Englert,10.1107/S2056989015009597,https://doaj.org/article/f59ebd42d7f54499ae9f736ec33749aa,01/06/2015,EN,crystal structure|amino acid|coordination polymer|calcium|proline|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 675-680 (2015)",CC BY +"Crystal structure of a sodium, zinc and iron(III)-based non-stoichiometric phosphate with an alluaudite-like structure: Na1.67Zn1.67Fe1.33(PO4)3",Jamal Khmiyas|Abderrazzak Assani|Mohamed Saadi|Lahcen El Ammari,10.1107/S2056989015009767,https://doaj.org/article/2dfc3ee6c0d74799b55d52c9b8ef741e,01/06/2015,EN,crystal structure|transition-metal phosphates|solid-state reaction synthesis|alluaudite structure type|Na1.67Zn1.67Fe1.33(PO4)3|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 690-692 (2015)",CC BY +"Crystal structure of triaqua(4-cyanobenzoato-κ2O,O′)(nicotinamide-κN1)zinc 4-cyanobenzoate",Gülçin Şefiye Aşkın|Hacali Necefoğlu|Gamze Yılmaz Nayir|Raziye Çatak Çelik|Tuncer Hökelek,10.1107/S2056989015009743,https://doaj.org/article/4d0971ed31da488aa6f36d2a77c10bbd,01/06/2015,EN,crystal structure|zinc|transition metal complexes|benzoic acid nicotinamide|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 684-686 (2015)",CC BY +Crystal structure of 4-(trimethylgermyl)benzoic acid,Lena Knauer|Eva R. Barth|Christopher Golz|Carsten Strohmann,10.1107/S2056989015009160,https://doaj.org/article/3ca4f7b75f864055b56b3b9690f50457,01/06/2015,EN,crystal structure|4-(trimethylgermyl)benzoic acid|germanium|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 687-689 (2015)",CC BY +"Crystal structure of poly[(2,2′-bipyridine-κ2N,N′)tetrakis(μ-cyanido-κ2N:C)dinickel(II)]",Minghui Zuo|Haiyu Wang|Jie Xu|Lingling Zhu|Shuxin Cui,10.1107/S2056989015009706,https://doaj.org/article/ddae941f7ea54a2ea3e09a8e03127bc6,01/06/2015,EN,"crystal structure|cyanide ligands|nickel|2,2′-bipyridine|coordination polymer|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 709-711 (2015)",CC BY +"Crystal structures of (1,4,7,10-tetraazacyclododecane-κ4N)bis(tricyanomethanido-κN)nickel and (1,4,7,10-tetraazacyclododecane-κ4N)(tricyanomethanido-κN)copper tricyanomethanide",Jun Luo|Xin-Rong Zhang|Li-Juan Qiu|Feng Yang|Bao-Shu Liu,10.1107/S2056989015009524,https://doaj.org/article/ce38c13007da4954bb4c9a2721b9aa82,01/06/2015,EN,"crystal structures|tricyanomethanide|1,4,7,10-tetraazacyclododecane|nickel complex|copper complex|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 693-697 (2015)",CC BY +"Crystal structure of μ-cyanido-1:2κ2N:C-dicyanido-1κC,2κC-bis(quinolin-8-amine-1κ2N,N′)-2-silver(I)-1-silver(II): rare occurrence of a mixed-valence AgI,II compound",Zouaoui Setifi|Sylvain Bernès|Olivier Pérez|Fatima Setifi|Djamil-Azzeddine Rouag,10.1107/S2056989015009664,https://doaj.org/article/c9da421f8f304f7dbd3635788d6f0832,01/06/2015,EN,crystal structure|silver|mixed valency|quinoline|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 698-701 (2015)",CC BY +"Crystal structure of 1,13,14-triazadibenz[a,j]anthracene 1,1,2,2-tetrachloroethane monosolvate",Take-aki Koizumi|Tomohiro Hariu|Yoshihisa Sei,10.1107/S2056989015009263,https://doaj.org/article/788f2bec19ff4ac3b62fcb8f7ea02540,01/06/2015,EN,"crystal structure|1,9,10-anthyridine|hydrogen bonding|π–π stacking|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 681-683 (2015)",CC BY +"Crystal structure of bis{S-hexyl 3-[4-(dimethylamino)benzylidene]dithiocarbazato-κ2N3,S}copper(II)",E. Zangrando|M. S. Begum|R. Miyatake|M. C. Sheikh|Md. M. Hossain,10.1107/S2056989015009342,https://doaj.org/article/01402b7845f044be912eca86470d2c61,01/06/2015,EN,crystal structure|copper(II) complex|dithiocarbazate ligand|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 706-708 (2015)",CC BY +"Crystal structures and hydrogen bonding in the anhydrous tryptaminium salts of the isomeric (2,4-dichlorophenoxy)acetic and (3,5-dichlorophenoxy)acetic acids",Graham Smith|Daniel E. Lynch,10.1107/S205698901500907X,https://doaj.org/article/8c53fb3144a34a7db1dd061abf5fd1b7,01/06/2015,EN,"crystal structure|tryptamine salts|phenoxyacetic acids|herbicides|2,4-D|3,5-D|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 671-674 (2015)",CC BY +"Crystal structure of trans-bis(ethane-1,2-diamine-κ2N,N′)bis(thiocyanato-κN)chromium(III) perchlorate from synchrotron data",Dohyun Moon|Jong-Ha Choi,10.1107/S2056989015009184,https://doaj.org/article/9306b2e3149f4b0f9577a7a89ab6bebb,01/06/2015,EN,"crystal structure|synchrotron radiation|ethane-1,2-diamine|thiocyanate|trans-geometry|chromium(III) complex|hydrogen bonds|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 650-653 (2015)",CC BY +"Crystal structure of aqua{μ-N-[3-(dimethylamino)propyl]-N′-2-(oxidophenyl)oxamidato}(1,10-phenanthroline-5,6-dione)dicopper(II) perchlorate hemihydrate",Xin Zhang|Yan-Tuan Li|Zhi-Yong Wu,10.1107/S2056989015009391,https://doaj.org/article/c8ea0221074c468abc3664d56031a8eb,01/06/2015,EN,"crystal structure|binuclear copper(II) complex|oxamide complex|1,10-phenanthroline-5,6-dione|hydrogen bonding|π–π stacking|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 667-670 (2015)",CC BY +Crystal structures of four indole derivatives as possible cannabinoid allosteric antagonists,Jamie R. Kerr|Laurent Trembleau|John M. D. Storey|James L. Wardell|William T. A. Harrison,10.1107/S2056989015008476,https://doaj.org/article/12c85a141dc14551ad0ab159c626fa72,01/06/2015,EN,crystal structure|indole|cannabinoid allosteric antagonist|N—H...O hydrogen bond|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 654-659 (2015)",CC BY +Crystal structure of NH4[La(SO4)2(H2O)],Meriem Benslimane|Yasmine Kheira Redjel|Hocine Merazig|Jean-Claude Daran,10.1107/S2056989015009457,https://doaj.org/article/031518a31bea40ed95ca039835d64122,01/06/2015,EN,crystal structure|hydrous ternary sulfates|hydrothermal synthesis|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 663-666 (2015)",CC BY +Crystal structure of pentapotassium dihydrogen nonavanadato(V)platinate(IV) nonahydrate,Hea-Chung Joo|Uk Lee,10.1107/S2056989015009135,https://doaj.org/article/8469b381cde445c6a160f1fea4fb5756,01/06/2015,EN,crystal structure|nonavanadoplatinate(IV) polyanion|heteropolyanions|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 647-649 (2015)",CC BY +"Crystal structure of 1-[(6-chloropyridin-3-yl)sulfonyl]-1,2,3,4-tetrahydroquinoline",S. Jeyaseelan|H. R. Rajegowda|R. Britto Dominic Rayan|P. Raghavendra Kumar|B. S. Palakshamurthy,10.1107/S2056989015008099,https://doaj.org/article/907a00dbef8449a898f303b7c043e92e,01/06/2015,EN,"crystal structure|1,2,3,4-tetrahydroquinoline|C—H...O interactions|pharmacological activity|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 660-662 (2015)",CC BY +Crystal structure of the Fe-member of usovite,Matthias Weil,10.1107/S2056989015009251,https://doaj.org/article/630ca87042cd421985198ecea5c46840,01/06/2015,EN,crystal structure|usovite|Fe-containing usovite|disorder|fluorides|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 640-643 (2015)",CC BY +"Crystal structure of CsCrAs2O7, a new member of the diarsenate family",Mohamad Alem Bouhassine|Habib Boughzala,10.1107/S205698901500910X,https://doaj.org/article/9de6a96bc63b48358647e0d90245ea5f,01/06/2015,EN,crystal structure|isotypism|chromium|caesium|diarsenate|channel structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 636-639 (2015)",CC BY +Crystal structure of trans-dichlorido(4-nitroaniline-κN1)(piperidine-κN)platinum(II),Chi Nguyen Thi Thanh|Truong Hoang Van|Thong Pham Van|Ngan Nguyen Bich|Luc Van Meervelt,10.1107/S2056989015009196,https://doaj.org/article/4cef82676302493a83cb12e15f458745,01/06/2015,EN,crystal structure|trans-platinum(II) complexes|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 644-646 (2015)",CC BY +Crystal structures of five (2-chloroquinolin-3-yl)methyl ethers: supramolecular assembly in one and two dimensions mediated by hydrogen bonding and π–π stacking,Haliwana B. V. Sowmya|Tholappanavara H. Suresha Kumara|Nagendrappa Gopalpur|Jerry P. Jasinski|Sean P. Millikan|Hemmige S. Yathirajan|Christopher Glidewell,10.1107/S2056989015008233,https://doaj.org/article/d56b1fcbfe324403b6680503987717fd,01/06/2015,EN,crystal structure|2-chloroquinolines|molecular conformation|hydrogen bonding|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 609-617 (2015)",CC BY +"Crystal structure of 4-[(5-methylisoxazol-3-yl)aminosulfonyl]anilinium 3,5-dinitrosalicylate",Sevaiyan Malathy|Jeyaraman Selvaraj Nirmalram|Packianathan Thomas Muthiah,10.1107/S2056989015008701,https://doaj.org/article/580a6d217a8846de8668692d848b91e3,01/06/2015,EN,"crystal structure|sulfamethoxazolium|3,5-dinitrosalicylate|molecular salt|hydrogen bonding.|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 618-620 (2015)",CC BY +Crystal structures of spinel-type Na2MoO4 and Na2WO4 revisited using neutron powder diffraction,A. Dominic Fortes,10.1107/S2056989015008774,https://doaj.org/article/6daae08d975c413bb64f4615ae40b58c,01/06/2015,EN,neutron powder diffraction|sodium molybdate|sodium tungstate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 592-596 (2015)",CC BY +"Synthèse et étude structrale de lyonsite-type (Na0,4,Li0,6)(Fe,Li2)(MoO4)3",Amira Souilem|Mohamed Faouzi Zid|Ahmed Driss,10.1107/S2056989015008737,https://doaj.org/article/5c2e251af8e6404c898bb9ae4c6de724,01/06/2015,EN,crystal structure|lyonsite-type|monovalent cation molybdate|bond-valence calculations|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 597-601 (2015)",CC BY +Crystal structure of (E)-N-{2-[2-(3-chlorobenzylidene)hydrazinyl]-2-oxoethyl}-4-methylbenzenesulfonamide monohydrate,H. Purandara|Sabine Foro|B. Thimme Gowda,10.1107/S2056989015008506,https://doaj.org/article/390faf059890416698ec49060e6a9c19,01/06/2015,EN,crystal structure|synthesis|arylsulfonyl glycinyl hydrazone|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 602-605 (2015)",CC BY +"Crystal structure of catena-poly[[chlorido(4,4′-dimethyl-2,2′-bipyridine-κ2N,N′)copper(II)]-μ-chlorido]",Rafaela Nita|Jeffrey R. Deschamps|Scott A. Trammell|D. Andrew Knight,10.1107/S2056989015008944,https://doaj.org/article/fcbee9edd8fa4198a83f26da8207b900,01/06/2015,EN,crystal structure|copper bipyridine complex|dehydration|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 624-627 (2015)",CC BY +Isolation of 3-amino-4-nitrobenzyl acetate: evidence of an undisclosed impurity in 5-amino-2-nitrobenzoic acid,Brandon Quillian|Jordan Hendricks|Matthew Trivitayakhun|Clifford W. Padgett,10.1107/S2056989015008750,https://doaj.org/article/0c7f087bfdd448a0b0383a70c81bcf27,01/06/2015,EN,crystal structure|3-amino-4-nitrobenzyl acetate|intramolecular|intermolecular|resonance-assisted hydrogen bonding|5-amino-2-nitrobenzoic acid|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 606-608 (2015)",CC BY +"Crystal structure of barium perchlorate anhydrate, Ba(ClO4)2, from laboratory X-ray powder data",Jeonghoo H. Lee|Ji Hoon Kang|Sung-Chul Lim|Seung-Tae Hong,10.1107/S2056989015008828,https://doaj.org/article/528c5b86a3d04a26bc01c4882ae00039,01/06/2015,EN,crystal structure|powder diffraction|Ba(ClO4)2|barium perchlorate anhydrate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 588-591 (2015)",CC BY +Crystal structure of (2-chloroethyl)[2-(methylsulfanyl)benzyl]ammonium chloride,P. Raghavendra Kumar|Upereti Shailesh|B. S. Palakshamurthy,10.1107/S2056989015008221,https://doaj.org/article/e277c39fe5d04b4e8d2c13374f5dfcbc,01/06/2015,EN,crystal structure|chloroethyl|S and N donors|amine hydrochloride|N—H...Cl hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 621-623 (2015)",CC BY +"Crystal structures of five 1-alkyl-4-aryl-1,2,4-triazol-1-ium halide salts",Marites A. Guino-o|Meghan O. Talbot|Michael M. Slitts|Theresa N. Pham|Maya C. Audi|Daron E. Janzen,10.1107/S2056989015009019,https://doaj.org/article/4d0a0d10e1554a268d56b175e2b6812b,01/06/2015,EN,"crystal structure|1,2,4-triazolium salts|C-H...halide interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 628-635 (2015)",CC BY +Crystal packing in three related disaccharides: precursors to heparan sulfate oligosaccharides,Graeme J. Gainsford|Ralf Schwörer|Peter C. Tyler|Olga V. Zubkova,10.1107/S2056989015008518,https://doaj.org/article/8642ce8d0a834ee98988e6719343e3b7,01/06/2015,EN,crystal structure|disaccharide|Alzheimer's|synthesis|hydrogen bonding|C—H...π contacts|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 582-587 (2015)",CC BY +Crystal structure of (E)-2-hydroxy-4′-methoxyazastilbene,Suchada Chantrapromma|Narissara Kaewmanee|Nawong Boonnak|Kan Chantrapromma|Hazem A. Ghabbour|Hoong-Kun Fun,10.1107/S2056989015008348,https://doaj.org/article/38e95967d5ba437e946aad59f99898f3,01/06/2015,EN,crystal structure|azastilbene|antibacterial|anti-oxidant|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 571-573 (2015)",CC BY +"Crystal structure of an unknown solvate of bis(tetra-n-butylammonium) [N,N′-(4-trifluoromethyl-1,2-phenylene)bis(oxamato)-κ4O,N,N′,O′]nickelate(II)",François Eya'ane Meva|Dieter Schaarschmidt|Tobias Rüffer,10.1107/S205698901500835X,https://doaj.org/article/4e12790ca02c48e18fd47b64e7cd6828,01/06/2015,EN,crystal structure|nickel(II)|oxamate ligand|non-symmetric compound|disorder|SQUEEZE procedure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 578-581 (2015)",CC BY +"Crystal structures of methyl 3-(4-isopropylphenyl)-1-methyl-1,2,3,3a,4,9b-hexahydrothiochromeno[4,3-b]pyrrole-3a-carboxylate, methyl 1-methyl-3-(o-tolyl)-1,2,3,3a,4,9b-hexahydrothiochromeno[4,3-b]pyrrole-3a-carboxylate and methyl 1-methyl-3-(o-tolyl)-3,3a,4,9b-tetrahydro-1H-thiochromeno[4,3-c]isoxazole-3a-carboxylate",R. Raja|M. Suresh|R. Raghunathan|A. SubbiahPandi,10.1107/S2056989015008063,https://doaj.org/article/a9b51399c82e41219d9def8fe6904cfd,01/06/2015,EN,crystal structure|thiochromene|isoxazole|pyrrole|chromenopyrrole|thiopyran|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 6, Pp 574-577 (2015)",CC BY +"Crystal structure of ethyl 2-amino-4-(4-methoxyphenyl)-4H-1-benzothieno[3,2-b]pyran-3-carboxylate",Mohamed Bakhouch|Abdelali Kerbal|Mohamed El Yazidi|Mohamed Saadi|Lahcen El Ammari,10.1107/S2056989015008154,https://doaj.org/article/f5b9b2c7a4944a49b222431ed50abe9d,01/05/2015,EN,crystal structure|thioaurones|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o366-o367 (2015)",CC BY +Crystal structure of 1-{3-acetyl-2-(4-chlorophenyl)-6-hydroxy-4-[(2-hydroxypropyl)amino]-6-methylcyclohex-3-en-1-yl}ethanone,Shaaban K. Mohamed|Joel T. Mague|Mehmet Akkurt|Antar A. Abdelhamid|Mustafa R. Albayati,10.1107/S2056989015008191,https://doaj.org/article/4a2db57406b0479892b477224d7c9cd8,01/05/2015,EN,"crystal structure|1,3-diketones|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o369-o370 (2015)",CC BY +"Crystal structure of 2-butylsulfanyl-4,6-bis[(E)-styryl]pyrimidine",Aijian Wang|Guanghui Li,10.1107/S2056989015008166,https://doaj.org/article/1a841dda3afc4aed99e550d0fed6ce88,01/05/2015,EN,crystal structure|weak interactions|pyrimidine|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o368-o368 (2015)",CC BY +Crystal structure of 4-methyl-N-[2-(piperidin-1-yl)ethyl]benzamide monohydrate,B. K. Revathi|D. Reuben Jonathan|S. Sathya|K. Prathebha|G. Usha,10.1107/S2056989015007653,https://doaj.org/article/807a27c1ca814cff802e03ca13356d81,01/05/2015,EN,crystal structure|piperidine|benzamide|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o359-o360 (2015)",CC BY +Crystal structure of diisopropylaminium dichloroacetate,Wei Sun|Guangzhi Shan,10.1107/S2056989015007586,https://doaj.org/article/f24f32dbd1bb49e482306a3bdbbe607a,01/05/2015,EN,crystal structure|diisopropylamine dichlorocacetate|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o361-o361 (2015)",CC BY +Crystal structure of 2-chloro-3-(dimethoxymethyl)-6-methoxyquinoline,Nanjappa Chandrika|Tholappanavara H. Suresha Kumara|Jerry P. Jasinski|Sean P. Millikan|Hemmige S. Yathirajan|Christopher Glidewell,10.1107/S205698901500804X,https://doaj.org/article/9adf252e50f54797af34cefbebec0f17,01/05/2015,EN,crystal structure|quinolone|pseudosymmetry|twinning|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o364-o365 (2015)",CC BY +Crystal structure of (E)-2-fluorobenzaldehyde (pyridin-2-yl)hydrazone,Haliwana B. V. Sowmya|Tholappanavara H. Suresha Kumara|Jerry P. Jasinski|Sean P. Millikan|Christopher Glidewell,10.1107/S2056989015007823,https://doaj.org/article/e9952e1a12854c4ea65c1bef51caab95,01/05/2015,EN,crystal structure|hydrazine|hydrogen bonding|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o362-o363 (2015)",CC BY +"Crystal structure of (E)-3-(3,4-dimethoxyphenyl)-1-(1-hydroxynaphthalen-2-yl)prop-2-en-1-one",K. S. Ezhilarasi|D. Reuben Jonathan|R. Vasanthi|B. K. Revathi|G. Usha,10.1107/S2056989015008087,https://doaj.org/article/7ebd4fc3fb30467d8ca3a000604cd330,01/05/2015,EN,"crystal structure|1,3-diphenyl-2-propene-1-ones|chalcones|α,β-unsaturated carbonyl system|bifurcated C—H...O hydrogen bonds|O—H...O intramolecular hydrogen bond|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o371-o372 (2015)",CC BY +"Crystal structure of (E)-2-({[2-(1,3-dioxan-2-yl)phenyl]imino}methyl)phenol",Zhengyi Li|Song Shi|Kun Zhou|Liang Chen|Xiaoqiang Sun,10.1107/S2056989015008051,https://doaj.org/article/76a9a81164c64181bab8ab4590b2ea3f,01/05/2015,EN,crystal structure|acetal|Schiff base|intramolecular hydrogen bonding|N—H...O hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o357-o358 (2015)",CC BY +"Crystal structure of bis(3,3-dimethyl-2-oxobutyl)diphenylphosphonium bromide chloroform monosolvate",Alyssa A. Kulesza|Richard J. Staples|Shannon M. Biros,10.1107/S205698901500763X,https://doaj.org/article/f98c0461bc47450c92ec9423c443e8fd,01/05/2015,EN,crystal structure|phosphonium bromide salt|isopropoxydiphenylphosphane|bromopinacolone|Arbuzov reaction|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o339-o340 (2015)",CC BY +"Crystal structure of 4-bromo-2-[(E)-N-(2,2,6,6-tetramethylpiperidin-4-yl)carboximidoyl]phenol dihydrate",Joel T. Mague|Shaaban K. Mohamed|Mehmet Akkurt|Antar A. Abdelhamid|Mustafa R. Albayati,10.1107/S2056989015007471,https://doaj.org/article/6e82762a4f694ea3ba79af9944d348d5,01/05/2015,EN,crystal structure|Schiff bases|piperidines|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o349-o350 (2015)",CC BY +Crystal structure of 2-methyl-N-[(4-methylpyridin-2-yl)carbamothioyl]benzamide,Nadiah Ameram|Farook Adam|Nur Nadia Fatihah|Salih Al-Juaid,10.1107/S2056989015007860,https://doaj.org/article/895cc2230c2d45089c316cebec254187,01/05/2015,EN,crystal structure|carbonyl thiourea|benzamide group|ortho position|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o356-o356 (2015)",CC BY +"Crystal structure of 4′-bromo-2,3,5,6-tetrafluorobiphenyl-4-carbonitrile",Ricarda Heckel|Jürg Hulliger|Anke Schwarzer|Edwin Weber,10.1107/S2056989015007847,https://doaj.org/article/c34de620d11a498fbbede195c9777da0,01/05/2015,EN,crystal structure|biphenyl|tetrafluoro substitution|bromo–cyano substitution|π–πF stacking|halogen interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o347-o348 (2015)",CC BY +Crystal structure of N-(4-chlorophenyl)benzothioamide,Ganlin Zhao,10.1107/S2056989015008075,https://doaj.org/article/632287109fe449a791481e979ebec8cc,01/05/2015,EN,crystal structure|benzothioamide|N—H...S hydrogen bonding.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o353-o353 (2015)",CC BY +"Crystal structure of ethyl 2-(3,5-difluorophenyl)quinoline-4-carboxylate",V. M. Sunitha|S. Naveen|H. R. Manjunath|S. B. Benaka Prasad|V. Manivannan|N. K. Lokanath,10.1107/S2056989015007677,https://doaj.org/article/cd30256b88d3452584892a200bdfd67d,01/05/2015,EN,crystal structure|quinoline derivatives|C—H...O hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o341-o342 (2015)",CC BY +Crystal structure of 9-butyl-6-[2-(pyridin-4-yl)ethenyl]carbazol-3-amine,Ping Zhang|Xiang-Yang Bai|Ting Zhang,10.1107/S2056989015007975,https://doaj.org/article/7e03b3be6f094ddabe892cfec439a8c7,01/05/2015,EN,crystal structure|carbazol-3-amine|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o345-o346 (2015)",CC BY +Crystal structure of 3-bromomethyl-2-chloro-6-(dibromomethyl)quinoline,Kasirajan Gayathri|Palathurai S. Mohan|Judith A. K. Howard|Hazel A. Sparkes,10.1107/S2056989015008002,https://doaj.org/article/21813008ab2c4b219fbb3146c2cca421,01/05/2015,EN,crystal structure|quinoline|bromoquinolines|halogen–halogen contacts|Br...Cl contacts|Br...N contacts|C—H...Br hydrogen bonds|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o354-o355 (2015)",CC BY +"Crystal structure of 1,1′-{(dodecane-1,12-diyl)bis[(azaniumylylidene)methanylylidene]}bis(naphthalen-2-olate)",Kamel Ouari|Moufida Merzougui|Sabrina Bendia|Corinne Bailly,10.1107/S2056989015007938,https://doaj.org/article/8644c4d5504e4f89afffa55743db5c99,01/05/2015,EN,"crystal structure|1,12-diaminododecane|2-hydroxy-1-naphthaldehyde|hydrogen bonds|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o351-o352 (2015)",CC BY +Crystal structure of anagyrine perchlorate,Kambarali K. Turgunov|Shukhrat B. Rakhimov|Valentina I. Vinogradova|Bakhodir Tashkhodjaev,10.1107/S2056989015007781,https://doaj.org/article/517c01d93c314bd2b932d8cf8a6cbe51,01/05/2015,EN,crystal structure|alkaloid|Genista Hispanica|anagyrine|perchlorate|N—H...O hydrogen bonds|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o343-o344 (2015)",CC BY +"Crystal structure of 2-(5-bromo-2-hydroxybenzylidene)-2,3-dihydro-1H-indene-1,3-dione",Joel T. Mague|Shaaban K. Mohamed|Mehmet Akkurt|Antar A. Abdelhamid|Mustafa R. Albayati,10.1107/S2056989015007434,https://doaj.org/article/27ee09bbda504a0a8976828665a69a74,01/05/2015,EN,"crystal structure|3-substituted indan-1,3-diones|hydrogen bonding|π–π interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o324-o325 (2015)",CC BY +Cystal structre of 5-hydroxy-2-nitrobenzaldehyde,Huma Bano|Sammer Yousuf,10.1107/S205698901500701X,https://doaj.org/article/e4e721c597b54853bcbab0303ff01659,01/05/2015,EN,crystal structure|nitro-substituted aromatics|O—H...O hydrogen bonds|C—H...O hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o328-o329 (2015)",CC BY +"Crystal structure of 2-(11-oxo-10H,11H-indeno[1,2-b]chromen-10-yl)-2,3-dihydro-1H-indene-1,3-dione",Joel T. Mague|Shaaban K. Mohamed|Mehmet Akkurt|Antanr A. Abdelhamid|Mustafa R. Albayati,10.1107/S2056989015007495,https://doaj.org/article/a114f44417e44697a1c7c22c48b590e1,01/05/2015,EN,crystal structure|indandiones|chromenes|coumarins|hydrogen bonding|π–π stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o333-o334 (2015)",CC BY +"Crystal structure of ({4-[(4-bromophenyl)ethynyl]-3,5-diethylphenyl}ethynyl)triisopropylsilane",Caiyun Shu|Graeme J. Moxey|Adam Barlow|Mahbod Morshedi,10.1107/S2056989015007252,https://doaj.org/article/61dca10600e647b5bd1e7325efbef79c,01/05/2015,EN,crystal structure|trialkylsilylacetylene|bromoarene|oligo(phenyleneethynylene)|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o321-o322 (2015)",CC BY +Crystal structure of 4-bromophenyl-2-oxo-2H-chromene-3-carboxylate,H. C. Devarajegowda|P. A. Suchetan|H. T. Srinivasa|S. Sreenivasa|B. S. Palakshamurthy,10.1107/S2056989015006738,https://doaj.org/article/90d73b9846d04f669389f2ac9422b0c0,01/05/2015,EN,crystal structure|2-oxo-2H-chromene|hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o326-o327 (2015)",CC BY +"Crystal structure of 3-(2,5-dimethoxyphenyl)propionic acid",Bernhard Bugenhagen|Yosef Al Jasem|Mariam AlAzani|Thies Thiemann,10.1107/S2056989015007641,https://doaj.org/article/3a287ef494ba4389baa8d32e2065a069,01/05/2015,EN,"crystal structure|3-(2,5-dimethoxyphenyl)propionic acid|O—H...O hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o337-o338 (2015)",CC BY +"Crystal structure of 3-(4-methoxyphenyl)-2,3-dihydro-1H-naphtho[2,1-b]pyran-1-one",R. Vasanthi|D. Reuben Jonathan|K. S. Elizhlarasi|B. K. Revathi|G. Usha,10.1107/S2056989015007082,https://doaj.org/article/482c9725c3924810bf5e4dcae3ff2433,01/05/2015,EN,crystal structure|hydropyran|flavone derivative|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o332-o332 (2015)",CC BY +Crystal structure of (E)-hex-2-enoic acid,Tim Peppel|Marcel Sonneck|Anke Spannenberg|Sebastian Wohlrab,10.1107/S2056989015007380,https://doaj.org/article/4d64d862c21a46d7ac40078c8b43e755,01/05/2015,EN,crystal structure|hydrogen bond|dimer|unsaturated carboxylic acid|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o323-o323 (2015)",CC BY +Crystal structure of bis(4-methoxyphenyl) malonate,H. C. Devarajegowda|P. A. Suchetan|S. Sreenivasa|H. T. Srinivasa|B. S. Palakshamurthy,10.1107/S2056989015006891,https://doaj.org/article/f59f22f322cf432c94c7bcaf541c98fd,01/05/2015,EN,crystal structure|orientational disorder|C—H...O interactions|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o330-o331 (2015)",CC BY +Crystal structure of 4-(2-azidophenyl)-5-benzoyl-2-(1H-indol-3-yl)-1H-pyrrole-3-carbonitrile,G. Vimala|J. Kamal Raja|Y. Amina Naaz|P. T. Preumal|A. SubbiahPandi,10.1107/S2056989015006921,https://doaj.org/article/b13436abc2204ec6a370e8d627655996,01/05/2015,EN,crystal structure|indole derivatives|pyrrole-3-carbonitrile|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o335-o336 (2015)",CC BY +Crystal structure of 1-nitro-4-(trimethylsilylethynyl)naphthalene,Jun Du|Graeme J. Moxey,10.1107/S2056989015007173,https://doaj.org/article/19c0facc8dae4528bd500e889d00ad25,01/05/2015,EN,crystal structure|trialkylsilylacetylene|nitroarene|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o311-o312 (2015)",CC BY +Crystal structure of 4-formylpyridine semicarbazone hemihydrate,Mayara Hissami Inoue|Davi F. Back|Robert A. Burrow|Fábio Souza Nunes,10.1107/S2056989015007276,https://doaj.org/article/91f33df868504bd983826374a0edea09,01/05/2015,EN,crystal structure|4-formylpyridine semicarbazone hemihydrate|N—H...O hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o317-o318 (2015)",CC BY +"Crystal structure of tetraethylammonium chloride 3,4,5,6-tetrafluoro-1,2-diiodobenzene",Jasmine Viger-Gravel|Ilia Korobkov|David L. Bryce,10.1107/S205698901500732X,https://doaj.org/article/74f5a81013f74e1186f9517d199e0c40,01/05/2015,EN,crystal structure|halogen bond|non-covalent interactions|short contacts|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o319-o320 (2015)",CC BY +Crystal structure of (2S)-3-methyl-2-[(naphthalen-1-ylsulfonyl)amino]butanoic acid,Muhammad Danish|Muhammad Nawaz Tahir|Nabila Jabeen|Muhammad Asam Raza,10.1107/S2056989015007057,https://doaj.org/article/b4ba1fc7a9a14b7db0c49bfd46c0d657,01/05/2015,EN,crystal structure|catemer|naphthalen-1-ylsulfonyl|L-valine|hydrogen bonding|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o308-o308 (2015)",CC BY +Crystal structure of (E)-1-(4-tert-butylphenyl)-2-(4-iodophenyl)ethene,Zhiwei Chen|Graeme J. Moxey,10.1107/S2056989015007185,https://doaj.org/article/4786c8acdb314c5faa195abaac78f972,01/05/2015,EN,crystal structure|stilbene|iodoarene|C—I...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o309-o310 (2015)",CC BY +Crystal structure of 2-chloro-N-(3-fluorophenyl)acetamide,S. Sreenivasa|P. A. Suchetan|S. Naveen|N. K. Lokanath|K. S. Srivishnu,10.1107/S2056989015007240,https://doaj.org/article/92b260af7a224366864f1b6138b437d2,01/05/2015,EN,crystal structure|disordered F atom|N-arylamides|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o315-o315 (2015)",CC BY +"Crystal structure of ethyl 4-(2,4-dichlorophenyl)-2-methyl-4H-benzo[4,5]thiazolo[3,2-a]pyrimidine-3-carboxylate",T. Sankar|S. Naveen|N. K. Lokanath|K. Gunasekaran,10.1107/S2056989015007033,https://doaj.org/article/9e321083bc2f43dc813dc9848239b553,01/05/2015,EN,crystal structure|pyrimidine|benzothiazole|C—H...O hydrogen bonds|C—H...N hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o306-o307 (2015)",CC BY +Crystal structure of (E)-pent-2-enoic acid,Tim Peppel|Marcel Sonneck|Anke Spannenberg|Sebastian Wohlrab,10.1107/S2056989015007203,https://doaj.org/article/034d51a049de4874bd02663894c8cd75,01/05/2015,EN,crystal structure|hydrogen bond|dimer|unsaturated carboxylic acid|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o316-o316 (2015)",CC BY +Crystal structure of 4-hydroxy-3-methoxybenzaldehyde 4-methylthiosemicarbazone methanol monosolvate,Adriano Bof de Oliveira|Johannes Beck|Christian Landvogt|Bárbara Regina Santos Feitosa,10.1107/S2056989015007227,https://doaj.org/article/1dfc96b78c774281b6f2acea3ec19667,01/05/2015,EN,crystal structure|bifurcated hydrogen bond|thiosemicarbazone derivative from natural product (vanillin)|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o313-o314 (2015)",CC BY +Crystal stucture of methyl 2-({[2-(methoxycarbonyl)phenyl]carbamoyl}amino)benzoate,Hasna Yassine|Mostafa Khouili|Lahcen El Ammari|Mohamed Saadi|El Mostafa Ketatni,10.1107/S2056989015006465,https://doaj.org/article/2f50ea3daffd4de5a3882dfbdf9adb06,01/05/2015,EN,crystal structure|urea derivative|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o297-o298 (2015)",CC BY +"Crystal structure of tetrabutylammonium bromide–1,2-diiodo-3,4,5,6-tetrafluorobenzene–dichloromethane (2/2/1)",Jasmine Viger-Gravel|Ilia Korobkov|David L. Bryce,10.1107/S2056989015006593,https://doaj.org/article/0b1dc61ea3d04fdab63237125269e80a,01/05/2015,EN,crystal structure|halogen bonds|short contacts|noncovalent interaction|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o286-o287 (2015)",CC BY +Crystal structure of 2-{(E)-[(2-hydroxyphenyl)iminiumyl]methyl}-4-methylphenolate,Suresh Shalini|C. R. Girija|Mukesh M. Jotani|C. D. Sathish|T. V. Venkatesha,10.1107/S2056989015006374,https://doaj.org/article/c0b86a9c56564e90b454d8bd33447d23,01/05/2015,EN,crystal structure|Schiff base|N-(salicylidene)aniline|zwitterion|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o288-o288 (2015)",CC BY +"Crystal structure of β-d,l-psicose",Tomohiko Ishii|Genta Sakane|Akihide Yoshihara|Kazuhiro Fukada|Tatsuya Senoo,10.1107/S2056989015006623,https://doaj.org/article/1341153fbb7c46799e33f591f6bb2c26,01/05/2015,EN,crystal structure|hydrogen bonding|racemic compound|rare sugar|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o289-o290 (2015)",CC BY +Crystal structure of febuxostat–acetic acid (1/1),Min Wu|Xiu-Rong Hu|Jian-Ming Gu|Gu-Ping Tang,10.1107/S2056989015005708,https://doaj.org/article/07302d486b614d6194d480e7f84de4f6,01/05/2015,EN,crystal structure|febuxostat|acetic acid|co-crystal|hydrogen bonding|π–π stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o295-o296 (2015)",CC BY +"Crystal structure of 1-[2-(2,6-dichlorophenyl)-4,5-diphenyl-1H-imidazol-1-yl]propan-2-ol",Mehmet Akkurt|Jerry P. Jasinski|Shaaban K. Mohamed|Adel A. Marzouk|Mustafa R. Albayati,10.1107/S2056989015006763,https://doaj.org/article/462b0f92b1d2417ea0d24ce8bd6a0c71,01/05/2015,EN,"crystal structure|1-[2-(2,6-dichlorophenyl)-4,5-diphenyl-1H-imidazol-1-yl]propan-2-ol|imidazole ring|amino alcohol|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o299-o300 (2015)",CC BY +"Crystal structure of 11-(2,3-dimethoxyphenyl)-14-methyl-12-oxa-8,14-diazatetracyclo[8.3.3.01,10.02,7]hexadeca-2(7),3,5-triene-9,13-dione",M. P. Savithri|M. Suresh|R. Raghunathan|R. Raja|A. SubbiahPandi,10.1107/S2056989015006386,https://doaj.org/article/d0a1279e1c3b4a0c8de1f17851dc6ce6,01/05/2015,EN,crystal structure|diazatetracyclhexadecatrienedione|N—H...O hydrgen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o293-o294 (2015)",CC BY +Crystal structure of 1-[(Z)-2-phenylhydrazin-1-ylidene]naphthalen-2(1H)-one,Ali Benosmane|Mohamed Amine Benaouida|Assia Mili|Abdelkader Bouchoul|Hocine Merazig,10.1107/S2056989015006775,https://doaj.org/article/65241d716be24b89a31b607751c56c5f,01/05/2015,EN,crystal structure|hydrazone|naphthalenone|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o303-o303 (2015)",CC BY +"Crystal structure of 5,11-dihydropyrido[2,3-b][1,4]benzodiazepin-6-one",Noura M. Riad|Darius P. Zlotos|Ulrike Holzgrabe,10.1107/S2056989015006817,https://doaj.org/article/d60636c4c41547ffbb8deb8860aafc7f,01/05/2015,EN,crystal structure|pyridobenzodiazepine|boat conformation|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o304-o305 (2015)",CC BY +"Crystal structure of ethyl 2-{4-[(5-chloro-1-benzofuran-2-yl)methyl]-3-methyl-6-oxo-1,6-dihydropyridazin-1-yl}acetate",Youness Boukharsa|Lahcen El Ammari|Jamal Taoufik|Mohamed Saadi|M'hammed Ansar,10.1107/S2056989015006301,https://doaj.org/article/c72a1e2d8bd044d5a2a00074e75e7f8d,01/05/2015,EN,crystal structure|pyridazinone derivative|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o291-o292 (2015)",CC BY +Crystal structure of 2-(1H-imidazol-4-yl)ethanaminium chloride,Imene Belfilali|Siham Yebdri|Samira Louhibi|Leila Boukli-hacene|Thierry Roisnel,10.1107/S2056989015006866,https://doaj.org/article/1caf1dba78cf41b2976ebbb47feab75d,01/05/2015,EN,crystal structure|histamine|imidazole|chloride Ion|protonation|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o301-o302 (2015)",CC BY +Crystal structure of [1-(3-chlorophenyl)-5-hydroxy-3-methyl-1H-pyrazol-4-yl](p-tolyl)methanone,Balbir Kumar|Kiran J. Nakum|R. N. Jadeja|Rajni Kant|Vivek K. Gupta,10.1107/S2056989015006258,https://doaj.org/article/0ddd9cc21a8f424181c71f8686232dea,01/05/2015,EN,crystal structure|4-acylpyrazolone derivative|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o280-o281 (2015)",CC BY +"Crystal structure of methyl 2-hydroxy-5-[(4-oxo-4,5-dihydro-1,3-thiazol-2-yl)amino]benzoate",Shaaban K. Mohamed|Joel T. Mague|Mehmet Akkurt|Hajjaj H. M. Abdu-Allah|Mustafa R. Albayati,10.1107/S2056989015006416,https://doaj.org/article/1017c3d592404a408cdea5459fa35370,01/05/2015,EN,crystal structure|aminosalicylic acid|thiazolidinones|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o282-o283 (2015)",CC BY +"Crystal structure of methyl 1-methyl-2-oxospiro[indoline-3,2′-oxirane]-3′-carboxylate",M. P. Savithri|P. S. Yuvaraj|B. S. R. Reddy|R. Raja|A. SubbiahPandi,10.1107/S2056989015006398,https://doaj.org/article/6513f3c4251d46129ccf116c93b4d064,01/05/2015,EN,crystal structure|ester|spiro compound|indoline|oxirane|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o274-o275 (2015)",CC BY +Crystal structure of quinolinium 2-carboxy-6-nitrobenzoate monohydrate,J. Mohana|M. Divya Bharathi|G. Ahila|G. Chakkaravarthi|G. Anbalagan,10.1107/S2056989015006052,https://doaj.org/article/3af46cd1c7154c599b2b8d3a6b17b01d,01/05/2015,EN,crystal structure|molecular salt|quinolinium|2-carboxy-6-nitrobenzoate|hydrogen bonding|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o270-o271 (2015)",CC BY +"Crystal structure of 5,5′-dibromo-3,3′-di-tert-butyl-6,6′-dimethylbiphenyl-2,2′-diol",Rika Obata|Shigeru Ohba|Yasuaki Einaga|Shigeru Nishiyama,10.1107/S2056989015006313,https://doaj.org/article/0a9b860a849347548a96d5dad3755d06,01/05/2015,EN,crystal structure|biphenyl|axial chirality|O—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o278-o279 (2015)",CC BY +"Crystal structure of (2-methyl-4-phenyl-4H-benzo[4,5]thiazolo[3,2-a]pyrimidin-3-yl)(phenyl)methanone",T. Sankar|S. Naveen|N. K. Lokanath|K. Gunasekaran,10.1107/S2056989015006428,https://doaj.org/article/417ffba54e3441b9a651143a02970c30,01/05/2015,EN,crystal structure|pyrimidine|benzo|thiazolo|C—H...N hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o276-o277 (2015)",CC BY +"Crystal structure of (1S,3R,8R,9S,10R)-10-bromomethyl-2,2-dichloro-9,10-epoxy-3,7,7-trimethyltricyclo[6.4.0.01,3]dodecane",Ahmed Benharref|Lahcen El Ammari|Mohamed Saadi|Moha Berraho,10.1107/S205698901500657X,https://doaj.org/article/fa6ebe9908954dd6887480a9a37c25ea,01/05/2015,EN,crystal structure|β-himachalene derivative|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o284-o285 (2015)",CC BY +"Crystal structure of 2-(1-methylethyl)-1,3-thiazolo[4,5-b]pyridine",Gamal A. El-Hiti|Keith Smith|Amany S. Hegazy|Saud A. Alanazi|Benson M. Kariuki,10.1107/S2056989015006039,https://doaj.org/article/6b2e92fc87d44aff8becd7ce3956dffb,01/05/2015,EN,crystal structure|thiazolopyridine|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o272-o273 (2015)",CC BY +"Crystal structure of tetrakis(μ3-2-{[1,1-bis(hydroxymethyl)-2-oxidoethyl]iminomethyl}phenolato)tetracopper(II) ethanol monosolvate 2.5-hydrate",Weilun Wang|Jingwen Ran,10.1107/S2056989015007513,https://doaj.org/article/45bb7f4247214a489e0e9502044f07e7,01/05/2015,EN,crystal structure|Schiff base ligand|monoclinic tetranuclear copper(II) complex|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp m116-m117 (2015)",CC BY +Crystal structure of catena-poly[bis[μ3-2-(2-nitrophenyl)acetato-κ3O:O:O′]disilver(I)],Muhammad Danish|Muhammad Nawaz Tahir|Sana Iftikhar|Nazir Ahmad,10.1107/S2056989015007616,https://doaj.org/article/261f337af10148e8ae880a413c3b0c6a,01/05/2015,EN,crystal structure|silver(I) complex|2-(2-nitrophenyl)acetic acid|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp m118-m119 (2015)",CC BY +Crystal structure of bis[4-(dimethylamino)pyridine-κN1]bis(methanol-κO)bis(thiocyanato-κN)manganese(II),Stefan Suckert|Inke Jess|Christian Näther,10.1107/S2056989015007318,https://doaj.org/article/5c822acae0ef4be78611c294836270d8,01/05/2015,EN,crystal structure|discrete complex|octahedral coordination|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp m126-m126 (2015)",CC BY +Crystal structure of 1-[2-(diethylazaniumyl)ethyl]-3-methylimidazolium tetrachloridocuprate(II),Gerhard Laus|Volker Kahlenberg|Herwig Schottenberger,10.1107/S2056989015006799,https://doaj.org/article/7b0ff34471864c16a59d2a19e53336e7,01/05/2015,EN,crystal structure|copper(II) complex|tetrachloridocuprate|1-[2-(diethylazaniumyl)ethyl]-3-methylimidazolium dication|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp m110-m111 (2015)",CC BY +Crystal structure of dichloridobis(methyl isonicotinate-κN)copper(II),Elaheh Ahadi|Hassan Hosseini-Monfared|Peter Mayer,10.1107/S205698901500729X,https://doaj.org/article/0552f1d7ccae40508d42be231b2b9a36,01/05/2015,EN,crystal structure|square-planar copper(II) complex|methyl isonicotinate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp m112-m113 (2015)",CC BY +"Crystal structure of ethyl 6-(2-fluorophenyl)-4-hydroxy-2-sulfanylidene-4-trifluoromethyl-1,3-diazinane-5-carboxylate",M. S. Krishnamurthy|Noor Shahina Begum,10.1107/S2056989015005836,https://doaj.org/article/8cf4f6770b8a44d4920032e10db7c7ad,01/05/2015,EN,crystal structure|dihydropyrimidine derivative|organofluorine compounds|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp o268-o269 (2015)",CC BY +"Crystal structure of catena-poly[[[tetraaquazinc(II)]-μ-1,4-bis[4-(1H-imidazol-1-yl)benzoyl]piperazine] dinitrate monohydrate]",Chen Hou|Hong-Mei Gan|Jia-Cheng Liu,10.1107/S2056989015007719,https://doaj.org/article/c5e1dafdf0e94c0fa98ddfbf9bb27d59,01/05/2015,EN,crystal structure|zinc complex|one-dimensional coordination polymer|piperazine|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp m120-m121 (2015)",CC BY +Hydrothermal synthesis and crystal structure of a new lanthanum(III) coordination polymer with fumaric acid,Hayet Anana|Chahrazed Trifa|Sofiane Bouacida|Chaouki Boudaren|Hocine Merazig,10.1107/S2056989015007008,https://doaj.org/article/1fb7160ed4be421ea52dd8382b4fb1f2,01/05/2015,EN,crystal structure|hydrothermal synthesis|lanthanum(III) coordination polymer|fumaric acid|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp m114-m115 (2015)",CC BY +"Crystal structure of μ-peroxido-κ4O1,O2:O1′,O2′-bis[(nitrato-κO)(2,2′:6′,2′′-terpyridine-κ3N,N′,N′′)dioxidouranium(VI)]",Takeshi Kawasaki|Takafumi Kitazawa,10.1107/S2056989015007987,https://doaj.org/article/4ec8ec53e5de4035b077cc3d9aaca541,01/05/2015,EN,"crystal structure|uranium(VI) complex|dimer|peroxide|2,2′:6′,2′′-terpyridine|uranyl(VI) ion|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp m122-m123 (2015)",CC BY +"Crystal structure of (4-fluorophenyl-κC1)iodido(N,N,N′,N′-tetramethylethylenediamine-κ2N,N′)palladium(II)",Jin-Jin Yan|Chang-Ge Zheng,10.1107/S2056989015008014,https://doaj.org/article/191051f8fbf445c5bbfb192b32fc096e,01/05/2015,EN,crystal structure|palladium(II) complex|tetramethylethylenediamine|square-planar coordination|single-crystal X-ray study|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp m124-m125 (2015)",CC BY +Crystal structure of trans-diaquabis(4-cyanobenzoato-κO)bis(nicotinamide-κN1)cobalt(II),Gülçin Şefiye Aşkın|Hacali Necefoğlu|Gamze Yılmaz Nayir|Raziye Çatak Çelik|Tuncer Hökelek,10.1107/S2056989015008270,https://doaj.org/article/315e2e4f49b047f4ba64dbacda2e5ed6,01/05/2015,EN,crystal structure|cobalt(II)|transition metal complexes of benzoic acid and nicotinamide derivatives|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 561-563 (2015)",CC BY +"Crystal structure of poly[di-μ-aqua-{5-[(1Z)-2-(4-chlorophenyl)-1-cyanoethenyl]-1,2,3,4-tetrazol-1-ido-κN1}sodium]",Joel T. Mague|Shaaban K. Mohamed|Mehmet Akkurt|Ahmed M. M. El-Saghier|Mustafa R. Albayati,10.1107/S2056989015006325,https://doaj.org/article/2058a973d28344e0b8480ec5887fdecc,01/05/2015,EN,crystal structure|sodium salt|tetrazoles|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp m102-m103 (2015)",CC BY +Crystal structure of Ba5In4Sb6,Ming-Yan Pan|Sheng-Qing Xia|Xu-Tang Tao,10.1107/S2056989015006933,https://doaj.org/article/1a4c086a4b384aedb7d209029eea5e1f,01/05/2015,EN,crystal structure|barium|indium|antimony|In—In interconnections|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp i4-i4 (2015)",CC BY +"Crystal structure of [2-(triethylammonio)ethyl][(2,4,6-triisopropylphenyl)sulfonyl]amide tetrahydrate",C. Golz|C. Strohmann,10.1107/S2056989015008105,https://doaj.org/article/100fa162fc014acbb63d72978792c951,01/05/2015,EN,crystal structure|zwitterion|hydrate|tape-like motif|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 564-566 (2015)",CC BY +"Crystal structure of (1,3-di-tert-butyl-η5-cyclopentadienyl)trimethylhafnium(IV)",Adrián Pérez-Redondo|Víctor Varela-Izquierdo|Carlos Yélamos,10.1107/S205698901500585X,https://doaj.org/article/c6f814d6765d4038835094e554dbf9c0,01/05/2015,EN,crystal structure|hafnium|cyclopentadienyl ligand|organometallic compound|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp m100-m101 (2015)",CC BY +Crystal structure of disodium dicobalt(II) iron(III) tris(orthophosphate) with an alluaudite-like structure,Adam Bouraima|Abderrazzak Assani|Mohamed Saadi|Thomas Makani|Lahcen El Ammari,10.1107/S2056989015007926,https://doaj.org/article/db6a2690aa2e4bf5b7eaddd70e9b5d67,01/05/2015,EN,crystal structure|transition metal phosphates|solid-state reaction synthesis|Na2Co2Fe(PO4)3|alluaudite-like structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 558-560 (2015)",CC BY +"The crystal structure of 3-chloro-2-(4-methylphenyl)-2H-pyrazolo[3,4-b]quinoline",Haliwana B. V. Sowmya|Tholappanavara H. Suresha Kumara|Jerry P. Jasinski|Sean P. Millikan|Hemmige S. Yathirajan|Christopher Glidewell,10.1107/S205698901500818X,https://doaj.org/article/ad85ddcfdbea4aaa99f1b68efce44387,01/05/2015,EN,crystal structure|pyrazoloquinoline|hydrogen bonding|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 567-570 (2015)",CC BY +"Crystal structure of (2-formylphenolato-κ2O,O′)oxido(2-{[(2-oxidoethyl)imino]methyl}phenolato-κ3O,N,O′)vanadium(V)",Sowmianarayanan Parimala|Parasuraman Selvam,10.1107/S2056989015006477,https://doaj.org/article/05b960778a7042d7bcdf7cc168b4780a,01/05/2015,EN,crystal structure|vanadyl complex|catalyst|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp m104-m105 (2015)",CC BY +Crystal structure of tricarbonyltris(pyridine-κN)rhenium(I) tetrafluoridoborate,Adebomi A. Ikotun|Micheal P. Coogan|Abimbola A. Owoseni|Nattamai Bhuvanesh|Gabriel O. Egharevba,10.1107/S2056989015006180,https://doaj.org/article/8e4e4dc3365840d18c1a5b5153544752,01/05/2015,EN,crystal structure|rhenium(I) tricarbonyl complexes|tricarbonyl tris-pyridyl rhenium(I) cation|luminescent agent.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp m106-m107 (2015)",CC BY +Crystal structure of catena-poly[[[aquabis(1H-imidazole-κN3)copper(II)]-μ-3-({4-[(2-carboxylatoethyl)carbamoyl]phenyl}formamido)propanoato-κ2O:O′] dihydrate],Yan Liu|Liu-Yang Xu|Hong-Tao Zhang,10.1107/S205698901500626X,https://doaj.org/article/83589121038f4b5a9f4c281b88e573af,01/05/2015,EN,crystal structure|CuII coordination polymer|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp m108-m109 (2015)",CC BY +New insights in the discovery of novel h-MAO-B inhibitors: structural characterization of a series of N-phenyl-4-oxo-4H-chromene-3-carboxamide derivatives,Ligia R. Gomes|John Nicolson Low|Fernando Cagide|Daniel Chavarria|Fernanda Borges,10.1107/S2056989015007859,https://doaj.org/article/9b4010df0f7b4c5b91d53c0cf47d6829,01/05/2015,EN,crystal structure|drug design|chromones|conformation|supramolecular structure|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 547-554 (2015)",CC BY +Crystal structure of bis(2-amino-5-chloropyridinium) tetrachloridocobaltate(II),Marwa Mghandef|Habib Boughzala,10.1107/S2056989015007707,https://doaj.org/article/dbb13efe4af248f0aa78bf1f61040827,01/05/2015,EN,crystal structure|cobalt(II) complex|2-amino-5-chloropyridine|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 555-557 (2015)",CC BY +"Crystal structure of bis[1,3-bis(2,6-diisopropylphenyl)imidazol-2-ylidene]silver(I) chloride tetrahydrofuran monosolvate",Inge Sänger|Hans-Wolfram Lerner|Michael Bolte,10.1107/S2056989015007525,https://doaj.org/article/0dc6286ae8074a6ab168b55983dd1336,01/05/2015,EN,"crystal structure|P4|NHC|imidazole|1,3-bis(2,6-dimethylphenyl)imidazol-2-ylidene|C—H...Cl hydrogen bonds|C—H...O hydrogen bonds.|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 544-546 (2015)",CC BY +"Crystal structure of bis[trans-(1,4,8,11-tetraazacyclotetradecane-κ4N)bis(thiocyanato-κN)chromium(III)] tetrachloridozincate from synchrotron data",Dohyun Moon|Keon Sang Ryoo|Jong-Ha Choi,10.1107/S205698901500746X,https://doaj.org/article/c410b30861264ef3b8d921e963d62b7e,01/05/2015,EN,crystal structure|synchrotron radiation|cyclam|thiocyanate ligand|trans-III configuration|chromium(III) complex|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 540-543 (2015)",CC BY +Crystal structure of di-μ-chlorido-bis[dichloridobis(methanol-κO)iridium(III)] dihydrate: a surprisingly simple chloridoiridium(III) dinuclear complex with methanol ligands,Joseph S. Merola|Carla Slebodnick|Christopher Houser,10.1107/S2056989015006672,https://doaj.org/article/4ccb36367d424026ba3dd3598d972c5c,01/05/2015,EN,crystal structure|iridium|chlorido bridge|methanol ligand|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 528-530 (2015)",CC BY +"Crystal structure of bis[4-(1H-pyrrol-1-yl)phenyl] ferrocene-1,1′-dicarboxylate: a potential chemotherapeutic drug",Wanda I. Pérez|Arnold L. Rheingold|Enrique Meléndez,10.1107/S2056989015007446,https://doaj.org/article/097631cd793e4de0ab961368b6403d32,01/05/2015,EN,crystal structure|disubstituted ferrocene|antiproliferative|chemotherapeutic drug|MCF-7|pyrrole|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 536-539 (2015)",CC BY +Crystal structure of 3-bromo-2-hydroxybenzoic acid,Gerhard Laus|Volker Kahlenberg|Thomas Gelbrich|Sven Nerdinger|Herwig Schottenberger,10.1107/S2056989015007331,https://doaj.org/article/ef9106b31d1045c781b2f53b2a5cad52,01/05/2015,EN,crystal structure|hydrogen bonding|structural systematics|XPac|salicylic acid derivative|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 531-535 (2015)",CC BY +"Crystal structures of 1-(4-chlorophenyl)-2-(diphenylphosphoryl)ethan-1-one and 1-(diphenylphosphoryl)-3,3-dimethylbutan-2-one",Erin G. Leach|Alyssa A. Kulesza|Richard J. Staples|Shannon M. Biros,10.1107/S2056989015006994,https://doaj.org/article/bec817049a0649f88cf0eff6c66c3150,01/05/2015,EN,crystal structure|carbamoylmethylphosphane oxide (CMPO)|α-bromoketone|isopropoxydiphenylphosphane|C—H...O hydrogen bonds|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 523-527 (2015)",CC BY +"Crystal structure of (±)-(1SR,5SR,6SR,7SR,10SR,11SR,13SR)-13-benzyloxy-7-methoxymethoxy-11,15,18,18-tetramethyl-3-oxo-2,4-dioxatetracyclo[12.3.1.01,5.06,11]octadeca-14,16-dien-10-yl benzoate",Takeshi Oishi|Keisuke Fukaya|Yu Yamaguchi|Tomoya Sugai|Ami Watanabe|Takaaki Sato|Noritaka Chida,10.1107/S2056989015007136,https://doaj.org/article/a13262aebadb4f9d884acdfa2152d99e,01/05/2015,EN,crystal structure|hydrogen bonds|taxane skeleton|paclitaxel|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 490-493 (2015)",CC BY +"Crystal structure of rac-(3a'R,9a'R)-3a'-(indol-3-yl)-1′,2′,3′,3a',4′,9a'-hexahydrospiro[cyclopentane-1,9′-pentaleno[1,2-b]indole] p-xylene hemisolvate",Wayland E. Noland|Matthew A. Worth|Andrew K. Schneerer|Courtney L. Paal|Kenneth J. Tritch,10.1107/S2056989015007422,https://doaj.org/article/507f5623f12a466d919cd73bf5797db9,01/05/2015,EN,crystal structure|annulation|indole|cyclic ketone|disorder|X—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 516-519 (2015)",CC BY +"Crystal structure of 2-methyl-1H-imidazol-3-ium aquatrichlorido(oxalato-κ2O,O′)stannate(IV)",Mouhamadou Birame Diop|Libasse Diop|Laurent Plasseraud|Thierry Maris,10.1107/S2056989015005988,https://doaj.org/article/10e0c3c7d47d4d198e5fd4547cfa40fb,01/05/2015,EN,crystal structure|organotin(IV) complex|hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 520-522 (2015)",CC BY +Crystal structure of SrGeO3 in the high-pressure perovskite-type phase,Akihiko Nakatsuka|Hiroshi Arima|Osamu Ohtaka|Keiko Fujiwara|Akira Yoshiasa,10.1107/S2056989015007264,https://doaj.org/article/c4699082a240478da8a016c704b13ec1,01/05/2015,EN,crystal structure|strontium germanate|perovskite|high-pressure phase|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 502-504 (2015)",CC BY +"Crystal structure of 5-{3-[2,6-dimethyl-4-(5-methyl-1,2,4-oxadiazol-3-yl)phenoxy]propyl}-N-(11-hydroxyundecyl)isoxazole-3-carboxamide hemihydrate",K. Salorinne|T. Lahtinen,10.1107/S2056989015007367,https://doaj.org/article/1cf9a43df42d4525ae8ad7e08072effe,01/05/2015,EN,crystal structure|antiviral|WIN derivative|isoxazole|oxadiazole|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 505-508 (2015)",CC BY +"Crystal structures of 2,2′-bipyridin-1-ium 1,1,3,3-tetracyano-2-ethoxyprop-2-en-1-ide and bis(2,2′-bipyridin-1-ium) 1,1,3,3-tetracyano-2-(dicyanomethylene)propane-1,3-diide",Zouaoui Setifi|Arto Valkonen|Manuel A. Fernandes|Sami Nummelin|Habib Boughzala|Fatima Setifi|Christopher Glidewell,10.1107/S2056989015007306,https://doaj.org/article/47bab2200de5449d851cdeecfe682a0d,01/05/2015,EN,crystal structure|bipyridinium cations|polynitrile anions|molecular conformation|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 509-515 (2015)",CC BY +Crystal structure of a polymeric calcium levulinate dihydrate: catena-poly[[diaquacalcium]-bis(μ2-4-oxobutanoato)],Ananda S. Amarasekara|Dominique T. Sterling-Wells|Carlos Ordonez|Marie-Josiane Ohoueu|Marina S. Fonari,10.1107/S2056989015006696,https://doaj.org/article/2172e4aeceb14659891bb1a9ee524d60,01/05/2015,EN,crystal structure|coordination polymer|calcium levulinate dihydrate|levulinic acid|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 494-497 (2015)",CC BY +Crystal structure of a new hybrid antimony–halide-based compound for possible non-linear optical applications,Tarek Ben Rhaiem|Habib Boughzala,10.1107/S2056989015007379,https://doaj.org/article/6ff4ea9c8764486795e790497837437a,01/05/2015,EN,crystal structure|chloridoantimonate(III)|one-dimensional hybrid compound|(dabcoH2)2+ cation|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 498-501 (2015)",CC BY +"Crystal structure of 2,4-diamino-6-oxo-3,6-dihydropyrimidin-1-ium p-toluenesulfonate",Krishnasamy Mamallan|Sadasivam Sharmila Tagore|Sundaramoorthy Gomathi|Velusamy Sethuraman,10.1107/S2056989015006787,https://doaj.org/article/d68169ab30194f5db7b83071eb7c4ae1,01/05/2015,EN,crystal structure|diaminopyrimidines|triaminopyrimidines|p-toluenesulfonate|hydrogen bonding|N—H...O hydrogen bonds|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 476-478 (2015)",CC BY +"Crystal structures of (±)-(1SR,5SR,6SR,7SR,10SR,11SR,13RS,14SR)-13-hydroxy-7-methoxymethoxy-11,15,18,18-tetramethyl-3-oxo-2,4-dioxatetracyclo[12.3.1.01,5.06,11]octadec-15-en-10-yl benzoate, its 13-epimer and 13-one derivative",Takeshi Oishi|Keisuke Fukaya|Yu Yamaguchi|Tomoya Sugai|Ami Watanabe|Takaaki Sato|Noritaka Chida,10.1107/S2056989015006854,https://doaj.org/article/d4132cef6a0648d1844fa8942a3c9b5c,01/05/2015,EN,crystal structure|hydrogen bonds|taxane skeleton|paclitaxel|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 466-472 (2015)",CC BY +"Packing polymorphism in the crystal structure of 4,5-dimethoxy-2-nitrobenzyl acetate",Noriko Chikaraishi Kasuga|Yusuke Saito|Hiroyasu Sato|Kazuo Yamaguchi,10.1107/S2056989015006714,https://doaj.org/article/a156f380fcc24fbdae5d6c2d2073dd00,01/05/2015,EN,crystal structure|packing polymorphism|2-nitrobenzyl ester|π–π interactions|C—H...O interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 483-486 (2015)",CC BY +Crystal structure of poly[bis(μ-nicotinamide-κ2N1:O)bis(μ-4-nitrobenzoato-κ2O1:O1′)zinc],Gülçin Şefiye Aşkın|Hacali Necefoğlu|Ali Murat Tonbul|Nefise Dilek|Tuncer Hökelek,10.1107/S2056989015006490,https://doaj.org/article/46a40ba85f9540528e84c36918c233c6,01/05/2015,EN,crystal structure|zinc(II) complex|benzoic acid|nicotinamide derivatives|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 479-482 (2015)",CC BY +"Le nitrate double NaRb2(NO3)3, composé intermédiaire du système binaire isobare NaNO3 + RbNO3: études thermiques et cristallographiques",Nesrine Ksiksi|Mohamed Driss|Dalila Hellali|Abderrahmen Guesmi|Hmida Zamali,10.1107/S2056989015006532,https://doaj.org/article/ceba3dda1ef8421b832c914357217cbb,01/05/2015,EN,crystal structure|NaNO3 + RbNO3 phase diagram|bond-valence sum|charge-distribution method|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 455-458 (2015)",CC BY +"Crystal structure of the co-crystalline adduct 1,3,6,8-tetraazatricyclo[4.4.1.13,8]dodecane (TATD)–4-bromophenol (1/2)",Augusto Rivera|Juan Manuel Uribe|Jicli José Rojas|Jaime Ríos-Motta|Michael Bolte,10.1107/S2056989015006684,https://doaj.org/article/38f5df38921147c0a911095bc046ec76,01/05/2015,EN,crystal structure|co-crystalline adducts|TATD|proton transfer|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 463-465 (2015)",CC BY +Crystal structure of dimethylammonium hydrogen oxalate hemi(oxalic acid),Waly Diallo|Ndongo Gueye|Aurélien Crochet|Laurent Plasseraud|Hélène Cattey,10.1107/S2056989015005964,https://doaj.org/article/0b21d0cfd5454df8adc12108d0f69bf7,01/05/2015,EN,crystal structure|organic salt|hydrogen bonding|hydrogenoxalate|dialkyammonium|oxalic acid.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 473-475 (2015)",CC BY +"Crystal structure of (Z)-N′-[1-(3-methyl-5-oxo-1-phenyl-1,5-dihydro-4H-pyrazol-4-ylidene)propyl]benzenesulfonohydrazide",Chuan-Chuan He|Guan-Cheng Xu,10.1107/S2056989015007094,https://doaj.org/article/994f0a82dea94de08210101035f698be,01/05/2015,EN,crystal structure|pyrazolone derivative|hydrogen bonding|polymer chain|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 487-489 (2015)",CC BY +"Crystal structure of bis(azido-κN)bis[2,5-bis(pyridin-2-yl)-1,3,4-thiadiazole-κ2N2,N3]cobalt(II)",Abdelhakim Laachir|Fouad Bentiss|Salaheddine Guesmi|Mohamed Saadi|Lahcen El Ammari,10.1107/S2056989015006544,https://doaj.org/article/44b03dd8b6ad48d98fa543e54ddf6599,01/05/2015,EN,"crystal structure|transition metal|2,5-bis(pyridin-2-yl)-1,3,4-thiadiazole ligand|azide compounds|hydrogen bonding|π–π interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 452-454 (2015)",CC BY +"Crystal structure of poly[μ2-aqua-aqua(μ2-4-nitro-2,5,6-trioxo-1,2,5,6-tetrahydropyridin-3-olato)hemi-μ4-oxalato-barium(II)]",Rusul Alabada|Olga Kovalchukova|Irina Polyakova|Svetlana Strashnova|Vladimir Sergienko,10.1107/S2056989015006520,https://doaj.org/article/72c114b172b84c8f8411354b594f6ed9,01/05/2015,EN,crystal structure|two-dimensional coordination polymer|barium(II) compound|oxalate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 459-462 (2015)",CC BY +"Crystal structure of bis[N-phenyl-2-(1,2,3,4-tetrahydronaphthalen-1-ylidene)hydrazinecarbothioamidato-κ2N2,S]zinc dimethyl sulfoxide monosolvate",Genelane Cruz Santana|Iara de Fátima Gimenez|Christian Näther|Inke Jess|Adriano Bof de Oliveira,10.1107/S205698901500612X,https://doaj.org/article/a3ea787797b7410fa39689daccb899aa,01/05/2015,EN,crystal structure|thiosemicarbazone–ZnII complex|hydrogen-bonded polymer|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 440-442 (2015)",CC BY +Synthèse et étude structurale de Na9Cr(MoO4)6,Wassim Dridi|Ines Ennajeh|Mohamed Faouzi Zid,10.1107/S2056989015005976,https://doaj.org/article/a7714839c3da49329992653e9fe38674,01/05/2015,EN,crystal structure|molybdate(VI)|CrO6 octahedron|quaternary systems|open framework|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 435-439 (2015)",CC BY +"Crystal structures of dichloridopalladium(II), -platinum(II) and -rhodium(III) complexes containing 8-(diphenylphosphanyl)quinoline",Takayoshi Suzuki|Hiroshi Yamaguchi|Masayuki Fujiki|Akira Hashimoto|Hideo D. Takagi,10.1107/S2056989015006076,https://doaj.org/article/d9f70103722b4ff684a7d0595b32f20f,01/05/2015,EN,crystal structure|8-quinolylphosphane|stacking interaction|geometrical structure|trans influence|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 447-451 (2015)",CC BY +"Crystal structure of [bis(2,6-diisopropylphenyl) phosphato-κO]tris(methanol-κO)lithium methanol monosolvate",Mikhail E. Minyaev|Ilya E. Nifant'ev|Alexander N. Tavtorkin|Sof'ya A. Korchagina|Shadana Sh. Zeynalova,10.1107/S2056989015005563,https://doaj.org/article/1f5f01e89e31424c98e08a1b43f6772c,01/05/2015,EN,crystal structure|alkali metal phosphate diester|diaryl phosphate|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 5, Pp 443-446 (2015)",CC BY +Crystal structure of 8-hydroxyquinolinium 2-carboxy-6-nitrobenzoate monohydrate,M. Divya Bharathi|G. Ahila|J. Mohana|G. Chakkaravarthi|G. Anbalagan,10.1107/S205698901500571X,https://doaj.org/article/2aa5b44878c448779273ace01ee72d84,01/04/2015,EN,crystal structure|8-hydroxyquinolinium|2-carboxy-6-nitrobenzoate|hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o261-o262 (2015)",CC BY +Corrigenda for three related articles,P. L. Nilantha Lakshman,10.1107/S2056989015003564,https://doaj.org/article/daeedb7f729c45db8f52727a47ef6d3b,01/04/2015,EN,Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp e2-e2 (2015)",CC BY +"Crystal structure of 2,3-bis[(4-tert-butyl-2,6-dimethylphenyl)imino]butane",Sheng-Lan Zhao|Jian-Chao Yuan|Yan Zhao,10.1107/S2056989015005551,https://doaj.org/article/d112966a4a4c446cb9ff755a068e7d13,01/04/2015,EN,crystal structure|α-diimine ligand|catalyst|aniline|diiminobutane|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o258-o258 (2015)",CC BY +"Crystal structure of ethyl 2-cyano-3-[(1-ethoxyethylidene)amino]-5-(3-methoxyphenyl)-7-methyl-5H-1,3-thiazolo[3,2-a]pyrimidine-6-carboxylate",M. S. Krishnamurthy|Noor Shahina Begum,10.1107/S2056989015005241,https://doaj.org/article/bf842c4b5938495bb48c22a605956bc5,01/04/2015,EN,"crystal structure|pyrimidine|thiazolopyrimidine|thiazolo[3,2-a]pyrimidine|hydrogen bonding|π–π stacking interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o256-o257 (2015)",CC BY +"Crystal structure of (7-chloro-2-oxo-2H-chromen-4-yl)methyl N,N-dimethylcarbamodithioate",H. D. Kavitha|M. Vinduvahini|N. M. Mahabhaleshwaraiah|O. Kotresh|H. C. Devarajegowda,10.1107/S2056989015005678,https://doaj.org/article/5620cb63117d481aa83f7d6d62ec4237,01/04/2015,EN,crystal structure|2H-chromene|C—H...S hydrogen bonds|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o263-o264 (2015)",CC BY +Crystal structure of S-octyl (E)-3-(4-methoxybenzylidene)dithiocarbazate,M. S. Begum|E. Zangrando|M. C. Sheikh|R. Miyatake|M. M. Hossain,10.1107/S205698901500568X,https://doaj.org/article/15b0563721e343bb8ef9d78d11a39514,01/04/2015,EN,crystal structure|dithiocarbazate|S-containing Schiff bases|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o265-o266 (2015)",CC BY +"Crystal structure of 3,3′-diisopropyl-1,1′-(pyridine-2,6-diyl)bis[1H-imidazole-2(3H)-thione]",Ying Sun|Hui Wang|Wei-Guo Jia,10.1107/S2056989015005642,https://doaj.org/article/50269549ed254e6fa75143f68980ef62,01/04/2015,EN,crystal structure|organochalcogen ligand|conformation|C—H...S interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o255-o255 (2015)",CC BY +"Crystal structure of diethyl 3,3′-{2,2′-(1E)-[1,4-phenylenebis(azan-1-yl-1-ylidene)]bis(methan-1-yl-1-ylidene)bis(1H-pyrrole-2,1-diyl)}dipropanoate",Jasim Alshawi|Muoayed Yousif|Gregore Timco|Inigo J. Vitorica Yrezabal|Richard Winpenny|Mohamad J. Al-Jeboori,10.1107/S2056989015005113,https://doaj.org/article/d053f19043f8497aab8bffe1f347a3a4,01/04/2015,EN,crystal structure|Schiff base|bis(pyrrole ester)|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o259-o260 (2015)",CC BY +"Crystal structure of ethyl N-(1,5-dimethyl-3-oxo-2-phenyl-2,3-dihydro-1H-pyrazol-4-yl)carbamate",Muhammad Danish|Muhammad Nawaz Tahir|Uzma Anwar|Muhammad Asam Raza,10.1107/S2056989015006106,https://doaj.org/article/231da82d8f62451b84707bec783555c9,01/04/2015,EN,crystal structure|dihydropyrazole|ethyl ester|carbamate|hydrogen bonding|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o267-o267 (2015)",CC BY +Crystal structure of 2-((1E)-{2-[bis(2-methylbenzylsulfanyl)methylidene]hydrazin-1-ylidene}methyl)-6-methoxyphenol,Enis Nadia Md Yusof|Thahira Begum S. A. Ravoof|Mohamed Ibrahim Mohamed Tahir|Edward R. T. Tiekink,10.1107/S2056989015004946,https://doaj.org/article/ababebc80d6e4ab4b99f66bcbff533ba,01/04/2015,EN,crystal structure|S-substituted dithiocarbazates|hydrogen bonding|C—H...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o242-o243 (2015)",CC BY +Crystal structure of 2′-hydroxyacetophenone 4-methylthiosemicarbazide,Junita Jamsari|Nur Fatihah Abas|Thahira Begum S. A. Ravoof|Edward R. T. Tiekink,10.1107/S2056989015004958,https://doaj.org/article/a16773716fd948cf8c80043c343f1bc0,01/04/2015,EN,crystal structure|thiosemicarbazide|hydrogen bonding|O—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o244-o245 (2015)",CC BY +"Crystal structure of (2E,3E)-N2,N3-bis(3-ethyl-[1,1′-biphenyl]-4-yl)butane-2,3-diimine",Yan Zhao|Jianchao Yuan|Jie Zhao|Shenglan Zhao,10.1107/S2056989015005071,https://doaj.org/article/34a2491903d64296a9985e11f7d4bbee,01/04/2015,EN,crystal structure|α-diimine|catalyst|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o251-o252 (2015)",CC BY +The tripeptide N-Cbz-βGly-Gly-Gly-Obz,Sumesh Nicholas,10.1107/S2056989015004272,https://doaj.org/article/a571fb9551504ad9814ca67a7cb93a75,01/04/2015,EN,"crystal structure|glycine|peptide|β-peptide|β-glycine,hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o240-o241 (2015)",CC BY +Redetermination and absolute configuration of berkeleydione,Andrea Stierle|Donald Stierle|Daniel Decato,10.1107/S2056989015003965,https://doaj.org/article/f02963cd667b4c8788c893a7aa23235f,01/04/2015,EN,crystal structure|absolute structure|resonant scattering|Berkeley pit|helicity rule|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o248-o248 (2015)",CC BY +"Crystal structure of 1-benzylsulfonyl-1,2,3,4-tetrahydroquinoline",S. Jeyaseelan|B. R. Sowmya|G. Venkateshappa|P. Raghavendra Kumar|B. S. Palakshamurthy,10.1107/S2056989015004727,https://doaj.org/article/a6f1a5ffcc724970946c4deb923f69d8,01/04/2015,EN,"crystal structure|1,2,3,4-tetrahydroquinoline|weak C—H...O interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o249-o250 (2015)",CC BY +Crystal structure of 3-methylpyridine-2-carbaldehyde 4-methylthiosemicarbazone monohydrate,Nur Shuhada Mohd Mokhtaruddin|Thahira Begum S. A. Ravoof|Mohamed Ibrahim Mohamed Tahir|Edward R. T. Tiekink,10.1107/S2056989015005034,https://doaj.org/article/b2bc5583d23448c6a8aaddc98700ff2e,01/04/2015,EN,crystal structure|hydrogen bonding|thiosemicarbazone|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o253-o254 (2015)",CC BY +"Crystal structure of (5′S,8′S)-3-(2,5-dimethylphenyl)-8-methoxy-3-nitro-1-azaspiro[4.5]decane-2,4-dione",Gao-Bo Hu|Da-Wei Jiang|Jiang-Yan Li|Yan Rao|Li-Yuan Jiang,10.1107/S2056989015004715,https://doaj.org/article/66eca3102b6b46bcb98a1a159047e9ab,01/04/2015,EN,"crystal structure|1-azaspiro[4.5]decane-2,4-dione|hydrogen bonding|pesticide|spirotetramat|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o238-o239 (2015)",CC BY +Crystal structure of ethyl 2-(1H-benzimidazol-2-yl)-2-[2-(4-nitrophenyl)hydrazinylidene]acetate,Mohamed Loughzail|Abdesselam Baouid|Lahcen El Ammari|Mohamed Saadi|Moha Berraho,10.1107/S2056989015004818,https://doaj.org/article/18d8382f2054458fb55215a1a4c97f75,01/04/2015,EN,crystal structure|benzimidazole|nitrophenylhydrazone|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o236-o237 (2015)",CC BY +"Crystal structure of 2,2-dimethyl-N-(pyridin-3-yl)propanamide",Gamal A. El-Hiti|Keith Smith|Amany S. Hegazy|Saud A. Alanazi|Benson M. Kariuki,10.1107/S2056989015005289,https://doaj.org/article/6b4e88ed540f4100beac79a55b36a51d,01/04/2015,EN,crystal structure|pyridine|propanamide|N—H...N hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o246-o247 (2015)",CC BY +Crystal structure of benzyl 3-(3-methylphenyl)dithiocarbazate,NurFadhilah Abdul Aziz|Enis Nadia Md Yusof|Thahira Begum S. A. Ravoof|Edward R. T. Tiekink,10.1107/S2056989015004764,https://doaj.org/article/de8ae52a474e4d44bd3793129abf6733,01/04/2015,EN,crystal structure|hydrogen bonding|C—H...π interactions|S-substituted dithiocarbazate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o233-o234 (2015)",CC BY +Crystal structure of 7-[(2E)-2-benzylidene-3-oxobutoxy]-4-methyl-2H-chromen-2-one,Ignez Caracelli|Julio Zukerman-Schpector|Paulo J. S. Moran|Bruno R. S. de Paula|Edward R. T. Tiekink,10.1107/S2056989015003084,https://doaj.org/article/4d6a4d9d79774caa98959a2664777f53,01/04/2015,EN,crystal structure|chromen-2-one|conformation|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o222-o223 (2015)",CC BY +Crystal structure of 4-methoxy-N-[(pyrrolidin-1-yl)carbothioyl]benzamide,Khairi Suhud|Lee Yook Heng|Siti Aishah Hasbullah|Musa Ahmad|Mohammad B. Kassim,10.1107/S2056989015003813,https://doaj.org/article/45a9e85978664fdcb11e4432569dafb0,01/04/2015,EN,crystal structure|benzoylthiourea|pyrrolidine|thiourea|benzamide|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o225-o226 (2015)",CC BY +"Crystal structure of 2-(4-fluoro-3-methylphenyl)-5-{[(naphthalen-1-yl)oxy]methyl}-1,3,4-oxadiazole",Muniyappan Govindhan|Kathavarayan Subramanian|Vijayan Viswanathan|Devadasan Velmurugan,10.1107/S2056989015004144,https://doaj.org/article/5e0685e12fb6467c84faf14adac71751,01/04/2015,EN,crystal structure|triazole|oxadiazole|naphthalene|hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o229-o230 (2015)",CC BY +"Crystal structure of (S)-5,7-diphenyl-4,7-dihydrotetrazolo[1,5-a]pyrimidine",Ivy K. Price|Celine Rougeot|Jason E. Hein,10.1107/S2056989015002996,https://doaj.org/article/eb5062f14035488d8479aff73eb06efb,01/04/2015,EN,"crystal structure|tetrazolo[1,5-a]pyrimidine|π–π stacking|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o220-o221 (2015)",CC BY +Crystal structure of 4-azidomethyl-6-isopropyl-2H-chromen-2-one,M. S. Krishnamurthy|Noor Shahina Begum|D. Shamala|K. Shivashankar,10.1107/S2056989015004387,https://doaj.org/article/55e980a27dae47c3ac6c07d327a65afd,01/04/2015,EN,crystal structure|2H-chromen-2-one|π–π interactions|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o227-o228 (2015)",CC BY +"Crystal structure of 2-{[1-(4-bromobenzyl)-1H-1,2,3-triazol-4-yl]methoxy}naphthalene-1,4-dione",Rajamani Raja|Subramani Kandhasamy|Paramasivam T. Perumal|A. SubbiahPandi,10.1107/S2056989015004429,https://doaj.org/article/1da66ebdcbf2458b852f080ab35664cf,01/04/2015,EN,crystal structure|triazole|naphthalene|hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o231-o232 (2015)",CC BY +Crystal structure of N-[(2-hydroxynaphthalen-1-yl)(4-methylphenyl)methyl]acetamide,Sharanbasappa Khanapure|Gajanan Rashinkar|Tarulata Chhowala|Sumati Anthal|Rajni Kant,10.1107/S2056989015004661,https://doaj.org/article/194e93bd9abe42388355288ff1ad718b,01/04/2015,EN,crystal structure|naphthalene|acetamide|π–π interactions|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o235-o235 (2015)",CC BY +"Crystal structure of 3-mesityl-1-[(pyridin-2-yl)methyl]-3,4,5,6-tetrahydropyrimidin-1-ium bromide monohydrate",Qi Quo|Liangru Yang|Pu Mao|Yongmei Xiao|Jinwei Yuan,10.1107/S2056989015003989,https://doaj.org/article/7775e99d5d9d489aa4a8ce7570aa4ccd,01/04/2015,EN,crystal structure|NHC precursor|tetrahydropyrimidinium|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o224-o224 (2015)",CC BY +"Crystal structure of μ-oxido-1,1′κ2O:O-bis{tetra-μ-oxido-1:2κ2O:O;1:3κ2O:O;2:3κ4O:O-tris[1,2,3(η5)-pentamethylcyclopentadienyl]-trianglo-trititanium(IV)}",Adrián Pérez-Redondo|Avelino Martín,10.1107/S2056989015004041,https://doaj.org/article/19f98048e9aa4607adde5d2c19ddd45d,01/04/2015,EN,crystal structure|titanium oxide|pentamethylcyclopentadienyl ligand|organometallic|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp m97-m97 (2015)",CC BY +Crystal structure of bis{(Z)-(benzylamino)[(5Z)-2-(benzylimino-κN)-5-(2-methoxy-2-oxoethylidene)-4-oxothiolan-3-ylidene]methanethiolato-κS}copper(II),Konstantin Obydennov|Liliya Khamidullina|Pavel Slepukhin|Yury Morzherin,10.1107/S2056989015005022,https://doaj.org/article/88b2fca5a09c46d9a2916d498d2dffad,01/04/2015,EN,crystal structure|copper(II) complex|thioamide|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp m93-m94 (2015)",CC BY +"Crystal structure of tris[μ2-bis(diphenylphosphanyl)methane-κ2P:P′]di-μ3-bromido-trisilver(I) bromide–N,N′-phenylthiourea (1/1)",Arunpatcha Nimthong-Roldán|Yupa Wattanakanjana|Jintana Rodkeaw,10.1107/S2056989015005150,https://doaj.org/article/377e14ecb80b42ccbaad8aa923af9871,01/04/2015,EN,"crystal structure|silver complex|N,N′-phenylthiourea|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp m89-m90 (2015)",CC BY +"Crystal structure of a binuclear nickel(II) complex constructed of 1H-imidazo[4,5-f][1,10]phenanthroline and doubly deprotonated benzene-1,3,5-tricarboxylic acid",Ying Lv|Xiang-Rong Hao,10.1107/S205698901500420X,https://doaj.org/article/cd7e6a2ea67043f1a80ad599b0378ee0,01/04/2015,EN,"crystal structure|nickel(II) complex|binuclear cluster|1H-imidazo[4,5-f][1,10]phenanthroline|benzene-1,3,5-tricarboxylic acid|hydrogen bonding|π–π stacking|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp m95-m96 (2015)",CC BY +"Crystal structure of {bis[2-(3,5-dimethylpyrazol-1-yl-κN2)ethyl]amine-κN}chloridoplatinum(II) chloride dihydrate",María de los Angeles Mendoza|Sylvain Bernès|Guillermo Mendoza-Díaz,10.1107/S2056989015005307,https://doaj.org/article/8a1f8da229b446e79d8073d4b2373b19,01/04/2015,EN,"crystal structure|coordination compounds|bis[2-(3,5-dimethylpyrazol-1-yl)ethyl]amine (pza) ligand|bis(pyrazol-1-yl)amine|platinum(II) complex|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp m98-m99 (2015)",CC BY +Crystal structure of 4-azidomethyl-6-tert-butyl-2H-chromen-2-one,Nasseem El-Khatatneh|Chandra|D. Shamala|K. Shivashankar|Mukhokosi Emma Panzi|M. Mahendra,10.1107/S205698901500290X,https://doaj.org/article/26d305df311f4c648d833a65e5ec4fd6,01/04/2015,EN,crystal structure|chromene|coumarin|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp o218-o219 (2015)",CC BY +"Crystal structure of catena-poly[[diaquacadmium(II)]-μ-3,3′-(1,3-phenylene)diacrylato]",Xiao-Ping Zhang|Xin Chen|Kun-Lin Huang,10.1107/S2056989015005411,https://doaj.org/article/49c9b63ed1ae42d7ac105951ff99bc7f,01/04/2015,EN,V-shaped ligand|helical chain|chiral coordination polymer|cadmium|crystal structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp m91-m92 (2015)",CC BY +Crystal structure of trans-dihydridobis[tris(dimethylamino)phosphane-κP]platinum(II),Emma L. Downs|Lev N. Zakharov|David R. Tyler,10.1107/S2056989015004351,https://doaj.org/article/da428b3e6b314182930965f1e26e7f25,01/04/2015,EN,crystal structure|tris(dimethylamino)phosphane|platinum(II) complex|ligand-assisted hydration|nitrile hydration|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp m83-m84 (2015)",CC BY +Crystal structure of aquabis[2-(1H-benzimidazol-2-yl-κN3)aniline-κN]zinc dinitrate,Yongtae Kim|Sung Kwon Kang,10.1107/S2056989015004636,https://doaj.org/article/b227ecb06d7841f28ef0d97790ab71fe,01/04/2015,EN,crystal structure|zinc complex|benzimidazole|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp m85-m86 (2015)",CC BY +Crystal structure of bromidonitrosylbis(triphenylphosphane-κP)nickel(II),Rose Hockley|Hira Irshad|Tippu S. Sheriff|Majid Motevalli|Sarantos Marinakis,10.1107/S2056989015004703,https://doaj.org/article/ce9bd96d52e34410ad4b8b95196b5c0c,01/04/2015,EN,crystal structure|nickel complex|nitrosyl complex|triphenylphosphane ligand|hydrogen bonds|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp m87-m88 (2015)",CC BY +Crystal structure of (E)-N-[(2-chloro-6-methoxyquinolin-3-yl)methylidene]-9-ethyl-9H-carbazol-3-amine,Kannan Thirumurthy|Ganesamoorthy Thirunarayanan|S. Murugavel,10.1107/S2056989015005794,https://doaj.org/article/1c5d990b94cf4a6baf3647bee5765efe,01/04/2015,EN,crystal structure|crystal packing|quinoline|carbazole|9-ethyl-9H-carbazol-3-amine|C—H...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 421-423 (2015)",CC BY +"Crystal structure of heptakis(2,6-dimethylphenyl isocyanide-κC)vanadium(I) iodide",Mikhail E. Minyaev|John E. Ellis,10.1107/S2056989015006015,https://doaj.org/article/efaeaa804f0d416fae2161928996c24d,01/04/2015,EN,"crystal structure|homoleptic seven-coordinate vanadium(I) complex|isocyanide|iodide,|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 431-434 (2015)",CC BY +"Crystal structure of (E)-N-(3,3-diphenylallylidene)-9-ethyl-9H-carbazol-3-amine",Kannan Thirumurthy|Ganesamoorthy Thirunarayanan|S. Murugavel,10.1107/S2056989015005770,https://doaj.org/article/af08ca9693eb40b78ab597f39c106fc3,01/04/2015,EN,crystal structure|carbazole|9-ethyl-9H-carbazol-3-amine|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 418-420 (2015)",CC BY +"Crystal structure of (2E)-1-(4-hydroxy-1-methyl-2-oxo-1,2-dihydroquinolin-3-yl)-3-(4-hydroxy-3-methoxyphenyl)prop-2-en-1-one",Peter Mangwala Kimpende|Ngoc Thanh Nguyen|Minh Thao Nguyen|Quoc Trung Vu|Luc Van Meervelt,10.1107/S2056989015005630,https://doaj.org/article/9d3e46473ee74958b227353599c93dea,01/04/2015,EN,"crystal structure|4-hydroxy-1,2-dihydroquinolin-2(1H)-one|α,β-unsaturated ketones|hydrogen bonding|π–π interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 424-426 (2015)",CC BY +Crystal structure of bis(4-acetylpyridine-κN)bis(ethanol-κO)bis(thiocyanato-κN)manganese(II),Julia Werner|Inke Jess|Christian Näther,10.1107/S2056989015004533,https://doaj.org/article/54b1373e5a8a4e7ebc5f5e6f76f3907d,01/04/2015,EN,crystal structure|manganese(II)|octahedral coordination|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp m81-m82 (2015)",CC BY +Crystal structure of (E)-2-[(2-hydroxy-4-methoxyphenyl)(phenyl)methylidene]-N-phenylhydrazine-1-carboxamide,C. F. Annie|M. Sithambaresan|M. R. Prathapachandra Kurup,10.1107/S2056989015005757,https://doaj.org/article/f8ddf9e1356c4a4b8f0b983f08d4c99e,01/04/2015,EN,crystal structure|hydrazinecarboxamide|supramolecular|hydrogen bonding|C=O...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 427-430 (2015)",CC BY +"Crystal structure of dichlorido{2,6-bis[(3-phenyl-1H-pyrazol-1-yl)methyl]pyridine}cobalt(II)",Kyung-sun Son|Jeong Oh Woo|Daeyoung Kim|Sung Kwon Kang,10.1107/S2056989015003862,https://doaj.org/article/e03400e629ee48969492b9e057db76a6,01/04/2015,EN,crystal structure|CoII complex|pyrazolylpyridyl|C—H ...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp m75-m76 (2015)",CC BY +Crystal structure of bis(dimethylammonium) hexaaquacobalt(II) bis(sulfate) dihydrate,Peter Held,10.1107/S2056989015003400,https://doaj.org/article/7d9236cb96ad4ae5a6ff49c2864a8242,01/04/2015,EN,crystal structure|dimethylammonium salt|hexaaquacobalt(II) salt|sulfate|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp m77-m78 (2015)",CC BY +"Crystal structure of catena-poly[[silver(I)-{μ-2,6-bis[(1H-pyrazol-1-yl)methyl]pyridine-κ3N1,N2:N2′}] nitrate]",Daeyoung Kim|Sung Kwon Kang,10.1107/S2056989015004120,https://doaj.org/article/dd2cc297573e45fc8035c545d03064a1,01/04/2015,EN,"crystal structure|silver(I) complex|one-dimensional coordination polymer|2,6-bis[(1H-pyrazol-1-yl)methyl]pyridine|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp m79-m80 (2015)",CC BY +"Crystal structure of catena-poly[[aquabis(4-formylbenzoato)-κ2O1,O1′;κO1-zinc]-μ-pyrazine-κ2N:N′]",Gülçin Şefiye Aşkın|Fatih Çelik|Nefise Dilek|Hacali Necefoğlu|Tuncer Hökelek,10.1107/S2056989015005472,https://doaj.org/article/20267e856dd146fe8b8f9c347af61ae4,01/04/2015,EN,crystal structure|zinc|transition metal complexes of benzoic acid derivatives|hydrogen bonding|π–π interactions|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 402-405 (2015)",CC BY +"Crystal structures of 2-(4-nitrophenyl)-3-phenyl-2,3-dihydro-4H-1,3-benzothiazin-4-one and 2-(2-nitrophenyl)-3-phenyl-2,3-dihydro-4H-1,3-benzothiazin-4-one",Hemant Yennawar|Aaron S. Cali|Yiwen Xie|Lee J. Silverberg,10.1107/S2056989015004545,https://doaj.org/article/5a5cdcc1559c4fcaa5673b8cab1da613,01/04/2015,EN,crystal structure|benzothiazine|screw-boat pucker|nitro-group interactions|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 414-417 (2015)",CC BY +"Crystal structure of {2,2′-[N,N′-bis(pyridin-2-ylmethyl)cyclohexane-trans-1,2-diyldi(nitrilo)]diacetato}cobalt(III) hexafluoridophosphate",Craig C. McLauchlan|Daniel S. Kissel|Albert W. Herlinger,10.1107/S2056989015005149,https://doaj.org/article/debfbe73821a4dcfbb1b60fbc9fdf3cc,01/04/2015,EN,crystal structure|polyaminocarboxylic acid|cobalt(III)|chelating ligand|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 380-384 (2015)",CC BY +"The crystal structures of three clozapinium salts: different molecular configurations, and supramolecular assembly in one, two and three dimensions",Manpreet Kaur|Jerry P. Jasinski|Hemmige S. Yathirajan|Channappa N. Kavitha|Christopher Glidewell,10.1107/S205698901500554X,https://doaj.org/article/ca57cd5d075945f587c9d7bd231f7641,01/04/2015,EN,crystal structure|clozapinium|crystal structure|molecular configuration|hydrogen bonding|supramolecular assembly|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 406-413 (2015)",CC BY +Crystal structure of ruthenocenecarbonitrile,Frank Strehler|Marcus Korb|Heinrich Lang,10.1107/S205698901500540X,https://doaj.org/article/54ffb23a284a43d19fc2b181efd8a7a6,01/04/2015,EN,crystal structure|ruthenocene|ruthenocenecarbonitrile|sandwich compound|nitrile|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 398-401 (2015)",CC BY +Crystal structure of (2E)-2-methoxyimino-2-{2-[(2-methylphenoxy)methyl]phenyl}-N′-(4-nitrobenzylidene)ethanohydrazide,Chetan Shrimandhar Shripanavar|Ray J. Butcher,10.1107/S2056989015004569,https://doaj.org/article/973337b8f2694aaca00ea4d569f9b554,01/04/2015,EN,crystal structure|kresoxim-methyl derivatives|broad spectrum fungicides|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 377-379 (2015)",CC BY +"Crystal structure of the co-crystal fac-triaquatris(thiocyanato-κN)iron(III)–2,3-dimethylpyrazine (1/3)",Olesia I. Kucheriv|Sergii I. Shylin|Tetiana A. Ilina|Sebastian Dechert|Il'ya A. Gural'skiy,10.1107/S2056989015004831,https://doaj.org/article/5b902e73fed44faa9731bda1d8767863,01/04/2015,EN,crystal structure|FeIII complex|isothiocyanate ligand|pyrazine|co-crystal|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 374-376 (2015)",CC BY +Structure cristalline de la triple molybdate Ag0.90Al1.06Co2.94(MoO4)5,Rawia Nasri|Saïda Fatma Chérif|Mohamed Faouzi Zid,10.1107/S2056989015005290,https://doaj.org/article/24d2ba1aeec94eecb8c80ab5abe28923,01/04/2015,EN,triple molybdates|hexakis(molybdate)|open-framework structure|crystal structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 388-391 (2015)",CC BY +"Crystal structure of (E)-2-{[(6-methoxy-1,3-benzothiazol-2-yl)imino]methyl}phenol",Yousef Hijji|Belygona Barare|Gilbert Wairia|Ray J. Butcher|Jan Wikaira,10.1107/S2056989015005228,https://doaj.org/article/b11648797504474e8b936b966f0c2367,01/04/2015,EN,crystal structure|aminobenzothiazole derivatives|aminothiazole Schiff bases|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 385-387 (2015)",CC BY +"Crystal structures of {[Cu(Lpn)2][Fe(CN)5(NO)]·H2O}n and {[Cu(Lpn)2]3[Cr(CN)6]2·5H2O}n [where Lpn = (R)-propane-1,2-diamine]: two heterometallic chiral cyanide-bridged coordination polymers",Olha Sereda|Helen Stoeckli-Evans,10.1107/S2056989015005253,https://doaj.org/article/2756b55986994dee98e3fb2031bfa3fd,01/04/2015,EN,"crystal structure|chiral|bimetallic|cyanide-bridged|(R)-propane-1,2-diamine|coordination polymers|two-dimensional network|three-dimensional framework|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 392-397 (2015)",CC BY +"Crystal structure of di-μ-hydroxido-bis[aqua(1,10-phenanthroline-κ2N,N′)copper(II)] naphthalene-2,6-dicarboxylate hexahydrate",Daniela Arias-Zárate|María Fernanda Ballesteros-Rivas|Rubén A. Toscano|Jesús Valdés-Martínez,10.1107/S2056989015004338,https://doaj.org/article/5ea3ee7f1ad0451bb80c347c6f2fa2fc,01/04/2015,EN,crystal structure|binuclear copper(II) complex|crystal engineering|hydrogen bonding|π–π stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 360-362 (2015)",CC BY +"Crystal structure of bis(fluorosulfato-κO)xenon(II), Xe(SO3F)2",Moritz Malischewski|Konrad Seppelt,10.1107/S2056989015004788,https://doaj.org/article/85027702f26648d989ec61334c8ba551,01/04/2015,EN,crystal structure|xenon|fluorosulfate|oxidizer|noble gas|xenon–oxygen compound|superacid|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 363-365 (2015)",CC BY +Crystal structure of 9-methacryloylanthracene,Aditya Agrahari|Patrick O. Wagers|Steven M. Schildcrout|John Masnovi|Wiley J. Youngs,10.1107/S2056989015004090,https://doaj.org/article/e17b4c69285e435d90a59ff9aaaac210,01/04/2015,EN,crystal structure|aldol|methylation|acetylanthracene|stereochemistry|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 357-359 (2015)",CC BY +"Serendipitous preparation of fac-(acetonitrile-κN)trichlorido[(1,2,5,6-η)-cycloocta-1,5-diene]iridium(III)",David M. Morris|Joseph S. Merola,10.1107/S2056989015004855,https://doaj.org/article/83b79d2a01c44599a7d77dae23db54de,01/04/2015,EN,crystal structure|iridium|cyclooctadiene|acetonitrile|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 371-373 (2015)",CC BY +Crystal structure of cis-diamminebis(nitrito-κN)platinum(II),Volker Kahlenberg|Thomas Gelbrich|Richard Tessadri|Frederik Klauser,10.1107/S2056989015004879,https://doaj.org/article/64f1451c19bf4c49a2b564a9449612bc,01/04/2015,EN,crystal structure|hydrogen bonding|topology|platinum(II)|cis-isomer|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 366-370 (2015)",CC BY +"Crystal structure of [2,6-difluoro-3-(pyridin-2-yl-κN)pyridin-4-yl-κC4](pentane-2,4-dionato-κ2O,O′)platinum(II)",Ki-Min Park|Jieun Lee|Youngjin Kang,10.1107/S2056989015004375,https://doaj.org/article/beb7bb72753a4557b0c9b4b93f05ef5f,01/04/2015,EN,crystal structure|platinum(II)|CNO2 coordination set|hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 354-356 (2015)",CC BY +"Crystal structure of bis(2-{1-[(E)-(4-fluorobenzyl)imino]ethyl}phenolato-κ2N,O)palladium(II)",Amalina Mohd Tajuddin|Hadariah Bahron|Hamizah Mohd Zaki|Karimah Kassim|Suchada Chantrapromma,10.1107/S2056989015004405,https://doaj.org/article/ead817c8f428424a9d3524ccf527e1dc,01/04/2015,EN,crystal structure|PdII complex|NO donors|Schiff base|catalyst activity|hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 350-353 (2015)",CC BY +Crystal structure of bis[(1-ammonio-1-phosphonoethyl)phosphonato]tetraaquacadmium dihydrate: a powder X-ray diffraction study,Mwaffak Rukiah|Thaer Assaad,10.1107/S2056989015004028,https://doaj.org/article/3c6615b1980941c682476c05e6f092bf,01/04/2015,EN,crystal structure|bisphosphonate complexes|complexes|cadmium|powder diffraction|octahedral coordination|zwitterion|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 342-345 (2015)",CC BY +Crystal structure of catena-poly[[diaquabis(4-formylbenzoato-κO1)cobalt(II)]-μ-pyrazine-κ2N:N′],Gülçin Şefiye Aşkın|Fatih Çelik|Nefise Dilek|Hacali Necefoğlu|Tuncer Hökelek,10.1107/S205698901500403X,https://doaj.org/article/1afd87c6208246a386e179de8ab7fbf6,01/04/2015,EN,crystal structure|cobalt(II)|transition metal complexes|benzoic acid derivatives|one-dimensional coordination polymer|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 339-341 (2015)",CC BY +"Crystal structure of tetraaqua[2-(pyridin-2-yl)-1H-imidazole-κ2N2,N3]iron(II) sulfate",Zouaoui Setifi|Fatima Setifi|Bojana M. Francuski|Sladjana B. Novaković|Hocine Merazig,10.1107/S2056989015004417,https://doaj.org/article/82c47982b7644b088acf04a6e381623a,01/04/2015,EN,crystal structure|2-(pyridin-2-yl)-1H-imidazole|iron(II) complex|hydrogen bonding|C—H...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 346-349 (2015)",CC BY +"Crystal structures of the water and acetone monosolvates of bis[4′-(pyridin-4-yl)-2,2′:6′,2′′-terpyridine]manganese(II) bis(hexafluoridophosphate)",Leandro M. O. Lourenço|Filipe A. Almeida Paz|José A. Fernandes,10.1107/S2056989015003503,https://doaj.org/article/9a9ed41d1a834138b9d907211fb77a80,01/04/2015,EN,crystal structure|metalloligand|manganese|terpyridine|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 330-335 (2015)",CC BY +Crystal structure of the tripeptide N-(benzyloxycarbonyl)glycylglycyl-l-norvaline,Sumesh Nicholas,10.1107/S205698901500393X,https://doaj.org/article/4d8a846095c14a14875497c69c792553,01/03/2015,EN,crystal structure|peptide|conformation|norvaline|glycine|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o216-o217 (2015)",CC BY +"Crystal structure of 5-{4′-[(2-{2-[2-(2-ammonioethoxy)ethoxy]ethoxy}ethyl)carbamoyl]-4-methoxy-[1,1′-biphenyl]-3-yl}-3-oxo-1,2,5-thiadiazolidin-2-ide 1,1-dioxide: a potential inhibitor of the enzyme protein tyrosine phosphatase 1B (PTP1B)",Kasi Viswanatharaju Ruddraraju|Roman Hillebrand|Charles L. Barnes|Kent S. Gates,10.1107/S2056989015003850,https://doaj.org/article/ea114d6c607641d5962663726b259e7e,01/04/2015,EN,"crystal structure|PTP1B|inhibitor|1,2,5-thiadiazolidin-3-one 1,1-dioxide|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 4, Pp 336-338 (2015)",CC BY +"Crystal structure of (E)-2-[1-(1,3-benzodioxol-5-yl)ethylidene]-N-ethylhydrazine-1-carbothioamide",Adriano Bof de Oliveira|Renan Lira de Farias|Christian Näther|Inke Jess,10.1107/S2056989015003837,https://doaj.org/article/f140baac7fd84216bcedb543674de355,01/03/2015,EN,"crystal structure|thiosemicarbazone|benzo[d][1,3]dioxole|N—H...S hydrogen bonds|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o208-o209 (2015)",CC BY +"Crystal structure of 2-benzamido-N-(2,2-diethoxyethyl)benzamide",Abdelaaziz Ouahrouch|Moha Taourirte|Hassan B. Lazrek|Joachim W. Engels|Michael Bolte,10.1107/S2056989015003370,https://doaj.org/article/c47784252f6b4d838d4c604eeadf6c6e,01/03/2015,EN,crystal structure|N—H...O hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o214-o215 (2015)",CC BY +"Crystal structure of 4,6-diamino-2-(methylsulfanyl)pyridine-3-carbonitrile",Shaaban K. Mohamed|Kyle S. Knight|Mehmet Akkurt|Bahgat R. M. Hussein|Mustafa R. Albayati,10.1107/S2056989015003114,https://doaj.org/article/49d518c96b644ba6ba17130e57031eba,01/03/2015,EN,"crystal structure|4,6-diamino-2-(methylsulfanyl)pyridine-3-carbonitrile|multifunctional pyridines|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o197-o198 (2015)",CC BY +"Crystal structure of 1-{1-[2-(phenylselanyl)phenyl]-1H-1,2,3-triazol-4-yl}cyclohexan-1-ol",Leandro R. S. Camargo|Julio Zukerman-Schpector|Anna M. Deobald|Antonio L. Braga|Edward R. T. Tiekink,10.1107/S2056989015003242,https://doaj.org/article/51b26c0b4c9d49bfaf4d4308e8ace079,01/03/2015,EN,crystal structure|organoselenium|hydrogen bonding|Se...N halogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o200-o201 (2015)",CC BY +"Crystal structure of 1-{2-[(2-methoxyphenyl)selanyl]phenyl}-4-phenyl-1H-1,2,3-triazole",Leandro R. S. Camargo|Julio Zukerman-Schpector|Anna M. Deobald|Antonio L. Braga|Edward R. T. Tiekink,10.1107/S2056989015003230,https://doaj.org/article/e237b36f5ca64b55b6c3f07ba5ef4a74,01/03/2015,EN,crystal structure|organoselenium|Se...O halogen bonding|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o202-o203 (2015)",CC BY +"Crystal structure of 4-phenyl-1-{2-[(2,4,6-trimethylphenyl)selanyl]phenyl}-1H-1,2,3-triazole",Leandro R. S. Camargo|Julio Zukerman-Schpector|Anna M. Deobald|Antonio L. Braga|Edward R. T. Tiekink,10.1107/S2056989015003229,https://doaj.org/article/85220518958a47e4bac1b446bbe6bbaf,01/03/2015,EN,crystal structure|organoselenium|hydrogen bonding|Se...N halogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o204-o205 (2015)",CC BY +Crystal structure of S-hexyl (E)-3-(4-methoxybenzylidene)dithiocarbazate,M. S. Begum|M. B. H. Howlader|R. Miyatake|E. Zangrando|M. C. Sheikh,10.1107/S2056989015003199,https://doaj.org/article/b0d974763a534a81b4189fb452511b4e,01/03/2015,EN,crystal structure|dithiocarbazate|S-containing Schiff bases|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o199-o199 (2015)",CC BY +"Crystal structure of ethyl 6-methyl-2-oxo-4-(3,4,5-trimethoxyphenyl)-1,2,3,4-tetrahydropyrimidine-5-carboxylate",J. J. Novina|G. Vasuki|M. Suresh|M. Syed Ali Padusha,10.1107/S2056989015003576,https://doaj.org/article/c50e6b7001194337a2c447cf020fb23e,01/03/2015,EN,crystal structure|pyrimidine|hydrogen bonds|centrosymmetric dimer|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o206-o207 (2015)",CC BY +Crystal structure of 1-methoxypyrene,Eric G. Morales-Espinoza|Ernesto Rivera|Reyna Reyes-Martínez|Simón Hernández-Ortega|David Morales-Morales,10.1107/S2056989015003783,https://doaj.org/article/5f769afe0fb241498c66b3b4b1fbcc00,01/03/2015,EN,crystal structure|pyrene|organic photovoltaics|π–π interactions|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o210-o211 (2015)",CC BY +"Crystal structure of diethyl 2-amino-6-[(thiophen-3-yl)ethynyl]azulene-1,3-dicarboxylate",Sebastian Förster|Wilhelm Seichter|Edwin Weber,10.1107/S2056989015003898,https://doaj.org/article/034d0388285247b483a701806baa596b,01/03/2015,EN,crystal structure|azulene|thiophene|3-thienylethynyl|hydrogen bonds|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o212-o213 (2015)",CC BY +"Crystal structure of 2-(3-bromophenyl)-1,3-dithiane",Julio Zukerman-Schpector|Ignez Caracelli|Hélio A. Stefani|Olga Gozhina|Edward R. T. Tiekink,10.1107/S2056989015002832,https://doaj.org/article/d4cc9e99260e48cf88601de54607e2f2,01/03/2015,EN,"crystal structure|1,3-dithiane|conformation|C—H...π interactions|π–π interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o179-o180 (2015)",CC BY +"Crystal structure of 1-butyl-2,3-dimethylimidazolium dicarba-7,8-nido-undecaborate",M. J. Klemes|L. Soderstrom|J. L. Hunting|A. S. Larsen,10.1107/S2056989015002765,https://doaj.org/article/458717f78e154004a760210cb14d658e,01/03/2015,EN,crystal structure|carborane cage anion|imidazolium cation|bridging B—H—B bond|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o183-o183 (2015)",CC BY +"Crystal structure of 2-{[(naphthalen-1-yl)oxy]methyl}-5-(2,4,5-trifluorophenyl)-1,3,4-oxadiazole",Muniyappan Govindhan|Kathavarayan Subramanian|Vijayan Viswanathan|Devadasan Velmurugan,10.1107/S2056989015003205,https://doaj.org/article/ceae640a554245f581ca9f943c513a01,01/03/2015,EN,"crystal structure|naphthalen-1-yloxy|trifluorophenyl|1,3,4-oxadiazole|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o190-o191 (2015)",CC BY +"Crystal structure of 5,7-diphenyl-4,7-dihydrotetrazolo[1,5-a]pyrimidine",Ivy K. Price|Celine Rougeot|Jason E. Hein,10.1107/S2056989015002984,https://doaj.org/article/be7947601cb441bea47bcbc32782d9ec,01/03/2015,EN,"crystal structure|tetrazolo[1,5-a]pyrimidine|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o192-o192 (2015)",CC BY +"Crystal structure of 2-methylpiperazine-1,4-diium bis(hydrogen maleate)",Intissar Wecharine|Arto Valkonen|Mohamed Rzaigui|Wajda Smirani Sta,10.1107/S2056989015003102,https://doaj.org/article/91a624858b254e68b7bce4a63c86a0fb,01/03/2015,EN,"crystal structure|2-methylpiperazine-1,4-diium|hydrogen maleate|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o193-o194 (2015)",CC BY +"Crystal structure of 2-[(3S,4S)-4-(anthracen-9-yl)-1-(4-methoxyphenyl)-2-oxoazetidin-3-yl]-2-aza-2H-phenalene-1,3-dione unknown solvate",Ísmail Çelik|Mehmet Akkurt|Aliasghar Jarrahpour|Javad Ameri Rad|Ömer Çelik,10.1107/S2056989015002959,https://doaj.org/article/652987b89c1f4f53810bc9e1133e1993,01/03/2015,EN,crystal structure|β-lactam ring|2-azetidinone|anthracene|intramolecular C—H...N hydrogen bond|C—H...π interactions|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o184-o185 (2015)",CC BY +"Crystal structure of 2-(3-nitrophenyl)-1,3-dithiane",Ignez Caracelli|Julio Zukerman-Schpector|Hélio A. Stefani|Olga Gozhina|Edward R. T. Tiekink,10.1107/S2056989015002844,https://doaj.org/article/339406f3b2a64dd9bf38ffabf996ff13,01/03/2015,EN,"crystal structure|1,3-dithiane|conformation|N—O...π interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o181-o182 (2015)",CC BY +Crystal structure of 2-hydroxy-N-(2-hydroxyethyl)-N-{2-hydroxy-3-[(E)-N-hydroxyethanimidoyl]-5-methylbenzyl}ethanaminium acetate monohydrate,Gary S. Nichol|Jamie M. Frost|Sergio Sanz|Euan K. Brechin,10.1107/S2056989015002418,https://doaj.org/article/07f11f973dd747c0ae0bef026e2f2177,01/03/2015,EN,crystal structure|hydrogen bonding|hydrate|organic salt|magnetism|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o186-o187 (2015)",CC BY +Crystal structure of methyl (E)-2-(1-methyl-2-oxoindolin-3-ylidene)acetate,M. P. Savithri|P. S. Yuvaraj|B. S. R. Reddy|R. Raja|A. SubbiahPandi,10.1107/S2056989015003217,https://doaj.org/article/93c4fe432f3d4c27baaaa337d9c1053b,01/03/2015,EN,crystal structure|indole|3-substituted indoles|C—H...O hydrogen bonds|C—H...π interactions|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o188-o189 (2015)",CC BY +"Crystal structure of ethyl (2S,2′R)-1′-benzyl-3-oxo-3H-dispiro[1-benzothiophene-2,3′-pyrrolidine-2′,11′′-indeno[1,2-b]quinoxaline]-4′-carboxylate",J. Govindaraj|R. Raja|M. Suresh|R. Raghunathan|A. SubbiahPandi,10.1107/S2056989015003187,https://doaj.org/article/b739f624656e4716a1c892028e03efdd,01/03/2015,EN,"crystal structure|dispiro compounds|ester|hydrogen bonding|benzothiophene|pyrrolidine|indeno[1,2-b]quinoxaline|biological activity|π–π interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o195-o196 (2015)",CC BY +Crystal structure of N-[4-amino-5-cyano-6-(methylsulfanyl)pyridin-2-yl]-2-chloroacetamide,Shaaban K. Mohamed|Kyle S. Knight|Mehmet Akkurt|Bahgat R. M. Hussein|Mustafa R. Albayati,10.1107/S2056989015002431,https://doaj.org/article/b8cf2aa72792480e857cc3941e150d84,01/03/2015,EN,crystal structure|N-[4-amino-5-cyano-6-(methylsulfanyl)pyridin-2-yl]-2-chloroacetamide|polyfunctional pyridines|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o169-o170 (2015)",CC BY +"Crystal structure of 1-(2-chloroacetyl)-3,3-dimethyl-2,6-di-p-tolylpiperidin-4-one",S. Jothivel|Jibon Kotoky|S. Kabilan,10.1107/S2056989015002613,https://doaj.org/article/bbb95bd7561b4b1b956b1f2567d7a914,01/03/2015,EN,crystal structure|piperidones|piperidin-4-one|p-tolyl|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o173-o174 (2015)",CC BY +"Crystal structure of 5-(1,3-dithian-2-yl)-2H-1,3-benzodioxole",Julio Zukerman-Schpector|Ignez Caracelli|Hélio A. Stefani|Olga Gozhina|Edward R. T. Tiekink,10.1107/S2056989015002455,https://doaj.org/article/98a356a4c2384e46a5fbcba2c4f30f09,01/03/2015,EN,"crystal structure|1,3-dithiane|conformation|1,3-benzodioxole|C—H...π interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o167-o168 (2015)",CC BY +"Crystal structure of diethyl 2,2′-[((1E,1′E)-{[(1R,4R)-cyclohexane-1,4-diyl]bis(azanylylidene)}bis(methanylylidene))bis(1H-pyrrole-2,1-diyl)]diacetate",Jasim Alshawi|Muoayed Yousif|Karzan H. Zangana|Inigo J. Vitorica Yrezabal|Richard Winpenny|Mohamad J. Al-Jeboori,10.1107/S2056989015002674,https://doaj.org/article/3d2882e881a54d57825a8e75062f3f34,01/03/2015,EN,crystal structure|Schiff base|bispyrrole|C—H...O hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o165-o166 (2015)",CC BY +Crystal structure of N-[4-amino-5-cyano-6-(methylsulfanyl)pyridin-2-yl]acetamide hemihydrate,Mehmet Akkurt|Kyle S. Knight|Shaaban K. Mohamed|Bahgat R. M. Hussein|Mustafa R. Albayati,10.1107/S205698901500256X,https://doaj.org/article/4e2edc93e38547969da048c0f8984990,01/03/2015,EN,crystal structure|poly-functional pyridines|acetamide|disorder|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o171-o172 (2015)",CC BY +"Crystal structure of 3-[(4-benzylpiperazin-1-yl)methyl]-5-(thiophen-2-yl)-2,3-dihydro-1,3,4-oxadiazole-2-thione",Fatmah A. M. Al-Omary|Ali A. El-Emam|Hazem A. Ghabbour|C. S. Chidan Kumar|Ching Kheng Quah|Hoong-Kun Fun,10.1107/S2056989015002273,https://doaj.org/article/9b447c3014024fbfa9f02fe39f0d2cef,01/03/2015,EN,"crystal structure|1,3,4-oxadiazole|piperazin-1-yl|disorder|π–π interactions|S...S contacts|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o175-o176 (2015)",CC BY +Crystal structure of 4-bromoanilinium 4-methylbenzenesulfonate,P. K. Sivakumar|M. Krishna Kumar|R. Mohan Kumar|G. Chakkaravarthi|R. Kanagadurai,10.1107/S2056989015002686,https://doaj.org/article/13b579b5015349f6b734bc2c6ba80f91,01/03/2015,EN,crystal structure|anilinium|4-methylbenzenesulfonate|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o163-o164 (2015)",CC BY +Crystal structure of pseudoguainolide,Noureddine Beghidja|Samir Benayache|Fadila Benayache|David W. Knight|Benson M. Kariuki,10.1107/S2056989015002510,https://doaj.org/article/e004719980ad4afa98c42658b286bbde,01/03/2015,EN,crystal structure|plant extract|inula graveolens|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o162-o162 (2015)",CC BY +"Crystal structure of (4Z)-4-{[(2-chlorophenyl)amino](furan-2-yl)methylidene}-3-methyl-1-phenyl-4,5-dihydro-1H-pyrazol-5-one",Heng-Qiang Zhang|Xing Yang|Qiong Wu|Hong-Li Chen,10.1107/S2056989015002698,https://doaj.org/article/32bf0544838d427eb597d4c27276a2bd,01/03/2015,EN,crystal structure|pyrazolone|4-acylpyrazolone|o-chloroaniline|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o177-o178 (2015)",CC BY +"Crystal structure of 2-methylamino-3-nitro-4-p-tolylpyrano[3,2-c]chromen-5(4H)-one",J. Govindaraj|Y. AaminaNaaz|Jayabal Kamalraja|Paramasivam T. Perumal|A. SubbiahPandi,10.1107/S205698901500225X,https://doaj.org/article/a47907ecf7ad41d6a16f5d77ad1b7d6d,01/03/2015,EN,"crystal structure|pyrano[3,2-c]chromenone|biological activity|chromene derivatives|hydrogen bonding|crystal structure|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o158-o159 (2015)",CC BY +Crystal structure of (Z)-2-(1-benzyl-2-oxoindolin-3-ylidene)-N-phenylhydrazine-1-carbothioamide,G. Vimala|J. Haribabu|R. Karvembu|B. V. N. Phani Kumar|A. SubbiahPandi,10.1107/S2056989015002248,https://doaj.org/article/65ed84de919a49968142239e8ada4a7f,01/03/2015,EN,crystal structure|thiosemicarbazones|hydrazine|carbothioamide|2-oxoindolin-3-ylidene|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o160-o161 (2015)",CC BY +"Crystal structure of rac-3-hydroxy-2-(p-tolyl)-2,3,3a,4,7,7a-hexahydro-1H-4,7-methanoisoindol-1-one",Mehmet Aslantaş|Cumali Çelik|Ömer Çelik|Arzu Karayel,10.1107/S2056989015001942,https://doaj.org/article/87f72f26d3ce41c398119b93aef1f7eb,01/03/2015,EN,"crystal structure|methanoisoindol-1-one|methanoisoindole-1,3-dione|O—H...O hydrogen bonds|C—H...π interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o143-o144 (2015)",CC BY +"Crystal structure of 15-(naphthalen-1-yl)-7,7a,8,9,10,11-hexahydro-6a,12a-(methanoepoxymethano)indolizino[2,3-c]quinoline-6,13(5H)-dione",M. P. Savithri|M. Suresh|R. Raghunathan|R. Raja|A. SubbiahPandi,10.1107/S2056989015002017,https://doaj.org/article/97d9288bb9a54db7b98aaebb7338084f,01/03/2015,EN,crystal structure|quinoline|pyrrolidine|hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o150-o151 (2015)",CC BY +"Crystal structure of ethyl 1′,5-dimethyl-2′′,3-dioxo-3H-dispiro[benzo[b]thiophene-2,3′-pyrrolidine-2′,3′′-indoline]-4′-carboxylate",R. Raja|J. Govindaraj|M. Suresh|R. Raghunathan|A. SubbiahPandi,10.1107/S2056989015001528,https://doaj.org/article/f3d287bd6acf452d8faded2252d6a4c8,01/03/2015,EN,crystal structure|dispiro|benzothiophene|pyrrolidine|indoline|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o152-o153 (2015)",CC BY +"Crystal structure of ethyl 5′′-fluoro-2′′,3-dioxo-6′,7′,8′,8a'-tetrahydro-2′H,3H,5′H-dispiro[benzo[b]thiophene-2,1′-indolizine-3′,3′′-indoline]-2′-carboxylate",R. Raja|J. Govindaraj|M. Suresh|R. Raghunathan|A. SubbiahPandi,10.1107/S2056989015002121,https://doaj.org/article/eaa2e496e1aa43ac8fc026c550b9c38e,01/03/2015,EN,crystal structure|dispiro|benzothiophene|indolizine|indoline|F...F interactions|hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o156-o157 (2015)",CC BY +Crystal structure of 4-{[(naphthalen-2-yl)sulfonylamino]methyl}cyclohexanecarboxylic acid,Muhammad Danish|Muhammad Nawaz Tahir|Asif Hussain|Muhammad Ashfaq|Muhammad Nadeem Sadiq,10.1107/S2056989015002054,https://doaj.org/article/b96c777bf4954751a349b0be4fb71f0b,01/03/2015,EN,crystal structure|sulfonamides|tranexamic acid|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o145-o145 (2015)",CC BY +"Crystal structure of ethyl 2′′,3-dioxo-7′,7a'-dihydro-1′H,3H,3′H-dispiro[benzo[b]thiophene-2,6′-pyrrolo[1,2-c]thiazole-5′,3′′-indoline]-7′-carboxylate",M. P. Savithri|M. Suresh|R. Raghunathan|R. Raja|A. SubbiahPandi,10.1107/S2056989015002030,https://doaj.org/article/c0924522cb0743d0848738cc7242a73a,01/03/2015,EN,crystal structure|dispiro|benzothiophene|thiazole|pyrrolidine|indoline|hydrogen bonds|inversion dimers|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o148-o149 (2015)",CC BY +Crystal structure of 3-[2-(thiophen-3-yl)ethynyl]-2H-chromen-2-one,Ignez Caracelli|Stella H. Maganhi|Hélio A. Stefani|Karina Gueogjian|Edward R. T. Tiekink,10.1107/S2056989015002157,https://doaj.org/article/31ff8f2f1aa4482fa86de9107396f8a2,01/03/2015,EN,crystal structure|coumarin|asymmetric alkyne|C—H...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o154-o155 (2015)",CC BY +"Crystal structure of (3S)-3-acetoxy-17-(pyridin-3-yl)androsta-5,16-diene",Shengjun Zhou|Huaqi Huang|Rongbin Huang,10.1107/S2056989015001966,https://doaj.org/article/b55ee31934074118af34b9c5f97cfebb,01/03/2015,EN,"crystal structure|androsta-5,16-diene|hydrogen bonds|C(16) chain|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o146-o147 (2015)",CC BY +Crystal structure of diaqua(μ2-triethylenetetraminehexaacetato)dizinc tetrahydrate,Huan Liu|Li-Ping Lu,10.1107/S2056989015002108,https://doaj.org/article/fa01c4e3dcfa459e9bf6c427ebe83c23,01/03/2015,EN,Crystal structure|binuclear ZnII complex|triethylenetetraminehexaacetic acid|crystal structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp m55-m56 (2015)",CC BY +Crystal structure of chlorido(2-{[2-(4-chlorophenyl)hydrazin-1-ylidene-κN1](phenyl)methyl}pyridine-κN)(η5-pentamethylcyclopentadienyl)iridium(III) tetraphenylborate,Neelakandan Devika|Nandhagopal Raja|Subbiah Ananthalakshmi|Bruno Therrien,10.1107/S2056989015003023,https://doaj.org/article/a0e14e9ff1054d32819344667c78b71f,01/03/2015,EN,crystal structure|hydrazinylidenepyridine ligand|iridium(III) complex|pentamethylcyclopentadienyl|intramolecular C—H...Cl hydrogen bond|C—Cl...π interactions|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp m65-m66 (2015)",CC BY +Tetraaquabis[2-(2-nitrophenyl)acetato-κO]cobalt(II),Muhammad Danish|Muhammad Nawaz Tahir|Sana Iftikhar|Muhammad Asam Raza|Muhammad Ashfaq,10.1107/S2056989015002467,https://doaj.org/article/97d2499a510540d79be1769fbbbd8a93,01/03/2015,EN,crystal structure|cobalt(II) complex|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp m59-m60 (2015)",CC BY +"Crystal structure of 2,2′-bipyridine-1,1′-diium tetrachloridozincate",Jeyaraman Govindaraj|Subramani Thirumurugan|Antoni Samy Clara|Krishnamoorthy Anbalagan|Arunachalathevar SubbiahPandi,10.1107/S2056989015003175,https://doaj.org/article/8154d409e7f84a859b35861f46c54aeb,01/03/2015,EN,"crystal structure|2,2′-bipyridine-1,1′-diium|tetrachloridozincate|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp m67-m68 (2015)",CC BY +"Crystal structure of trichlorido(4′-ferrocenyl-2,2′:6′,2′′-terpyridine-κ3N,N′,N′′)iridium(III) acetonitrile disolvate",Bambar Davaasuren|Harihara Padhy|Alexander Rothenberger,10.1107/S2056989015003473,https://doaj.org/article/a480ae127a5d4a8eaac18299b42ff140,01/03/2015,EN,"crystal structure|iridium|4′-ferrocenyl-2,2′:6′,2′′-terpyridine|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp m69-m70 (2015)",CC BY +"Crystal structure of bis(η5-cyclopentadienyl)(1,4-di-tert-butylbuta-1-en-3-yn-1-yl)zirconium(IV) μ2-hydroxido-bis[tris(pentafluorophenyl)borate]",Vladimir V. Burlakov|Anke Spannenberg|Perdita Arndt|Uwe Rosenthal,10.1107/S2056989015003710,https://doaj.org/article/412d4461109848ca85f2be3da6adb508,01/03/2015,EN,crystal structure|zirconocene|buta-1-en-3-yne|borate anion|intramolecular O—H...F hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp m71-m72 (2015)",CC BY +"Crystal structure of [1,3-bis(diphenylphosphanyl)propane-κ2P,P′](N,N′-dimethylthiourea-κS)(thiocyanato-κN)copper(I)",Yupa Wattanakanjana|Arunpatcha Nimthong-Roldán|Janejira Ratthiwan,10.1107/S2056989015002479,https://doaj.org/article/6599bc75d1a44e17a6cf20deee0052b2,01/03/2015,EN,"crystal structure|N,N′-dimethylthiourea|copper(I) complex|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp m61-m62 (2015)",CC BY +"Crystal structure of bis[S-hexyl 3-(4-methylbenzylidene)dithiocarbazato-κ2N3,S]palladium(II)",M. Sabina Begum|M. Belayet Hossain Howlader|M. Chanmiya Sheikh|Ryuta Miyatake|Ennio Zangrando,10.1107/S2056989015002236,https://doaj.org/article/e3ca69baa63a4be088b6db07a0c87e91,01/03/2015,EN,crystal structure|palladium(II) complex|cis-ligand configuration|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp m63-m64 (2015)",CC BY +"Crystal structure of ethyl 1′,1′′-dimethyl-2′′,3-dioxo-3H-dispiro[benzo[b]thiophene-2,3′-pyrrolidine-2′,3′′-indoline]-4′-carboxylate",M. P. Savithri|M. Suresh|R. Raghunathan|R. Raja|A. SubbiahPandi,10.1107/S2056989015002042,https://doaj.org/article/f4d0f9703d33480a95162c6abda4f0c4,01/03/2015,EN,crystal structure|dispiro|benzothiophene|pyrrolidine|indole|C—H...O hydrogen bonds.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp o142-o142 (2015)",CC BY +"Crystal structure of bis(1-methyl-1H-imidazole-κN3)(5,10,15,20-tetraphenylporphyrinato-κ4N)iron(II)–1-methyl-1H-imidazole (1/2)",Ye Guan|Douglas R. Powell|George B. Richter-Addo,10.1107/S2056989015002364,https://doaj.org/article/a4bbbfb07ccb48e591ee767d5d94d648,01/03/2015,EN,crystal structure|model porphyrins|FeII complex|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp m57-m58 (2015)",CC BY +"Crystal structure of diaqua[5,10,15,20-tetrakis(4-bromophenyl)porphyrinato-κ4N]magnesium",Nesrine Amiri|Soumaya Nasri|Thierry Roisnel|Gérard Simonneaux|Habib Nasri,10.1107/S2056989015003722,https://doaj.org/article/768aa20548a74d538b19893d17d7ce65,01/03/2015,EN,crystal structure|magnesium porphyrin complex|O—H...Br hydrogen bonds|C—H...Br interactions|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp m73-m74 (2015)",CC BY +"Crystal structure of bis(μ2-4-tert-butyl-2-formylphenolato)-1:2κ3O1,O2:O1;3:4κ3O1,O2:O1-bis(4-tert-butyl-2-formylphenolato)-2κ2O1,O2;4κ2O1,O2-di-μ3-methoxido-1:2:3κ3O;1:3:4κ3O-di-μ2-methoxido-1:4κ2O;2:3κ2O-tetracopper(II)",Bernhard Eberhard Christian Bugenhagen|Marc Heinrich Prosenc,10.1107/S205698901500376X,https://doaj.org/article/e5ca05e2e66d490e8852ae5468bceecb,01/03/2015,EN,crystal structure|copper(II)|tetranuclear complex|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 324-326 (2015)",CC BY +Crystal structure of 1-bromo-2-(phenylselenyl)benzene,Bronte J. Charette|Jamie S. Ritch,10.1107/S205698901500345X,https://doaj.org/article/0f7f8328a57944a981bdaf3615480bf7,01/03/2015,EN,crystal structure|π–π interactions|organoselenium compounds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 327-329 (2015)",CC BY +"Crystal structure study of a cobaltoan dolomite from Kolwezi, Democratic Republic of Congo",Natale Perchiazzi,10.1107/S2056989015003126,https://doaj.org/article/3e753a107f954df0b72a85b32473532f,01/03/2015,EN,crystal structure|dolomite|cobaltoan|Kolwezi|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp i3-i3 (2015)",CC BY +Crystal structure of catena-poly[[trimethyltin(IV)]-μ-2-(2-nitrophenyl)acetato-κ2O:O′],Muhammad Danish|Muhammad Nawaz Tahir|Sana Iftikhar|Muhammad Asam Raza|Muhammad Ashfaq,10.1107/S205698901500198X,https://doaj.org/article/f33940e8e625401b9d8609c1c14e5229,01/03/2015,EN,crystal structure|one-dimensional coordination polymer|trimethyltin(IV) complex|π–π interaction|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp m52-m53 (2015)",CC BY +"Crystal structure of [1-(2,6-diisopropylphenyl)-2,4-bis(dimethylamino)-5-trimethylsilyl-1,3,5-triazapentadienyl-κ2N1,N5](triphenylphosphane-κP)copper(I)",Feiguang Li|Lei Yan|Hongbo Tong|Meisu Zhou,10.1107/S2056989015002169,https://doaj.org/article/3f0ae34c32d0413299de29b65212fa03,01/03/2015,EN,crystal structure|triazapentadienyl|copper(I) complex|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp m54-m54 (2015)",CC BY +Crystal structure of 4-methyl-N-[(4-methylpyridin-2-yl)carbamothioyl]benzamide,Farook Adam|Nadiah Ameram|Naser Eltaher Eltayeb,10.1107/S2056989015003412,https://doaj.org/article/467a3b0b462d434cb68e84bc21220df1,01/03/2015,EN,crystal structure|thiourea compounds|thiocarbonyl groups|benzamide|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 315-317 (2015)",CC BY +Structure cristalline du composé intermétallique Ni18Ge12,Mohammed Kars|Adrian Gómez Herrero|Thierry Roisnel|Allaoua Rebbah|L. Carlos Otero-Diáz,10.1107/S2056989015003680,https://doaj.org/article/33442be6efd247fd98d7c5d87c4d0cae,01/03/2015,EN,crystal structure|nickel germanide|intermetallic compound|B8-type substructure|Ge...Ni interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 318-320 (2015)",CC BY +"Crystal structure of tetraaquabis(1,3-dimethyl-2,6-dioxo-3,7-dihydro-1H-purin-9-ido)magnesium",Yabin Shi|Benyong Lou,10.1107/S2056989015003758,https://doaj.org/article/9147bba62b954241a3e7125b17fe92d5,01/03/2015,EN,crystal structure|theophylline|tetraaqua mononuclear MgII complex|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 321-323 (2015)",CC BY +Crystal structure of catena-poly[silver(I)-μ-l-tyrosinato-κ2O:N],Aqsa Yousaf|Muhammad Nawaz Tahir|Abdul Rauf|Shafique Ahmad Awan|Saeed Ahmad,10.1107/S2056989015001905,https://doaj.org/article/000e355fb0824f98922f2f7eb9e5b7a7,01/03/2015,EN,crystal structure|one-dimensional silver(I) coordination polymer|L-tyrosinate|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp m50-m51 (2015)",CC BY +"Crystal structure of {(but-3-en-1-yl)bis[(pyridin-2-yl)methyl]amine-κ3N,N′,N′′}dichloridocopper(II) diethyl ether hemisolvate",Katherine A. Bussey|Jennifer R. Connell|Annie R. McGlone|Margaret E. Mraz|Kayode D. Oshin|Tomislav Pintauer|Allen G. Oliver,10.1107/S2056989015003448,https://doaj.org/article/9480cb86b8764be68d68220832182a40,01/03/2015,EN,crystal structure|five-coordinate copper(II) complex|Atom Transfer Radical Addition (ATRA) reactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 309-311 (2015)",CC BY +"Crystal structure of disodium 2-amino-6-oxo-6,7-dihydro-1H-purine-1,7-diide heptahydrate",Dvir Gur|Linda J. W. Shimon,10.1107/S2056989015003163,https://doaj.org/article/31726351d25540bdb7a10b8bede51b1b,01/03/2015,EN,crystal structure|guanine salt|nucleobase|hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 281-283 (2015)",CC BY +Crystal structures of two hydrazinecarbothioamide derivatives: (E)-N-ethyl-2-[(4-oxo-4H-chromen-3-yl)methylidene]hydrazinecarbothioamide hemihydrate and (E)-2-[(4-chloro-2H-chromen-3-yl)methylidene]-N-phenylhydrazinecarbothioamide,Rajeswari Gangadharan|Jebiti Haribabu|Ramasamy Karvembu|K. Sethusankar,10.1107/S2056989015003369,https://doaj.org/article/9679e77d988441ebb70c5cf7bc3aa642,01/03/2015,EN,crystal structure|hydrazinecarbothioamide|thiourea derivatives|α-N-heterocycle|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 305-308 (2015)",CC BY +"Crystal structure of the di-Mannich base 4,4′-dichloro-3,3′,5,5′-tetramethyl-2,2′-[imidazolidine-1,3-diylbis(methylene)]diphenol",Augusto Rivera|Luz Stella Nerio|Michael Bolte,10.1107/S2056989015002212,https://doaj.org/article/a297a02b54f34a96801a527751194591,01/03/2015,EN,crystal structure|imidazolidine|di-Mannich base|hydrogen bonding|syn conformation|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 312-314 (2015)",CC BY +Crystal structure of bis[1-(2-hydroxyethyl)-2-methyl-5-nitro-1H-imidazole-κN3]silver(I) tetrafluoridoborate methanol monosolvate,Joshua H. Palmer|Rita K. Upmacis,10.1107/S2056989015002819,https://doaj.org/article/a6a9581c913b4227bf1ef6b2cbeacd85,01/03/2015,EN,crystal structure|silver|metronidazole|Flagyl|tetrafluoridoborate|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 284-287 (2015)",CC BY +"Crystal structure of 2-benzylamino-4-(4-bromophenyl)-6,7-dihydro-5H-cyclopenta[b]pyridine-3-carbonitrile",R. A. Nagalakshmi|J. Suresh|S. Maharani|R. Ranjith Kumar|P. L. Nilantha Lakshman,10.1107/S2056989015002820,https://doaj.org/article/7b3ca6c5126f4935815ef562a38859fa,01/03/2015,EN,crystal structure|cyclopentane ring|envelope conformation|N—H...N hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 296-298 (2015)",CC BY +"Crystal structure of (18-crown-6)potassium(I) [(1,2,3,4,5-η)-cycloheptadienyl][(1,2,3-η)-cycloheptatrienyl]cobalt(I)",William W. Brennessel|John E. Ellis,10.1107/S2056989015003151,https://doaj.org/article/eb0bff6809bf4a548fb32d2a6b5a4853,01/03/2015,EN,crystal structure|18-crown-6|hexaoxacyclooctadecane|cycloheptadienyl|cycloheptatrienyl|cobalt(I)|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 291-295 (2015)",CC BY +"Synthèse et structure cristalline d'un matériau noir AgMnII3(MnIII0,26Al0,74)(MoO4)5",Chahira Bouzidi|Wafa Frigui|Mohamed Faouzi Zid,10.1107/S2056989015003345,https://doaj.org/article/96fdbd3e20894cf3899c766373fc9efa,01/03/2015,EN,crystal structure|aluminium|manganese|molybdate|solid-state methods|physicochemical properties|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 299-304 (2015)",CC BY +"Crystal structure of cis-aquachloridobis(1,10-phenanthroline-κ2N,N′)chromium(III) tetrachloridozincate monohydrate from synchrotron data",Dohyun Moon|Jong-Ha Choi,10.1107/S2056989015003266,https://doaj.org/article/14f1277f21304339b0ee976ca2225167,01/03/2015,EN,"crystal structure|synchrotron radiation|1,10-phenanthroline|chloride ligand|aqua ligand|cis-geometry|chromium(III) complex|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 288-290 (2015)",CC BY +Crystal structure of heptaguanidinium nonahydrogen bis[α-hexamolybdoplatinate(IV)] heptahydrate,Hea-Chung Joo|Ki-Min Park|Uk Lee,10.1107/S2056989015002601,https://doaj.org/article/7ec0053430104db19ed8470083eeb303,01/03/2015,EN,crystal structure|platinum-containing heteropolyoxomolybdate|centrosymmetric hydrogen bond|strong hydrogen bond|Anderson-type heteropolyoxomolybdate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 268-271 (2015)",CC BY +Crystal structure and luminescent properties of [1-(biphenyl-4-yl)-1H-imidazole-κN3]dichloridozinc,Xiao-Xiao Liu|Yuan Wang,10.1107/S2056989015002807,https://doaj.org/article/3d7a6f8c3ae74b4780f0a1796d01c83d,01/03/2015,EN,crystal structure|zinc coordination complex|luminescent properties|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 272-274 (2015)",CC BY +"Crystal structure of 1,1′-[imidazolidine-1,3-diylbis(methylene)]bis(naphthalen-2-ol)",Augusto Rivera|Jicli José Rojas|Jaime Ríos-Motta|Michael Bolte,10.1107/S2056989015002078,https://doaj.org/article/ad15bfea27634e1daf8ba82077539fbb,01/03/2015,EN,crystal structure|imadazolidine|(2-hydroxynaphthalen-1-yl)methyl|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 258-260 (2015)",CC BY +"Crystal structure of (S)-2-[(3S,8S,9S,10R,13S,14S,17R)-3-hydroxy-10,13-dimethyl-2,3,4,7,8,9,10,11,12,13,14,15,16,17-tetradecahydro-1H-cyclopenta[a]phenanthren-17-yl]-N-methoxy-N-methylpropanamide (Fernholz Weinreb amide)",Elvar Ørn Viktorsson|Ove Alexander Høgmoen Åstrand|Rasha Sabah Haseeb|Carl Henrik Görbitz|Pål Rongved,10.1107/S2056989015001747,https://doaj.org/article/2fda1afcf24b48d0acb33685cf62a3ab,01/03/2015,EN,crystal structure|Liver X receptor|obesity|steroid|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 275-277 (2015)",CC BY +"Crystal structure of N-{N-[N-acetyl-(S)-leucyl]-(S)-leucyl}norleucinal (ALLN), an inhibitor of proteasome",Andrzej Czerwinski|Channa Basava|Miroslawa Dauter|Zbigniew Dauter,10.1107/S2056989015002091,https://doaj.org/article/f06ab39e276b4736a083a80f61f03c76,01/03/2015,EN,crystal structure|proteasome inhibitor|hydrogen bonding|antiparallel β-sheet.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 254-257 (2015)",CC BY +"Crystal structure of N1-phenyl-N4-[(E)-(pyren-1-yl)methylidene]benzene-1,4-diamine",Md. Serajul Haque Faizi|Elena V. Prisyazhnaya,10.1107/S2056989015001814,https://doaj.org/article/b9d4d26acbbe4516a285d147488b27c2,01/03/2015,EN,crystal structure|N-phenyl-p-phenylenediamine|1-pyrenecarboxaldehyde|PMBD|Schiff base|N—H...π and C—H...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 261-263 (2015)",CC BY +"Crystal structures of 2,3-bis(4-chlorophenyl)-1,3-thiazolidin-4-one and trans-2,3-bis(4-chlorophenyl)-1,3-thiazolidin-4-one 1-oxide",Hemant P. Yennawar|John Tierney|Patrick D. Hullihen|Lee J. Silverberg,10.1107/S2056989015001954,https://doaj.org/article/005e0aff4665471fa1d70549bbf94f15,01/03/2015,EN,crystal structure|thiazolidine|thiazolidin-4-one 1-oxide|hydrogen bonds|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 264-267 (2015)",CC BY +Crystal structure of the mixed-metal thiophosphate Nb1.18V0.82PS10,Joobin Sun|Jiyun Heo|Hoseop Yun,10.1107/S2056989015003072,https://doaj.org/article/579279e10e3743d098b8195d6b9f6086,01/03/2015,EN,crystal structure|mixed-metallic thiophosphates|layered structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 278-280 (2015)",CC BY +"Crystal structure of (1S,2R,4R,9S,11S,12R)-9α-hydroxy-4,8-dimethyl-12-[(thiomorpholin-4-yl)methyl]-3,14-dioxatricyclo[9.3.0.02,4]tetradec-7-en-13-one",Ahmed Benharref|Mohamed Akssira|Lahcen El Ammari|Mohamed Saadi|Moha Berraho,10.1107/S205698901500170X,https://doaj.org/article/2ec6e0996ed2412ab8cd5161d76d3f92,01/02/2015,EN,crystal structure|Anvillea radiata|medicinal compound|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o140-o141 (2015)",CC BY +Crystal structure of langbeinite-related Rb0.743K0.845Co0.293Ti1.707(PO4)3,Nataliia Yu. Strutynska|Marina A. Bondarenko|Ivan V. Ogorodnyk|Vyacheslav N. Baumer|Nikolay S. Slobodyanik,10.1107/S2056989015001826,https://doaj.org/article/da5d604d37234216bd1fa0ebb3498cf9,01/03/2015,EN,crystal structure|high-temperature crystallization|langbeinite-type structure|three-dimensional framework|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 251-253 (2015)",CC BY +Crystal structure of chlorido(2-{1-[2-(4-chlorophenyl)hydrazin-1-ylidene-κN]ethyl}pyridine-κN)(η5-pentamethylcyclopentadienyl)rhodium(III) chloride,Neelakandan Devika|Nandhagopal Raja|Subbiah Ananthalakshmi|Bruno Therrien,10.1107/S205698901500184X,https://doaj.org/article/5cdd99962dc44bca806cd9d8bdf2f8bf,01/03/2015,EN,crystal structure|rhodium(III) complex|pentamethylcyclopentadienyl|piano-stool geometry|N—H...Cl hydrogen bond|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 3, Pp 248-250 (2015)",CC BY +"Crystal structure of β-d,l-allose",Tomohiko Ishii|Tatsuya Senoo|Taro Kozakai|Kazuhiro Fukada|Genta Sakane,10.1107/S2056989015000353,https://doaj.org/article/ddc0b7eab6684f4eaa9cdfd515941ea8,01/02/2015,EN,crystal structure|racemic compound|rare sugar|O—H...O hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o139-o139 (2015)",CC BY +"Crystal structure of 2-[4-(4-chlorophenyl)-1-(4-methoxyphenyl)-2-oxoazetidin-3-yl]benzo[de]isoquinoline-1,3-dione dimethyl sulfoxide monosolvate",Ísmail Çelik|Mehmet Akkurt|Aliasghar Jarrahpour|Javad Ameri Rad|Ömer Çelik,10.1107/S2056989015001425,https://doaj.org/article/ad2ff21636cd4077807d1dec463df341,01/02/2015,EN,"crystal structure|β-lactam ring|1H-benzo[de]isoquinoline-1,3(2H)-dione group|disorder|azetidin-2-ones|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o129-o130 (2015)",CC BY +"Crystal structure of (2S/2R,3S/3R)-3-hydroxy-2-phenylchroman-4-one",Roumaissa Belguedj|Sofiane Bouacida|Hocine Merazig|Aissa Chibani|Abdelmalek Bouraiou,10.1107/S2056989015001346,https://doaj.org/article/ac3e2553951043c385c3798e04b847e6,01/02/2015,EN,crystal structure|flavone derivative|hydrogen bonds|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o131-o132 (2015)",CC BY +Crystal structure of 1-[(1-methyl-5-nitro-1H-imidazol-2-yl)methyl]pyridinium iodide,Roumaissa Belguedj|Abdelmalek Bouraiou|Hocine Merazig|Ali Belfaitah|Sofiane Bouacida,10.1107/S2056989015001541,https://doaj.org/article/d24c38f5cdde40e5b5228ac005792075,01/02/2015,EN,crystal structure|imidazole|pyridinium|iodide|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o133-o134 (2015)",CC BY +"Crystal structure of 2-chloro-1-(3-methyl-2,6-diphenylpiperidin-1-yl)ethanone",V. Shreevidhyaa Suressh|K. Prathebha|S. Abdul Basheer|S. Ponnuswamy|G. Usha,10.1107/S205698901500122X,https://doaj.org/article/80a0da91237d4cc19d7f604fed02e7ff,01/02/2015,EN,crystal structure|piperidine|diphenylpiperidine|2-chloro-ethanone|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o135-o136 (2015)",CC BY +Crystal structure of 4-aminobenzoic acid–4-methylpyridine (1/1),M. Krishna Kumar|P. Pandi|S. Sudhahar|G. Chakkaravarthi|R. Mohan Kumar,10.1107/S2056989015000791,https://doaj.org/article/c50c71401d8649a3acb9d6dfd174dfed,01/02/2015,EN,crystal structure|adduct|O—H...N and N—H...O hydrogen bonds|layered structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o125-o126 (2015)",CC BY +"Crystal structure of rac-3,9-bis(2,6-difluorophenyl)-2,4,8,10-tetraoxaspiro[5.5]undecane",Liang Chen|Zhengyi Li|Linlin Jin|Xiaoqiang Sun|Zhiming Wang,10.1107/S2056989015001206,https://doaj.org/article/b6a9354ffbc847d186c80315e896d1a0,01/02/2015,EN,crystal structure|oxo-spirocyclic|helical hydrogen-bonded chains|axial chirality|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o127-o128 (2015)",CC BY +"Crystal structure of 3-{(E)-[(3,4-dichlorophenyl)imino]methyl}benzene-1,2-diol",Muhammad Nawaz Tahir|Hazoor Ahmad Shad|Abdul Rauf|Abdul Haleem Khan,10.1107/S2056989015001401,https://doaj.org/article/40f2ab6ab503448999b6848061284a93,01/02/2015,EN,"crystal structure|benzene-1,2-diol|Schiff base|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o137-o138 (2015)",CC BY +"Crystal structure of 2-methyl-4-[(thiophen-2-yl)methylidene]-1,3-oxazol-5(4H)-one",Preetika Sharma|K. N. Subbulakshmi|B. Narayana|K. Byrappa|Rajni Kant,10.1107/S2056989015000833,https://doaj.org/article/0e9f3a720f4b437a81690bc4d053a26f,01/02/2015,EN,"crystal structure|azlactones|1,3-oxazol-5(4H)-one|hydrogen bonding|C—H...π and π–π interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o123-o124 (2015)",CC BY +"Crystal structure of (E)-1-([1,1′-biphenyl]-4-yl)-3-(3-nitrophenyl)prop-2-en-1-one",D. Shanthi|T. Vidhyasagar|K. Rajeswari|M. Kayalvizhi|G. Vasuki|A. Thiruvalluvar,10.1107/S2056989015000523,https://doaj.org/article/903e02e1d954430795a86fbddcbea56b,01/02/2015,EN,crystal structure|chalcones|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o119-o120 (2015)",CC BY +"Crystal structure of 2-chloro-1-(3-ethyl-2,6-diphenylpiperidin-1-yl)ethanone",V. Shreevidhyaa Suressh|B. K. Revathi|S. Abdul Basheer|S. Ponnuswamy|G. Usha,10.1107/S2056989015000444,https://doaj.org/article/39a402bf957449eabb3ce238fce91518,01/02/2015,EN,"crystal structure|2-chloro-1-(3-ethyl-2,6-diphenylpiperidin-1-yl)ethanone|biological activity|piperidine derivative|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o122-o122 (2015)",CC BY +"Crystal structure of ethyl (2S)-9-methoxy-2-methyl-4-oxo-3,4,5,6-tetrahydro-2H- 2,6-methanobenzo[g][1,3,5]oxadiazocine-11-carboxylate",A. Dhandapani|S. Manivarman|S. Subashchandrabose|B. Gunasekaran,10.1107/S2056989015000559,https://doaj.org/article/58e9571c96e04eb085d3c03fa02a7dd2,01/02/2015,EN,crystal structure|hydropyrimidine|oxadiazocine|pyran|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o117-o118 (2015)",CC BY +Crystal structure of ethyl 6-bromo-2-[(E)-2-phenylethenyl]quinoline-4-carboxylate,T. O. Shrungesh Kumar|S. Naveen|M. N. Kumara|K. M. Mahadevan|N. K. Lokanath,10.1107/S2056989014028266,https://doaj.org/article/d642c49080a544edbd8fa2cc3a9916c3,01/02/2015,EN,crystal structure|quinoline|quinoline-4-carboxylate|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o121-o121 (2015)",CC BY +"Crystal structure of (E)-3-{[2-(2,4-dichlorobenzylidene)hydrazin-1-yl]carbonyl}pyridinium chloride trihydrate",J. Josephine Novina|G. Vasuki|M. Suresh|M. Syed Ali Padusha,10.1107/S2056989015000286,https://doaj.org/article/21d0d8f2cf2744fdb1c2229c06163419,01/02/2015,EN,crystals structure|pyridinium|hydrazide group|hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o105-o106 (2015)",CC BY +"Crystal structure of N,N′-(1,2-phenylene)bis(2-chloroacetamide)",Javaria Tariq|Shahzad Murtaza|Muhammad Nawaz Tahir|Muhammad Zaheer,10.1107/S2056989015000304,https://doaj.org/article/b35aaad729e7491dbd72dd65a9f80679,01/02/2015,EN,crystal structure|2-chloroacetamide|secondary amide groups|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o108-o108 (2015)",CC BY +"Crystal structure of 3-(adamantan-1-yl)-4-(4-chlorophenyl)-1H-1,2,4-triazole-5(4H)-thione",Reem I. Al-Wabli|Ali A. El-Emam|Obaid S. Alroqi|C. S. Chidan Kumar|Hoong-Kun Fun,10.1107/S2056989015000596,https://doaj.org/article/81badb57e7cd4b7a8c8f888eb4e87ba5,01/02/2015,EN,"crystal structure|adamantane|1,2,4-triazole|starting material|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o115-o116 (2015)",CC BY +Crystal structure of 4-[(E)-(4-nitrobenzylidene)amino]phenol,Zeliha Atioğlu|Mehmet Akkurt|Aliasghar Jarrahpour|Edris Ebrahimi|Orhan Büyükgüngör,10.1107/S2056989015000511,https://doaj.org/article/af5f400d15b94b3a81a00788b0166804,01/02/2015,EN,crystal structure|whole-molecule disorder|nitroaromatic compounds|hydrogen bonding|C—H...π interactions|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o113-o114 (2015)",CC BY +"6,7-Dichloro-2,3-bis(pyridin-2-yl)quinoxaline",Guy Crundwell|Neil M. Glagovich|Melissa E. King,10.1107/S2056989015000055,https://doaj.org/article/abcab8ef0a4d4b12a290e229eaf474da,01/02/2015,EN,crystal structure|quinoxaline|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o107-o107 (2015)",CC BY +Crystal structure of (E)-1-[4-({4-[(4-methoxybenzylidene)amino]phenyl}sulfanyl)phenyl]ethan-1-one,Rabihe Hebbachi|Amel Djedouani|Soumia Kadri|Hénia Mousser|Abdelhamid Mousser,10.1107/S205698901500033X,https://doaj.org/article/1673b90631f24bc7a401f1a4666ba458,01/02/2015,EN,crystal structure|Schiff base|4-amino-4-acetyldiphenyl sulfide|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o109-o110 (2015)",CC BY +Crystal structure of (E)-4-{4-[ethyl(2-hydroxyethyl)amino]styryl}-1-methylpyridinium nitrate hemihydrate,Hui Zhang|Mu-Hua Peng|Xiao-Juan Wang|Xiao-Ying Li,10.1107/S2056989015000067,https://doaj.org/article/b31f6807124b4a3fadb4aab202cc16db,01/02/2015,EN,crystal structure|pyridinium derivative|hydrogen bonding|π–π stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o111-o112 (2015)",CC BY +"Crystal structure of cholest-5-en-3β-yl 3-(2,4-dimethoxy-3-methylphenyl)prop-2-enoate",Bernhard Bugenhagen|Ariane Munk|Volkmar Vill|Yosef Al Jasem|Thies Thiemann,10.1107/S2056989014028278,https://doaj.org/article/35692cc262174169a00aa3755a607ebd,01/02/2015,EN,"crystal structure|cholesteryl cinnamates|methyl (E)-3-(2,4-dimethoxy-3-methylphenyl)acrylate|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o92-o93 (2015)",CC BY +"The crystal structure of 1,5-dibenzyl-1H-pyrazolo[3,4-d]pyrimidine-4(5H)-thione",Mohammed El Fal|Youssef Ramli|El Mokhtar Essassi|Mohamed Saadi|Lahcen El Ammari,10.1107/S205698901402828X,https://doaj.org/article/f77c31fe2598444d8f521ab45e69141a,01/02/2015,EN,"crystal structure|pyrazolo[3,4-d]pyrimidine|thione|C—H...S interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o95-o96 (2015)",CC BY +Crystal structure of isobutyl 4-(2-chlorophenyl)-5-cyano-6-{(E)-[(dimethylamino)methylidene]amino}-2-methyl-4H-pyran-3-carboxylate,T. Mohandas|C. Udhaya Kumar|S. Aruna Devi|B. Arul Prakasam|P. Sakthivel|T. Vidhyasagar,10.1107/S2056989015000079,https://doaj.org/article/ee3bd3233ecd4ce0b20f48d637cb9fc8,01/02/2015,EN,crystal structure|pyran derivative|C—H...O interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o101-o102 (2015)",CC BY +Crystal structure of S-hexyl (E)-3-(4-methylbenzylidene)dithiocarbazate,M. B. H. Howlader|M. S. Begum|M. C. Sheikh|R. Miyatake|E. Zangrando,10.1107/S2056989015000080,https://doaj.org/article/6ef0045e5673425baf365cee3027ca8b,01/02/2015,EN,crystal structure|S-hexyl dithiocarbazate|bidentate Schiff base|N—H...S hydrogen bonds|C—H...π interactions.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o103-o104 (2015)",CC BY +Crystal structure of azilsartan methyl ester ethyl acetate hemisolvate,Zhengyi Li|Rong Liu|Meilan Zhu|Liang Chen|Xiaoqiang Sun,10.1107/S2056989014028023,https://doaj.org/article/a76cb8d6540847918f8416e61cf7e0c4,01/02/2015,EN,crystal structure|azilsartan|azilsartan methyl ester|antihypertension|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o84-o85 (2015)",CC BY +Crystal structure of 1-(2-aminophenyl)-3-phenylurea,Joel T. Mague|Shaaban K. Mohamed|Mehmet Akkurt|Omran A. Omran|Mustafa R. Albayati,10.1107/S2056989014028175,https://doaj.org/article/a0ae3c3cc2e34cff8917fb3814735df1,01/02/2015,EN,crystal structure|urea derivatives|N—H...N hydrogen bonds|N—H...O hydrogen bonds|twinned structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o88-o89 (2015)",CC BY +Crystal structure of 4-(prop-2-yn-1-yloxy)benzonitrile,Mayu Kanagawa|Tsunehisa Okuno,10.1107/S2056989014028035,https://doaj.org/article/907f0f6f58b148a28f5475bd05269505,01/02/2015,EN,crystal structure|prop-2-yn-1-yloxy|hydrogen bonding|C—H...π interactions|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o97-o98 (2015)",CC BY +"Crystal structure of (E)-N′-{[(1R,3R)-3-isopropyl-1-methyl-2-oxocyclopentyl]methylidene}-4-methylbenzenesulfonohydrazide",David Tymann|Dina Christina Dragon|Christopher Golz|Hans Preut|Carsten Strohmann|Martin Hiersemann,10.1107/S2056989014026747,https://doaj.org/article/bc2b0712d43941daa102ac227adecb45,01/02/2015,EN,crystal structure|benzenesulfonohydrazide|terpenoid-related building blocks|hydrogen bonding|cyclopentanoids|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o99-o100 (2015)",CC BY +Crystal structure of (2-bromomethyl-1-phenylsulfonyl-1H-indol-3-yl)(phenyl)methanone,M. Umadevi|V. Saravanan|R. Yamuna|A. K. Mohanakrishnan|G. Chakkaravarthi,10.1107/S2056989014028084,https://doaj.org/article/b86feb2a900a4ce7a2578aacba70f482,01/02/2015,EN,crystal structure|indole|phenylsulfonyl|bromomethyl|(phenyl)methanone|intramolecular hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o86-o87 (2015)",CC BY +"Crystal structure of 7,7-dimethyl-6-methylidenetricyclo[6.2.1.01,5]undecane-2-carboxylic acid",Noureddine Beghidja|Samir Benayache|Fadila Benayache|David W. Knight|Benson M. Kariuki,10.1107/S2056989014028254,https://doaj.org/article/50568a65401c451da50e5dfd35892543,01/02/2015,EN,crystal structure|inula graveolens|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o94-o94 (2015)",CC BY +Crystal structure of 3-[2-(4-methylphenyl)ethynyl]-2H-chromen-2-one,Ignez Caracelli|Stella H. Maganhi|Hélio A. Stefani|Karina Gueogjian|Edward R. T. Tiekink,10.1107/S2056989014027790,https://doaj.org/article/203353abf094425996fcaa6fb1185fe0,01/02/2015,EN,crystal structure|coumarins|asymmetric alkyne|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o90-o91 (2015)",CC BY +Crystal structure of ethyl 2-(2-{(1E)-[(E)-2-(2-hydroxybenzylidene)hydrazin-1-ylidene]methyl}phenoxy)acetate,Mehmet Akkurt|Joel T. Mague|Shaaban K. Mohamed|Eman A. Ahmed|Mustafa R. Albayati,10.1107/S2056989014027273,https://doaj.org/article/9057b66a3b04498391290e43a171b9e9,01/02/2015,EN,crystal structure|Schiff base ligand|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o70-o71 (2015)",CC BY +"Crystal structure of 2-(4-methylphenyl)-4H-1,3-benzothiazine",N. C. Sandhya|Chandra|G. P. Suresha|N. K. Lokanath|M. Mahendra,10.1107/S205698901402725X,https://doaj.org/article/9177fcbd9a8c4a6fa3489a10c128923c,01/02/2015,EN,crystal structure|benzothiazine derivative|biological properties|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o74-o74 (2015)",CC BY +"Crystal structure of 1,5-diethyl-1H-1,5-benzodiazepine-2,4(3H,5H)-dithione",Abderrahman Lamkaddem|Mohamed Harcharras|Abdelillah Shaim|Hafid Zouihri|Bousselham Echchahed|Wenhua Bi,10.1107/S205698901402790X,https://doaj.org/article/c744486298094fcfac38ac0bccbd7e75,01/02/2015,EN,crystal structure|benzodiazepine|boat conformation.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o83-o83 (2015)",CC BY +"Crystal structure of N,N′-bis(4-methylphenyl)dithiooxamide",Antonino Giannetto|Santo Lanza|Giuseppe Bruno|Francesco Nicoló|Hadi Amiri Rudbari,10.1107/S2056989014027911,https://doaj.org/article/d3908956324d4e86b5b40e2ff6d0df62,01/02/2015,EN,crystal structure|dithiooxamide|ethanedithioamide|intramolecular N—H...S hydrogen bonds|C—H..π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o67-o67 (2015)",CC BY +Crystal structure of bis(9H-6-aminopurin-1-ium) hexafluoridosilicate(IV) dihydrate,Ratiba Belhouas|Sofiane Bouacida|Chaouki Boudaren|Jean-Claude Daran|El Hossain Chtoun,10.1107/S2056989014027005,https://doaj.org/article/e76e34a70a4c4910b03e06628b643115,01/02/2015,EN,crystal structure|purinium cation|hexafluoridosilicate anion|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o72-o73 (2015)",CC BY +Crystal structure of 4-{(E)-[2-(pyridin-4-ylcarbonyl)hydrazin-1-ylidene]methyl}phenyl acetate monohydrate,Riya Datta|V. Ramya|M. Sithambaresan|M. R. Prathapachandra Kurup,10.1107/S2056989014027819,https://doaj.org/article/95252783d3fb45278d0d29f71fa03eb5,01/02/2015,EN,crystal structure|hydrazone|aroyl hydrazone|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o79-o80 (2015)",CC BY +"Crystal structure of 1′,1′′-dimethyl-4′-(4-cholorophenyl)dispiro[11H-indeno[1,2-b]quinoxaline-11,2′-pyrrolidine-3′,3′′-piperidin]-4′′-one",R.A. Nagalakshmi|J. Suresh|K. Malathi|R. Ranjith Kumar|P. L. Nilantha Lakshman,10.1107/S2056989014027698,https://doaj.org/article/9133abeff9804b5fbe67928e50fe19ce,01/02/2015,EN,crystal structure|quinoxaline derivative|intramolecular C—H...N interaction|C—H...π interaction|Cl...Cl contact|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o68-o69 (2015)",CC BY +"Crystal structure of N-[(8E)-12-methyl-14-phenyl-10,13,14,16-tetraazatetracyclo[7.7.0.02,7.011,15]hexadeca-1(16),2,4,6,9,11(15),12-heptaen-8-ylidene]hydroxylamine 1,4-dioxane hemisolvate",Shaaban K. Mohamed|Joel T. Mague|Mehmet Akkurt|Talaat I. El-Emary|Mustafa R. Albayati,10.1107/S2056989014027285,https://doaj.org/article/e957c5640ac847d5af029b029cdb6e38,01/02/2015,EN,crystal strcuture|pyrazinopyrazoles|oximes|hydrogen bonding|π–π stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o75-o76 (2015)",CC BY +"Crystal structure of 4-[1-(2-hydroxypropyl)-4,5-diphenyl-1H-imidazol-2-yl]benzoic acid",Jerry P. Jasinski|Shaaban K. Mohamed|Mehmet Akkurt|Antar A. Abdelhamid|Mustafa R. Albayati,10.1107/S2056989014027078,https://doaj.org/article/58ca083e55d242958bb19d468f825581,01/02/2015,EN,"crystal structure|4-[1-(2-hydroxypropyl)-4,5-diphenyl-1H-imidazol-2-yl]benzoic acid|imidazole ring|amino alcohol|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o77-o78 (2015)",CC BY +"Crystal structure of ethyl 6-methyl-2-sulfanylidene-4-(thiophen-2-yl)-1,2,3,4-tetrahydropyrimidine-5-carboxylate",M. Suresh|M. Syed Ali Padusha|J. Josephine Novina|G. Vasuki|Vijayan Viswanathan|Devadasan Velmurugan,10.1107/S2056989014027741,https://doaj.org/article/a71d716e656d41f584720636a8177c84,01/02/2015,EN,crystal structure|pyrimidine|hydrogen bonding|C—H...π interactions|conformation|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp o81-o82 (2015)",CC BY +"Crystal structure of bis(2-{[(3-bromopropyl)imino]methyl}phenolato-κ2N,O)copper(II)",Ali Ourari|Chahinaz Zoubeidi|Sofiane Bouacida|Wassila Derafa|Hocine Merazig,10.1107/S2056989015001309,https://doaj.org/article/c80c399ea9f34db4aebdb2fbc93cda3b,01/02/2015,EN,crystal structure|copper(II) complex|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m33-m34 (2015)",CC BY +"Crystal structure of aquadioxido(2-{[(2-oxidoethyl)imino]methyl}phenolato-κ3O,N,O′)molybdenum(VI)",Sowmianarayanan Parimala|Parasuraman Selvam,10.1107/S2056989015001231,https://doaj.org/article/fad40b077909495ba894fd83f06b22b9,01/02/2015,EN,crystal structure|dioxidomolybdenum(VI) complex|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m35-m36 (2015)",CC BY +"Crystal structure of dibromido(N,N-dimethylformamide-κO){2-(1H-indol-3-yl)-N-[(quinolin-2-yl-κN)methylidene]ethanamine-κN}cadmium",Md. Serajul Haque Faizi|Natalia O. Sharkina|Yuliya M. Davydenko,10.1107/S2056989015000778,https://doaj.org/article/6d4ee192db2540459af2d7ac38b0f198,01/02/2015,EN,crystal structure|CdII complex with IQME|quinolinyl-containing Schiff base|N—H...Br interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m31-m32 (2015)",CC BY +"Crystal structure of chlorido{5,10,15,20-tetrakis[2-(2,2-dimethylpropanamido)phenyl]porphyrinato-κ4N}iron(III)",Dennis Awasabisah|Douglas R. Powell|George B. Richter-Addo,10.1107/S205698901500153X,https://doaj.org/article/719bbe99496a459ea60dc377a77e5c3f,01/02/2015,EN,crystal structure|picket-fence porphyrin|C—H...O interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m42-m43 (2015)",CC BY +Crystal structure of bis(thiocyanato-κS)bis(thiourea-κS)mercury(II),A. Baskaran|K. Rajarajan|M. NizamMohideen|P. Sagayaraj,10.1107/S2056989015000584,https://doaj.org/article/a306a3bfd13d4f95b863caee441bfaf0,01/02/2015,EN,crystal structure|thiourea|thiocyanate|mercury(II)|molecular complex|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m28-m29 (2015)",CC BY +"Crystal structure of bis[μ-methoxy(pyridin-2-yl)methanolato-κ3N,O:O]bis[chloridocopper(II)]",Sujirat Boonlue|Anchalee Sirikulkajorn|Kittipong Chainok,10.1107/S2056989015001310,https://doaj.org/article/0f24e1a6bd934f988f4757705d9f3ba0,01/02/2015,EN,crystal structure|hydrogen bonds|copper(II)|Cu...Cl interaction|π–π stacking|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m44-m45 (2015)",CC BY +"Crystal structure of dichlorido{N1-phenyl-N4-[(quinolin-2-yl-κN)methylidene]benzene-1,4-diamine-κN4}mercury(II)",Md. Serajul Haque Faizi|Elena V. Prisyazhnaya|Turganbay S. Iskenderov,10.1107/S2056989015001620,https://doaj.org/article/08e172a287434bc38f9c2e00a435c5df,01/02/2015,EN,crystal structure|Schiff base|mercury(II) complex|N—H...Cl and C—H...Cl hydrogen bonding|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m46-m47 (2015)",CC BY +"Crystal structure of (pyridine-κN)bis(quinolin-2-olato-κ2N,O)copper(II) monohydrate",Benjamin Hawks|Jingjing Yan|Prem Basa|Shawn Burdette,10.1107/S2056989015001279,https://doaj.org/article/35ca398fc18c44c6ad5b7f027eeab8b2,01/02/2015,EN,crystal structure|copper(II)|quinolin-8-ol|pyridine|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m38-m39 (2015)",CC BY +"Crystal structure of (μ-N,N′-dibenzyldithiooxamidato-κN,S:N′,S′)bis[(η3-crotyl)palladium(II)]",Giuseppe Bruno|Santo Lanza|Antonino Giannetto|Alessandro Sacca|Hadi Amiri Rudbari,10.1107/S2056989015001292,https://doaj.org/article/76dc80e564d8474394d4f15a3333b551,01/02/2015,EN,crystal structure|dinuclear palladium(II) complex|dibenzyldithiooxamidate|crotyl|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m40-m41 (2015)",CC BY +"Crystal structure of bis[1,3-bis(diphenylphosphanyl)propane-κ2P,P′]platinum(II) dichloride chloroform pentasolvate",Bradley G. Anderson|Sarah A. Hoyte|John L. Spencer,10.1107/S205698901500136X,https://doaj.org/article/b8059a96c59b4b97a3e6b5bcdb8cd8f7,01/02/2015,EN,"crystal structure|1,3-bis(diphenylphosphanyl)propane|platinum(II) complex|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m37-m37 (2015)",CC BY +"Crystal structure of bis(tetraphenylphosphonium) bis(cyanido-κC)(29H,31H-tetrabenzo[b,g,l,q]porphinato-κ4N29,N30,N31,N32)ferrate(II) acetone disolvate",Miki Nishi|Masaki Matsuda|Norihisa Hoshino|Tomoyuki Akutagawa,10.1107/S2056989015001735,https://doaj.org/article/fa804defcf944a9da4c3e867c2b334df,01/02/2015,EN,crystal structure|tetrabenzoporphine|iron(II) complex|C—H...N interactions|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m48-m49 (2015)",CC BY +Crystal structure of methyl N-ferrocenylcarbamate,Alan J. Rodríguez|J. Martin. E. Quirke|Aida O. Diouf,10.1107/S2056989015000043,https://doaj.org/article/63c5e753b74d468882e443ddd9243dbf,01/02/2015,EN,crystal structure|ferrocene|carbamate|ferrocenoyl azide derivatives|N-ferrocenoylmethylcarbamate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m30-m30 (2015)",CC BY +"Crystal structure of tetraaquabis(thiocyanato-κN)nickel(II)–2,5-dimethylpyrazine (1/4)",Stefan Suckert|Mario Wriedt|Inke Jess|Christian Näther,10.1107/S2056989014026991,https://doaj.org/article/e81d7841de5a48c3b59bbdec72e422bf,01/02/2015,EN,"crystal structure|thiocyanat|nickel(II) complex|2,5-dimethylpyrazine|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m18-m18 (2015)",CC BY +"Crystal structure of bis[S-hexyl 3-(4-methylbenzylidene)dithiocarbazato-κ2N3,S]nickel(II)",M. B. H. Howlader|M. S. Begum|M. C. Sheikh|R. Miyatake|E. Zangrando,10.1107/S2056989015000328,https://doaj.org/article/404a0f29228546dd885e28ede27b702f,01/02/2015,EN,crystal structure|nickel complex|dithiocarbazate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m26-m27 (2015)",CC BY +Crystal structure of tricarbonyl(μ-diphenylphosphido-κ2P:P)(methyldiphenylsilyl-κSi)bis(triphenylphosphane-κP)iron(II)platinum(0)(Fe—Pt),Ahmed Said Mohamed|Isabelle Jourdain|Michael Knorr|Yoann Rousselin|Marek M. Kubicki,10.1107/S2056989015001565,https://doaj.org/article/6b9c485d32f941e4bbe6e342ec684465,01/02/2015,EN,crystal structure|heterobimetallics|phosphido bridges|iron complexes|platinum complexes|diphenylmethylsilyl ligand|metal–metal bond|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 241-243 (2015)",CC BY +Crystal structure of paddle-wheel sandwich-type [Cu2{(CH3)2CO}{μ-Fe(η5-C5H4C[triple-bond]N)2}3](BF4)2·(CH3)2CO,Frank Strehler|Marcus Korb|Heinrich Lang,10.1107/S2056989015001760,https://doaj.org/article/962803d7980e41888d4fff4ee90d7dc9,01/02/2015,EN,"crystal structure|ferrocene-1,1′-dicarbonitrile|pentametallic complex|paddle-wheel|copper(I)|coordination chemistry|η2,π-interaction|π–π interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 244-247 (2015)",CC BY +Crystal structure of di-n-butylbis(η5-pentamethylcyclopentadienyl)hafnium(IV),Perdita Arndt|Kathleen Schubert|Vladimir V. Burlakov|Anke Spannenberg|Uwe Rosenthal,10.1107/S2056989015000092,https://doaj.org/article/a5a5cb8e5616473da894e13cf39fb7f7,01/02/2015,EN,crystal structure|hafnocene|n-butyl|racemic twin|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m19-m20 (2015)",CC BY +Crystal structure of dichloridobis(4-ethylaniline-κN)zinc,J. Govindaraj|S. Thirumurugan|D. Snehalatha Reddy|K. Anbalagan|A. SubbiahPandi,10.1107/S2056989014027832,https://doaj.org/article/d0afca4c960948ed8ab023177839d41b,01/02/2015,EN,crystal structure|zinc complex|tetrahedral coordination|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m21-m22 (2015)",CC BY +Crystal structure of poly[bis(μ2-5-hydroxynicotinato-κ2N:O3)zinc],Wen-Bing Wang|Shan-Shan Xu|Hong-Ji Chen,10.1107/S2056989015000249,https://doaj.org/article/930a2f1b170a4e62a10c0aae13fed34e,01/02/2015,EN,crystal structure|zinc coordination polymer|5-hydroxynicotinate ligand|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m23-m23 (2015)",CC BY +Crystal structure of cis-tetraaquadichloridocobalt(II) sulfolane disolvate,Mhamed Boudraa|Sofiane Bouacida|Hasna Bouchareb|Hocine Merazig|El Hossain Chtoun,10.1107/S2056989014027753,https://doaj.org/article/66f3c43530c74333893664649c2cc2d9,01/02/2015,EN,crystal structure|cobalt(II) complex|sulfolane solvate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m16-m17 (2015)",CC BY +"Crystal structure of bis(azido-κN)bis[2,5-bis(pyridin-2-yl)-1,3,4-thiadiazole-κ2N2,N3]nickel(II)",Abdelhakim Laachir|Fouad Bentiss|Salaheddine Guesmi|Mohamed Saadi|Lahcen El Ammari,10.1107/S2056989015000201,https://doaj.org/article/0c01d34c0e6d4feb95315b8cef640c91,01/02/2015,EN,"crystal structure|mononuclear nickel(II) complex|1,3,4-thiadiazole|azide ligand|π–π interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp m24-m25 (2015)",CC BY +"Crystal structure of 4-tert-butyl-2-{2-[N-(3,3-dimethyl-2-oxobutyl)-N-isopropylcarbamoyl]phenyl}-1-isopropyl-1H-imidazol-3-ium perchlorate",Olga V. Hordiyenko|Roman I. Zubatyuk,10.1107/S2056989015001486,https://doaj.org/article/1276102bcf0d48aebe498d796d3046a1,01/02/2015,EN,crystal structure|α-acylamino ketone|perchlorate|disorder|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 223-225 (2015)",CC BY +Crystal structures of fac-trichloridotris(trimethylphosphane-κP)rhodium(III) monohydrate and fac-trichloridotris(trimethylphosphane-κP)rhodium(III) methanol hemisolvate: rhodium structures that are isotypic with their iridium analogs,Joseph S. Merola|Marion A. Franks,10.1107/S2056989015001516,https://doaj.org/article/070bff4b07b04f29a48ea708f8895d3f,01/02/2015,EN,crystal structure|iridium|rhodium|phosphane ligands|isotypism|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 226-230 (2015)",CC BY +Crystal structure of 2-amino-5-nitropyridinium sulfamate,M. Ambrose Rajkumar|M. NizamMohideen|S. Stanly John Xavier|S. Anbarasu|Dr. Prem Anand Devarajan,10.1107/S2056989015000365,https://doaj.org/article/b78bd6f523ae472cad039a22c7572d94,01/02/2015,EN,crystal structure|sulfamic acid|2-amino-5-nitropyridine|sulfamate|2-amino-5-pyridinium|molecular salt|hydrogen bonding.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 231-233 (2015)",CC BY +"Crystal structure of tetrawickmanite, Mn2+Sn4+(OH)6",Barbara Lafuente|Hexiong Yang|Robert T. Downs,10.1107/S2056989015001632,https://doaj.org/article/d729f2ebd7fd49fd825d432539916d19,01/02/2015,EN,crystal structure|tetrawickmanite|mineral structure|polymorphism.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 234-237 (2015)",CC BY +"Crystal structure of benzyl (E)-2-(3,4-dimethoxybenzylidene)hydrazine-1-carbodithioate",Yew-Fung Tan|Mohammed Khaled bin Break|M. Ibrahim M. Tahir|Teng-Jin Khoo,10.1107/S205698901500095X,https://doaj.org/article/91a1d67e348c4406a17ce0d6b33c7544,01/02/2015,EN,"crystal structure|dithiocarbazate|hydrazine-1-carbodithioate|3,4-dimethoxybenzaldehyde|hydrogen bonding|C—H...π interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 238-240 (2015)",CC BY +Crystal structure of catena-poly[[cadmium(II)-di-μ2-bromido-μ2-l-proline-κ2O:O′] monohydrate],S. Sathiskumar|T. Balakrishnan|K. Ramamurthi|S. Thamotharan,10.1107/S2056989015001176,https://doaj.org/article/95711e512b5f44f0b2af6e1dfb0d616e,01/02/2015,EN,crystal structure|L-proline cadmium bromide|cadmium coordination polymer|N/O—H...Br/O hydrogen bonds|distorted octahedral geometry.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 217-219 (2015)",CC BY +Crystal structure of bis(thiourea-κS)bis(triphenylphosphane-κP)silver(I) nitrate,Sidra Nawaz|Muhammad Nawaz Tahir|Muhammad Amir Nadeem|Bushra Mehmood|Saeed Ahmad,10.1107/S2056989015001395,https://doaj.org/article/b56a395886c54853b693509c652eb310,01/02/2015,EN,crystal structure|thiourea|triphenylphosphane|silver(I) complex|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 220-222 (2015)",CC BY +"Crystal structure of ammonium bis(pyridine-2,6-dicarboxylato-κ3O,N,O′)chromate(III) from synchrotron data",Dohyun Moon|Jong-Ha Choi,10.1107/S2056989015001152,https://doaj.org/article/40d7a2776ac347f4a81510154f33dad4,01/02/2015,EN,"Crystal structure|synchrotron radiation|pyridine-2,6-dicarboxylate|ammonium cation|chromate(III) complex|meridional configuration|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 210-212 (2015)",CC BY +"Crystal structures and conformations of two Diels–Alder adduct derivatives: 1,8-bis(thiophen-2-yl)-14-oxatetracyclo[6.5.1.02,7.09,13]tetradeca-2(7),3,5-trien-10-one and 1,8-diphenyl-14-oxatetracyclo[6.5.1.02,7.09,13] tetradeca-2,4,6-trien-10-one",S. Gopinath|P. Narayanan|K. Sethusankar|Meganathan Nandakumar|Arasambattu K. Mohanakrishnan,10.1107/S2056989015001073,https://doaj.org/article/0a8338d391684a87a403398eeea224a4,01/02/2015,EN,crystal structure|Diels–Alder adduct derivative|thiophene|conformation|hydrogen bonding|C—H...π interactions|non-merohedral twin|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 213-216 (2015)",CC BY +"Crystal structure of 2-(2-aminophenyl)-1,3-benzoxazole",Imelda Pérez-Pérez|Diego Martínez-Otero|Susana Rojas-Lima|Heraclio López-Ruiz,10.1107/S2056989015000481,https://doaj.org/article/90a65b9ab07141f497e604ac53f84bca,01/02/2015,EN,crystal structure|benzoxazole|N—H...N hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 188-191 (2015)",CC BY +"Crystal structure of 2-benzylamino-4-p-tolyl-6,7-dihydro-5H-cyclopenta[b]pyridine-3-carbonitrile",R. A. Nagalakshmi|J. Suresh|S. Maharani|R. Ranjith Kumar|P. L. Nilantha Lakshman,10.1107/S2056989015000572,https://doaj.org/article/f323e96343144c6eac5de5e67ac22eb9,01/02/2015,EN,crystal structure|cyclopenta[b]pyridine|2-amino-3-cyanopyridine|pyridine-3-carbonitrile|hydrogen bonding|C—H...π interactions|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 192-194 (2015)",CC BY +"Crystal structures of N-tert-butyl-3-(4-fluorophenyl)-5-oxo-4-[2-(trifluoromethoxy)phenyl]-2,5-dihydrofuran-2-carboxamide and 4-(2H-1,3-benzodioxol-5-yl)-N-cyclohexyl-5-oxo-3-[4-(trifluoromethyl)phenyl]-2,5-dihydrofuran-2-carboxamide",Sue A. Roberts|Guillermo Martinez-Ariza|Christopher Hulme,10.1107/S2056989015000936,https://doaj.org/article/1a452a4cb1144b68b54baf9860302ed4,01/02/2015,EN,crystal structure|pharmaceuticals|butenolides|N—H...O hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 199-202 (2015)",CC BY +"Crystal structure of trans-(1,8-dibutyl-1,3,6,8,10,13-hexaazacyclotetradecane-κ4N3,N6,N10,N13)bis(isonicotinato-κO)copper(II) from synchrotron data",Jong Won Shin|Dae-Woong Kim|Jin Hong Kim|Dohyun Moon,10.1107/S2056989015001115,https://doaj.org/article/265dc36fd27948f4b3ad92b0eeb8b3a5,01/02/2015,EN,Crystal structure|azamacrocyclic ligand|Jahn–Teller distortion|isonicotinic acid|offset π–π interaction|hydrogen bonds|synchrotron data|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 203-205 (2015)",CC BY +"Crystal structure of aqua[N-(2-oxidobenzyl-κO)-l-leucinato-κ2N,O](1,10-phenanthroline-κ2N,N′)nickel(II) pentahydrate",Md. Serajul Haque Faizi|Natalia O. Sharkina,10.1107/S2056989015001085,https://doaj.org/article/b58e2fe7d24b48b991e43c29e35fe219,01/02/2015,EN,crystal structure|nickel(II) complex|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 195-198 (2015)",CC BY +Molecular and crystal structure of gossypol tetramethyl ether with an unknown solvate,Muhabbat Honkeldieva|Samat Talipov|Rustam Mardanov|Bakhtiyar Ibragimov,10.1107/S2056989015000171,https://doaj.org/article/233132b73b664f4db0d45325ea43fe14,01/02/2015,EN,crystal structure|gossypol|gossypol tetramethyl ether|porous structure|C—H...O hydrogen bonds|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 184-187 (2015)",CC BY +Crystal structure of the α-racemate of methohexital,Thomas Gelbrich|Ulrich J. Griesser,10.1107/S205698901500105X,https://doaj.org/article/deb96ef840544ab68b2eeaaeaf5da26b,01/02/2015,EN,crystal structure|barbiturate|hydrogen bonding|anaesthetic|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 206-209 (2015)",CC BY +"Crystal structure of 2,2′-oxybis(4-methylquinoline)",Anaelle Tilborg,10.1107/S2056989015000717,https://doaj.org/article/646c8431cbfd4ea0ad8bf764b453e901,01/11/2015,EN,crystal structure|quinoline|benserazide|therapeutic compounds|Parkinson's disease|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 180-183 (2015)",CC BY +Crystal structure of the chalcone (E)-3-(furan-2-yl)-1-phenylprop-2-en-1-one,Oscar F. Vázquez-Vuelvas|René A. Enríquez-Figueroa|Héctor García-Ortega|Marcos Flores-Alamo|Armando Pineda-Contreras,10.1107/S205698901500047X,https://doaj.org/article/e12660c81be049a98a22b4956b2a100e,01/02/2015,EN,crystal structure|Claisen–Schmidt reaction|chalcone derivative|hydrogen bonding|biological activity|zigzag fashion.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 161-164 (2015)",CC BY +"Crystal structure of chlorido(5,10,15,20-tetraphenylporphyrinato-κ4N)manganese(III) 2-aminopyridine disolvate",Wafa Harhouri|Salma Dhifaoui|Shabir Najmudin|Cecilia Bonifácio|Habib Nasri,10.1107/S205698901500050X,https://doaj.org/article/4cdebb530efa43718f1235875295183a,01/02/2015,EN,Crystal structure|manganese porphyrin complex|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 165-167 (2015)",CC BY +Crystal structures of crotonaldehyde semicarbazone and crotonaldehyde thiosemicarbazone from X-ray powder diffraction data,Atef Arfan|Mwaffak Rukiah,10.1107/S2056989015000663,https://doaj.org/article/178a8a1183f64b23a59f2482a7673cd7,01/02/2015,EN,crystal structure|crotonaldehyde|semicarbazone|thiosemicarbazone|powder X-ray diffraction|supramolecular structure|hydrogen bond|one-dimensional chain|two-dimensional networks|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 168-172 (2015)",CC BY +"Crystal structure of trans-(1,8-dibutyl-1,3,6,8,10,13-hexaazacyclotetradecane-κ4N3,N6,N10,N13)bis(5-methyltetrazolato-κN)nickel(II) from synchrotron data",Dae-Woong Kim|Jong Won Shin|Jin Hong Kim|Dohyun Moon,10.1107/S2056989015000651,https://doaj.org/article/bfc3aeb23d5d4b3e9f344978c5f2de64,01/02/2015,EN,crystal structure|azamacrocyclic ligand|Jahn–Teller distortion|tetrazole derivatives|synchrotron data|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 173-175 (2015)",CC BY +Crystal structure of the Anderson-type heteropolyoxometalate; K2[H7CrIIIMo6O24]·8H2O: a redetermination revealing the position of the extra H atom in the polyanion,Hea-Chung Joo|Ki-Min Park|Uk Lee,10.1107/S2056989015000390,https://doaj.org/article/f91dc620b9e74e58a44c5ff48ddcab9d,01/02/2015,EN,crystal structure|redetermination|B-series Anderson-type polyanion|symmetric hydrogen bond|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 157-160 (2015)",CC BY +"Crystal structure of 3-benzoyl-2-[(5-bromo-2-hydroxy-3-methoxybenzylidene)amino]-4,5,6,7-tetrahydrobenzo[b]thiophene",Manpreet Kaur|Jerry P. Jasinski|H. S. Yathirajan|Christopher Glidewell|K. Byrappa,10.1107/S2056989015000195,https://doaj.org/article/712ac8d7b8c949d2a3d303ed7123f75f,01/02/2015,EN,"crystal structure|2-aminothiophene|4,5,6,7-tetrahydrobenzo[b]thiophene|Schiff base|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 176-179 (2015)",CC BY +Crystal structure of a mixed solvated form of amoxapine acetate,Rajni M. Bhardwaj|Vishal Raval|Iain D. H. Oswald|Alastair J. Florence,10.1107/S2056989014028096,https://doaj.org/article/d1205213f0b34d90a3445702aee44972,01/02/2015,EN,crystal structure|amoxapine|oxazepine|mixed solvate|hydrogen bonding.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 139-141 (2015)",CC BY +Crystal structures of two decavanadates(V) with pentaaquamanganese(II) pendant groups: (NMe4)2[V10O28{Mn(H2O)5}2]·5H2O and [NH3C(CH2OH)3]2[V10O28{Mn(H2O)5}2]·2H2O,Maurício P. Franco|André Luis Rüdiger|Jaísa F. Soares|Giovana G. Nunes|David L. Hughes,10.1107/S2056989014028230,https://doaj.org/article/414429e9121045baba78cd3469f1e8b5,01/02/2015,EN,crystal structure|decavanadate|heteropolyanion|manganese(II)|organic cations|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 146-150 (2015)",CC BY +Crystal structure of bis(cyclohexylammonium) diphenyldioxalatostannate(IV),Modou Sarr|Aminata Diasse-Sarr|Libasse Diop|Laurent Plasseraud|Hélène Cattey,10.1107/S2056989014027716,https://doaj.org/article/f3ad4947832947e5a4d6c6109a05a72c,01/02/2015,EN,crystal structure|organotin(IV) compound|oxalate ligands|cis arrangement|cyclohexylammonium|N—H...O hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 151-153 (2015)",CC BY +"Crystal structure of chlorido{1-(2,3-dimethyl-5-oxido-1-phenyl-1H-pyrazol-2-ium-4-yl-κO)-2-[3-methyl-5-oxo-1-phenyl-4,5-dihydro-1H-pyrazol-4-ylidene-κO]hydrazin-1-ido-κN1}copper(II) from laboratory X-ray powder data",Olga Kovalchukova|Van Nguen|Svetlana Strashnova|Dmitry Kuznetsov|Teimuraz Berikashvili,10.1107/S205698901402756X,https://doaj.org/article/6a744f0c6eeb497f88e96a3c4b9ded44,01/02/2015,EN,crystal structure|azopyrazolone|copper complex|powder diffraction|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 124-127 (2015)",CC BY +"Crystal structure of trans-(1,8-dibutyl-1,3,6,8,10,13-hexaazacyclotetradecane-κ4N3,N6,N10,N13)bis(perchlorato-κO)copper(II) from synchrotron data",Dae-Woong Kim|Jong Won Shin|Dohyun Moon,10.1107/S2056989014028047,https://doaj.org/article/7cf8fcee9c504060971812805caadd63,01/02/2015,EN,Crystal structure|azamacrocyclic ligand|Jahn–Teller distortion|synchrotron data|hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 136-138 (2015)",CC BY +Crystal structure of dimanganese(II) zinc bis[orthophosphate(V)] monohydrate,Ghaleb Alhakmi|Abderrazzak Assani|Mohamed Saadi|Lahcen El Ammari,10.1107/S2056989015000341,https://doaj.org/article/ec8727bda7444699a729f77bf6f85926,01/02/2015,EN,crystal structure|transition metal phosphates|hydrothermal synthesis|Fe3(PO4)2·H2O structure type|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 154-156 (2015)",CC BY +"Crystal structures of 2,6-bis[(1H-1,2,4-triazol-1-yl)methyl]pyridine and 1,1-[pyridine-2,6-diylbis(methylene)]bis(4-methyl-1H-1,2,4-triazol-4-ium) iodide triiodide",Marites A. Guino-o|Matthew J. Folstad|Daron E. Janzen,10.1107/S2056989014027881,https://doaj.org/article/3f1c463fa818455bb8c00498343e835c,01/02/2015,EN,"crystal structure|1,2,4-triazole|triazolium cation|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 128-132 (2015)",CC BY +Crystal structure of (2-methyl-1-phenylsulfonyl-1H-indol-3-yl)(phenyl)methanone,M. Umadevi|V. Saravanan|R. Yamuna|A. K. Mohanakrishnan|G. Chakkaravarthi,10.1107/S2056989014028059,https://doaj.org/article/d536dd7bf6f64089a45480170aff2a82,01/02/2015,EN,Indole derivative|crystal structure|C—H...O hydrogen bonds|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 133-135 (2015)",CC BY +"Crystal structure of bis(2,2′-bipyridine)[N′-(quinolin-2-ylmethylidene)pyridine-2-carbohydrazide]ruthenium(II) bis(tetrafluoridoborate) dichloromethane trisolvate",Asami Mori|Takayoshi Suzuki|Kiyohiko Nakajima,10.1107/S2056989015000122,https://doaj.org/article/6c663187c8d64d629711d024bf549e00,01/02/2015,EN,crystal structure|picolinolylhydrazone|intramolecular hydrogen bonding|ruthenium(II) polypyridyl complex.|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 142-145 (2015)",CC BY +"Crystal structure of (Z)-1-phenyl-3-styrylundeca-2-en-4,10-diyn-1-ol",Rakesh Ganguly|Sally|Philip Wai Hong Chan,10.1107/S205698901402742X,https://doaj.org/article/eea1ad54876f41e48b3515a979f007db,01/01/2015,EN,"crystal structure|1,3-migration|alcohol group|catalytic cyclization|styrylundecanene.|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o64-o64 (2015)",CC BY +"Crystal structure of (E)-1-(4′-methyl-[1,1′-biphenyl]-4-yl)-3-(3-nitrophenyl)prop-2-en-1-one",T. Vidhyasagar|K. Rajeswari|D. Shanthi|M. Kayalvizhi|G. Vasuki|A. Thiruvalluvar,10.1107/S2056989014027443,https://doaj.org/article/c3c73fc714c04237b1bb35ea6d1ec99e,01/01/2015,EN,crystal structure|chalcones|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o65-o66 (2015)",CC BY +"Crystal structure of (E)-N-(3,4-dimethoxybenzylidene)morpholin-4-amine. Corrigendum",Sevim Türktekin Çelikesir|Mehmet Akkurt|Aliasghar Jarrahpour|Mehdi Mohammadi Chermahini|Orhan Büyükgüngör,10.1107/S2056989014026589,https://doaj.org/article/3db8b7c069fa42fe8eb6a0c3f267120f,01/01/2015,EN,Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp e1-e1 (2015)",CC BY +Crystal structure and thermal behaviour of pyridinium styphnate,Selvarasu Muthulakshmi|Doraisamyraja Kalaivani,10.1107/S2056989014027704,https://doaj.org/article/dfbdfe403a9b4597833db6f94fa6f60c,01/02/2015,EN,crystal structure|pyridinium|styphnate|TGA/DTA studies|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 117-120 (2015)",CC BY +"Crystal structure of 3-(2,2-dibromoacetyl)-4-hydroxy-2H-chromen-2-one",Ameni Brahmia|Afef Ghouili|Rached Ben Hassen,10.1107/S2056989014027947,https://doaj.org/article/c8ba4025521945a088cb725773e09ac4,01/02/2015,EN,crystal structure|coumarin derivatives|dibromation|hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 2, Pp 121-123 (2015)",CC BY +Crystal structure of N′-[(E)-(4-chlorophenyl)(phenyl)methylidene]-4-methylbenzenesulfonohydrazide,J. Balaji|S. Prabu|J. J. F. Xavier|P. Srinivasan,10.1107/S2056989014026723,https://doaj.org/article/74b2992ab0ea409394827e5e4e162718,01/01/2015,EN,crystal structure|benzenesulfonohydrazide|hydrogen bonding|condensation reaction|centrosymmetric dimers|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o45-o46 (2015)",CC BY +"Crystal structure of [(2R,3R,4S)-3,4-bis(acetyloxy)-5-iodo-3,4-dihydro-2H-pyran-2-yl]methyl acetate",Julio Zukerman-Schpector|Ignez Caracelli|Hélio A. Stefani|Anwar Shamim|Edward R.T. Tiekink,10.1107/S205698901402564X,https://doaj.org/article/84f706c64e684c4c9fb1ae974a4c7af1,01/01/2015,EN,Crystal structure|carbohydrate|conformation|C—H...O interactions|crystal structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o53-o54 (2015)",CC BY +Crystal structure of 2-{[(2-chlorophenyl)imino]methyl}phenol,Matheswaran Saranya|Annamalai Subashini|Chidambaram Arunagiri|Packianathan Thomas Muthiah,10.1107/S2056989014026978,https://doaj.org/article/7e5edebf22e74c44861d50370160a08b,01/01/2015,EN,crystal structure|2-{[(2-chlorophenyl)imino]methyl}phenol|Schiff base|van der Waals contacts|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o48-o48 (2015)",CC BY +Crystal structure of cyclohexylammonium thiocyanate,Abdulaziz A. Bagabas|Sultan B. Alhoshan|Hazem A. Ghabbour|C. S. Chidan Kumar|Hoong-Kun Fun,10.1107/S2056989014027297,https://doaj.org/article/a6805155ac7b45d4b584e9273c6830dc,01/01/2015,EN,crystal structure|cyclohexylammonium|distorted chair|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o62-o63 (2015)",CC BY +Crystal structure of chlorfluazuron,Seonghwa Cho|Jineun Kim|Sangjin Lee|Tae Ho Kim,10.1107/S2056989014026632,https://doaj.org/article/bf7b876ce8e9408ead517e4255402a6c,01/01/2015,EN,crystal structure|chlorfluazuron|urea|insecticidal properties|Cl...Cl contacts|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o55-o55 (2015)",CC BY +Crystal structure of N-(propan-2-ylcarbamothioyl)benzamide,Jerry P. Jasinski|Mehmet Akkurt|Shaaban K. Mohamed|Mohamed A. Gad|Mustafa R. Albayati,10.1107/S2056989014027133,https://doaj.org/article/6fe484f2fc664e188a34511c25321683,01/01/2015,EN,crystal structure|thiourea|conformation|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o56-o57 (2015)",CC BY +"Crystal structure of 5-[bis(methylsulfonyl)methyl]-1,3-dimethyl-5-(methylsulfonyl)pyrimidine-2,4,6(1H,3H,5H)-trione",Eyad Mallah|Ahmed Al-Sheikh|Kamal Sweidan|Wael Abu Dayyih|Manfred Steimann,10.1107/S2056989014027455,https://doaj.org/article/059c2264c378444abad1d4b67b7b8cd4,01/01/2015,EN,crystal structure|barbituric acid|pyrimidines|methylsulfonyl|trione|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o58-o59 (2015)",CC BY +"Crystal structure of N1,N1-diethyl-N4-[(quinolin-2-yl)methylidene]benzene-1,4-diamine",Md. Serajul Haque Faizi|Nazia Siddiqui|Saleem Javed,10.1107/S2056989014027108,https://doaj.org/article/9b73c88dbb914d61a0875b73fa018105,01/01/2015,EN,"crystal structure|benzene-1,4-diamine|quinoline|C—H...π interactions|quinolinyl-containing Schiff bases|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o49-o50 (2015)",CC BY +"1,1′-{(Hexane-1,6-diyl)bis[(azaniumylylidene)methanylylidene]}bis(naphthalen-2-olate)",Kamel Ouari|Sabrina Bendia|Moufida Merzougui|Corinne Bailly,10.1107/S2056989014027236,https://doaj.org/article/4c1375e34822452692d392af8a3974e4,01/01/2015,EN,"crystal structure|1,6-diaminohexane|2-hydroxy-1-naphthaldehyde|hydrogen bonding|elemental analysis.|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o51-o52 (2015)",CC BY +"Crystal structure of 1-(2,4-dimethylphenyl)urea",L. Jayalakshmi|C. Ramalingan|B. Sridhar|S. Selvanayagam,10.1107/S2056989014027431,https://doaj.org/article/7da9435f45bd45c18623df2aa0d95960,01/01/2015,EN,crystal structure|urea|urea derivatives|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o60-o61 (2015)",CC BY +"Crystal structure of 2,2-dichloro-1-(piperidin-1-yl)ethanone",Markus Schwierz|Helmar Görls|Wolfgang Imhof,10.1107/S205698901402708X,https://doaj.org/article/3b5bc53c666e4b8a83f67de3a42c1294,01/01/2015,EN,crystal structure|piperidine ring|ethanone|weak hydrogen bonds|intermolecular Cl...O interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o47-o47 (2015)",CC BY +Crystal structure of (E)-4-{1-[2-(carbamothioyl)hydrazin-1-ylidene]ethyl}phenyl 4-methylbenzoate,Karthik Ananth Mani|Vijayan Viswanathan|S. Narasimhan|Devadasan Velmurugan,10.1107/S2056989014026942,https://doaj.org/article/cede0578cbfa4e9e9f6d3f2e8b94496b,01/01/2015,EN,crystal structure|thiosemicarbazones derivatives|biological activity|hydrogen bonding|ester|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o43-o44 (2015)",CC BY +Crystal structure of (E)-2-[4-(4-hydroxyphenyl)butan-2-ylidene]hydrazine-1-carbothioamide,Adriano Bof de Oliveira|Johannes Beck|Christian Landvogt|Bárbara Regina Santos Feitosa|Fillipe Vieira Rocha,10.1107/S2056989014026401,https://doaj.org/article/49ca1ef96b954e558d49e5527d2bc920,01/01/2015,EN,crystal structure|thiosemicarbazone|raspberry ketone|hydrogen bonding|three-dimensional|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o33-o34 (2015)",CC BY +Crystal structure of 4-chloro-N-[2-(piperidin-1-yl)ethyl]benzamide monohydrate,K. Prathebha|D. Reuben Jonathan|B. K Revathi|S. Sathya|G. Usha,10.1107/S2056989014026851,https://doaj.org/article/26f4e2e2836a43c5a39fc82a03b40b43,01/01/2015,EN,crystal structure|piperidine|benzamide|monohydrate|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o39-o40 (2015)",CC BY +"Crystal structure of (E)-2-[1-(benzo[d][1,3]dioxol-5-yl)ethylidene]-N-methylhydrazine-1-carbothioamide",Adriano Bof de Oliveira|Christian Näther|Inke Jess|Renan Lira de Farias|Iasmin Alves Ribeiro,10.1107/S2056989014026395,https://doaj.org/article/d9643d1bf0f544c68dcf23e69dc457cf,01/01/2015,EN,"crystal structure|thiosemiarbazone|3′,4′-(methylenedioxy)acetophenone|4-methylthiosemicarbazone|hydrogen bonding|two-dimensional network|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o35-o36 (2015)",CC BY +Crystal structure of 3-carbamothioylpyridinium thiocyanate,Hasna Bouchareb|Mhamed Boudraa|Sofiane Bouacida|Hocine Merazig|El Hossain Chtoun,10.1107/S2056989014026437,https://doaj.org/article/3202605d04c54ffdb9ab3aeb72ea8ad9,01/01/2015,EN,crystal structure|3-carbamothioylpyridinium cation|thiocyanate anion|N—H...S hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o30-o31 (2015)",CC BY +"Crystal structure of 1,7,8,9-tetrachloro-4-(2-fluorobenzyl)-10,10-dimethoxy-4-azatricyclo[5.2.1.02,6]dec-8-ene-3,5-dione",Jia-liang Zhong|Jia-wei Hou|Li-hong Liu|He Liu,10.1107/S2056989014026279,https://doaj.org/article/f33110d7a8cd41ae99235dbd07631b38,01/01/2015,EN,"crystal structure|biochemical activity|tricyclo[5,2,1,02,6]dec-8-ene-3,5-dione|hydrogen bonding|C—H...F interaction|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o32-o32 (2015)",CC BY +Crystal structure of O-isopropyl [bis(trimethylsilyl)amino](tert-butylamino)phosphinothioate,Oleksandr O. Kovalenko|Vasyl Kinzhybalo|Oleksii A. Brusylovets|Tadeusz Lis,10.1107/S205698901402622X,https://doaj.org/article/68b38df40afb493eb68fb78643d63305,01/01/2015,EN,crystal structure|(trimethylsilyl)amino|phosphinothioate|N—H...S hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o37-o38 (2015)",CC BY +"Crystal structure of (2S,4R)-ethyl 4-nitromethyl-1-[(S)-1-phenylethyl]-6-sulfanylidenepiperidine-2-carboxylate",Araceli Zárate|David Aparicio|Angel Palillero|Angel Mendoza,10.1107/S2056989014026711,https://doaj.org/article/7f56d955a5d84b689c15ad05eaa08473,01/01/2015,EN,crystal structure|thiopiperidine|piperidine-2-thiones|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o41-o42 (2015)",CC BY +Crystal structure of 4-(dimethylamino)pyridinium 4-aminobenzoate dihydrate,A. Thirunavukkarasu|A. Silambarasan|R. Mohan Kumar|P. R. Umarani|G. Chakkaravarthi,10.1107/S2056989014026310,https://doaj.org/article/21c5e43a57624b2584910f0dbc6ca4d7,01/01/2015,EN,crystal structure|4-(dimethylamino)pyridinium|4-aminobenzoate|hydrate|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o26-o27 (2015)",CC BY +"Crystal structure of N′-(2,6-dimethylphenyl)benzenecarboximidamide tetrahydrofuran monosolvate",Jian-Ping Zhao|Rui-Qin Liu|Zhi-Hao Jiang|Sheng-Di Bai,10.1107/S2056989014026255,https://doaj.org/article/adaefae4e5004f968effa0327999a5ac,01/01/2015,EN,crystal structure|benzenecarboximidamide|tetrahydrofuran solvate|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o28-o29 (2015)",CC BY +"Crystal structure of 3-bromo-4-dimethylamino-1-methyl-1,2,4-triazol-5(4H)-one",Gerhard Laus|Thomas Gelbrich|Klaus Wurst|Herwig Schottenberger,10.1107/S205698901402636X,https://doaj.org/article/76c84801332143ae949fb4e2aa1add9f,01/01/2015,EN,"crystal structure|1,2,4-triazol-5(4H)-one|Br...O=C interactions|halogen interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o23-o23 (2015)",CC BY +"Crystal structure of 1-methanesulfonyl-1,2,3,4-tetrahydroquinoline",S. Jeyaseelan|S. L. Nagendra Babu|G. Venkateshappa|P. Raghavendra Kumar|B. S. Palakshamurthy,10.1107/S2056989014025353,https://doaj.org/article/1297bd93dae440b08e08f16178c26778,01/01/2015,EN,"crystal structure|1,2,3,4-tetrahydroquinoline|physiological activities|photosensitizers|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o20-o20 (2015)",CC BY +"Crystal structure of (Z)-3-(4-methoxybenzylidene)-2,3-dihydrobenzo[b][1,4]thiazepin-4(5H)-one",V. Vinayagam|J. Mohan Raj|S. Murugavel|R. Selvakumar|M. Bakthadoss,10.1107/S2056989014026267,https://doaj.org/article/92b65e16820240f3bb0cacb9f128721b,01/01/2015,EN,"crystal structure|benzo[b][1,4]thiazepin-4(5H)-one|pharmaceutical properties|thiazepin derivatives|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o21-o22 (2015)",CC BY +Crystal structure of 3-(morpholin-4-yl)-1-phenyl-3-(pyridin-2-yl)propan-1-one,F. M. Mashood Ahamed|M. Syed Ali Padusha|B. Gunasekaran,10.1107/S2056989014026292,https://doaj.org/article/caba4d8755244165ac6daffe8ec9b41f,01/01/2015,EN,crystal structure|morpholin-4-yl|pyridin-2-yl|propan-1-one|biological activity|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o24-o25 (2015)",CC BY +"Crystal structure of 2,2-dichloro-1-(piperidin-1-yl)butane-1,3-dione",Markus Schwierz|Helmar Görls|Wolfgang Imhof,10.1107/S2056989014026164,https://doaj.org/article/bf4c8b3a5d8948998e9b35262a1e6f54,01/01/2015,EN,"crystal structure|2,2-dichloro-1-(piperidin-1-yl)butane-1,3-dione|hydrogen bonding|O...Cl contacts|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o19-o19 (2015)",CC BY +"Crystal structure of 2-azaniumyl-3-bromo-6-oxo-5,6-dihydropyrido[1,2-a]quinoxalin-11-ium dibromide",Md. Serajul Haque Faizi|Natalia O. Sharkina|Turganbay S. Iskenderov,10.1107/S2056989014026127,https://doaj.org/article/6efc1a469adf4e4e8063f3796aa99334,01/01/2015,EN,"crystal structure|bromide|pyrido[1,2-a]quinoxalin-11-ium|C—H...Br interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o17-o18 (2015)",CC BY +Crystal structure of 2-methoxy-2-[(4-methylphenyl)sulfanyl]-1-phenylethan-1-one,Julio Zukerman-Schpector|Paulo R. Olivato|Henrique J. Traesel|Jéssica Valença|Daniel N. S. Rodrigues|Edward R. T. Tiekink,10.1107/S205698901402550X,https://doaj.org/article/e5d48f3ac7dc45079129b4967ba140b1,01/01/2015,EN,crystal structure|β-thiocarbonyl|C—H...O interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o3-o4 (2015)",CC BY +"Crystal structure of 1,3-bis(4-methylbenzyl)-1H-1,3-benzimidazol-3-ium bromide monohydrate",Sevim Türktekin Çelikesir|Ömer Çelik|Senem Akkoç|İlhan Özer İlhan|Yetkin Gök|Mehmet Akkurt,10.1107/S2056989014025857,https://doaj.org/article/9ae1a74608ad4c879766edc47a5c9d57,01/01/2015,EN,"crystal structure|1,3-bis(4-methylbenzyl)-1H-3,1-benzimidazol-3-ium bromide monohydrate|benzimidazolium salts|N-heterocyclic carbenes|hydrogen bonds|aromatic π–π stacking interactions|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o10-o11 (2015)",CC BY +Crystal structure of 1-(4-methoxyphenyl)-4-(4-nitrophenyl)-3-phenoxyazetidin-2-one,Sevim Türktekin Çelikesir|Mehmet Akkurt|Aliasghar Jarrahpour|Habib Allah Shafie|Ömer Çelik,10.1107/S2056989014025833,https://doaj.org/article/6680dfc92c654ba69d91d779bad40efb,01/01/2015,EN,crystal structure|phenoxyazetidin-2-one|β-lactam ring|four-membered monocyclic aza-heterocycles|antibiotics|C—H...O hydrogen bonds|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o12-o13 (2015)",CC BY +Crystal structure of cyprodinil,Youngeun Jeon|Gihaeng Kang|Seonghwa Cho|Tae Ho Kim,10.1107/S2056989014025742,https://doaj.org/article/ac4c87b9333c46fba031017b10f3d68c,01/01/2015,EN,crystal structure|cyprodinil|pyrimidin-2-amine|fungicide|hydrogen bonding|π–π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o5-o5 (2015)",CC BY +Crystal structure of 3-(4-chlorophenoxy)-4-(2-nitrophenyl)azetidin-2-one with an unknown solvate,Sevim Türktekin Çelikesir|Mehmet Akkurt|Aliasghar Jarrahpour|Habib Allah Shafie|Ömer Çelik,10.1107/S2056989014025845,https://doaj.org/article/d596edfc7dec4fb2b657eb011ab6e696,01/01/2015,EN,crystal structure|β-lactam ring|C(4) chain|hydrogen bonding|N-unsubstituted 2-azetidinone|hydrogen bonds|C—H...π interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o8-o9 (2015)",CC BY +"Crystal structure of 1,7,8,9-tetrachloro-4-(3,5-dichlorobenzyl)-10,10-dimethoxy-4-azatricyclo[5.2.1.02,6]dec-8-ene-3,5-dione",He Liu|Jia-liang Zhong|Wen-xia Sun|Yan-qing Gong|Li-hong Liu,10.1107/S2056989014025961,https://doaj.org/article/88b1ebe78c7a448c8e281b2042b63d4d,01/01/2015,EN,"crystal structure|tricyclo[5.2.1.02,6]dec-8-ene-3,5-dione|biological activity|cycloalkene skeleton|dipole–dipole interactions|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o14-o15 (2015)",CC BY +"Crystal structure of 2-(1,3-dioxoindan-2-yl)isoquinoline-1,3,4-trione",Raza Murad Ghalib|C. S. Chidan Kumar|Rokiah Hashim|Othman Sulaiman|Hoong-Kun Fun,10.1107/S2056989014025997,https://doaj.org/article/8d3090a186134309b328f4d7bee99ab7,01/01/2015,EN,"crystal structure|isoquinoline-1,3,4-trione derivative|synthesis|hydrogen bonding|pharmacological properties|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o6-o7 (2015)",CC BY +Crystal structure of ethyl 2-[2-((1E)-{(1E)-2-[2-(2-ethoxy-2-oxoethoxy)benzylidene]hydrazin-1-ylidene}methyl)phenoxy]acetate,Joel T. Mague|Shaaban K. Mohamed|Mehmet Akkurt|Eman A. Ahmed|Omran A. Omran,10.1107/S2056989014025584,https://doaj.org/article/3b13e122791140bf9179501eceebcb0b,01/01/2015,EN,crystal structure|azomethenes|bis-phenoxy carboxylate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o16-o16 (2015)",CC BY +"Crystal structure of the one-dimensional metal–organic polymer catena-poly[[tris(μ-2,4,6-trimethylbenzoato-κ2O:O′)dizinc]-μ-2,4,6-trimethylbenzoato-κ2O:O′]",Masaki Yamamura|Tatsuya Nabeshima,10.1107/S2056989014027418,https://doaj.org/article/97bd523aa7254d0191de0ea26eaa5f8c,01/01/2015,EN,crystal structure|zinc cluster|metal–organic polymer|carboxylate|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp m14-m15 (2015)",CC BY +"Crystal structure of 6,9-dimethyl-7H-[1,2,4]triazolo[4,3-b][1,2,4]triazepin-8(9H)-one 0.40-hydrate",Abdellah Harmaoui|Rachid Bouhfid|El Mokhtar Essassi|Mohamed Saadi|Lahcen El Ammari,10.1107/S2056989014025687,https://doaj.org/article/5eaf30fd11e948319308cbdfd75ce2f8,01/01/2015,EN,"crystal structure|1,2,4-triazepin-8(9H)-one|pharmacological and biological activities|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp o1-o2 (2015)",CC BY +"Crystal structure of bis(2,2′-bipyridine-κ2N,N′)bis(thiocyanato-κN)manganese(II) 2,2′-bipyridine monosolvate",Stefan Suckert|Inke Jess|Christian Näther,10.1107/S205698901402516X,https://doaj.org/article/c1224ed5e2124db8b040d25afd0cc1ec,01/01/2015,EN,crystal structure|coordination polymer|octahedral manganese(II) coordination|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp m3-m4 (2015)",CC BY +"Crystal structure of bis(η5-cyclopentadienyl)(2,3-diethylbutane-1,4-diyl)hafnium(IV)",Vladimir V. Burlakov|Wolfgang Baumann|Perdita Arndt|Anke Spannenberg|Uwe Rosenthal,10.1107/S2056989014026929,https://doaj.org/article/a1a9e50651614d6da8f47025fa8c21ab,01/01/2015,EN,crystal structure|hafnocene|five-membered metallacycle|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp m7-m7 (2015)",CC BY +"Crystal structure of tris(1,10-phenanthroline-κ2N,N′)iron(II) bis[bis(trifluoromethylsulfonyl)imide] monohydrate",Kazunori Teramoto|Takeshi Kawasaki|Toshikazu Nishide|Yasuhisa Ikeda,10.1107/S2056989014026966,https://doaj.org/article/f5fe66c6f8ee4552bc427f331674c558,01/01/2015,EN,"crystal structure|1,10-phenanthroline|iron(II) complex|complex salt|bis(trifluoromethylsulfonyl)imide|low-spin d6 FeII ions|hydrogen bonding|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp m8-m9 (2015)",CC BY +"Crystal structure of dichlorido{4-[(E)-(methoxyimino-κN)methyl]-1,3-thiazol-2-amine-κN3}palladium(II)",Viktorita V. Dyakonenko|Olga O. Zholob|Svitlana I. Orysyk|Vasily I. Pekhnyo,10.1107/S2056989014026619,https://doaj.org/article/990a139c0ba5426db3684723bf48a500,01/01/2015,EN,"crystal structure|palladium|multi-functional ligand|4-[(methoxyimino)methyl]-1,3-thiazol-2-amine (MIMTA)|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp m10-m11 (2015)",CC BY +"Crystal structure of poly[(N,N-dimethylacetamide-κO)(μ4-5-methylisophthalato-κ5O:O,O′:O′′:O′′′)manganese(II)]",Lan Jin|Li-Li Zha|San Gao|Shi-Yao Yang|Rong-Bin Huang,10.1107/S2056989014025626,https://doaj.org/article/5ac8b37917a34c32a301d7814b1cd6e8,01/01/2015,EN,"crystal structure|manganese(II) coordination polymer|pcu structure|N,N-dimethylacetamide|5-methylisophthalate|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp m1-m2 (2015)",CC BY +Crystal structure of the coordination polymer [FeIII2{PtII(CN)4}3],Maksym Seredyuk|M. Carmen Muñoz|José A. Real|Turganbay S. Iskenderov,10.1107/S2056989014026188,https://doaj.org/article/81ca553f145e4b92a8316f152d14adb2,01/01/2015,EN,crystal structure|polycyanidometalate|spin-crossover|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp i1-i2 (2015)",CC BY +Crystal structure of [3-(1H-benzimidazol-2-yl)propanoato-κN3][3-(1H-benzimidazol-2-yl)propanoic acid-κN3]copper(I),Zhimin Liu|Shengrun Zheng|Sisi Feng,10.1107/S2056989014026656,https://doaj.org/article/cb1912c6567f4f99aa0ff130bc4ae130,01/01/2015,EN,crystal structure|3-(1H-benzimidazol-2-yl)propanoic acid|copper(I)|hydrogen bonding|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp m5-m6 (2015)",CC BY +"Crystal structure of bis(3-bromopyridine-κN)bis(O-ethyl dithiocarbonato-κ2S,S′)nickel(II)",Rajni Kant|Gurvinder Kour|Sumati Anthal|Neerupama|Renu Sachar,10.1107/S2056989014027339,https://doaj.org/article/004df1cd5dfd42e2b78d5ecf50ada2f1,01/01/2015,EN,Crystal structure|nickel complex|xanthate ligands|π–π interactions|crystal structure|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp m12-m13 (2015)",CC BY +"Crystal structure of 4,4′-(ethane-1,2-diyl)bis(2,6-dibromoaniline)",Ines Hauptvogel|Wilhelm Seichter|Edwin Weber,10.1107/S2056989014027182,https://doaj.org/article/4f6b74ada72746ba85bbdfe4b42e5a9a,01/01/2015,EN,"crystal structure|4,4′-(ethane-1,2-diyl)bis(2,6-dibromoaniline)|framework structures|Chemistry|QD1-999",2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp 97-99 (2015)",CC BY +Crystal structure of (Z)-4-[1-(4-acetylanilino)ethylidene]-3-methyl-1-phenyl-1H-pyrazol-5(4H)-one,Refaat M. Mahfouz|Zeynep Demircioğlu|Mohamed S. Abbady|Orhan Büyükgüngör,10.1107/S2056989014026899,https://doaj.org/article/5a5102b0e73d4f2fbc55e995f7ca43cc,01/01/2015,EN,crystal structure|Schiff bases|pyrazolone derivatives|keto–amine tautomeric form|hydrogen bonding|π–π stacking interactions|Chemistry|QD1-999,2056-9890,International Union of Crystallography,"Acta Crystallographica Section E: Crystallographic Communications, Vol 71, Iss 1, Pp 94-96 (2015)",CC BY +Metagenomic Analysis of Upwelling-Affected Brazilian Coastal Seawater Reveals Sequence Domains of Type I PKS and Modular NRPS,Rafael R. C. Cuadrat|Juliano C. Cury|Alberto M. R. Dávila,10.3390/ijms161226101,https://doaj.org/article/d9fe469f75a0442382b84ba4f50007ee,01/11/2015,English,PKS|NRPS|metagenomics|environmental genomics|upwelling|coastal environment|Chemistry|QD1-999|Science|Q,1422-0067,MDPI AG,"International Journal of Molecular Sciences, Vol 16, Iss 12, Pp 28285-28295 (2015)",CC BY diff --git a/data/petitions-archive-list.xlsx b/data/petitions-archive-list.xlsx new file mode 100644 index 00000000..ff0e870b Binary files /dev/null and b/data/petitions-archive-list.xlsx differ diff --git a/data/solar-patents.csv b/data/solar-patents.csv new file mode 100644 index 00000000..0a2fa88e --- /dev/null +++ b/data/solar-patents.csv @@ -0,0 +1,1017 @@ +Application number,Title,Applicant(s),Inventor(s),Filing date,Application status, +2011328176,Method for manufacturing a trough mirror for solar trough,Hydro Aluminium Rolled Products GmbH,"Denkmann, Volker; Schenkel, Wilhelm; Siemen, Andreas; Hampel, Ulrich; Eberhard, Sandra",8/11/2011,GRANTED, +2011328285,Method for operation of a photovoltaic installation for feeding electrical power into a medium-voltage power supply grid,Adensis GmbH; SMA Solar Technology AG,"Falk, Andreas; Gerdemann, Aaron Philipp; Niebling, Frank; Beck, Bernhard",4/11/2011,GRANTED, +2011337153,Method of forming contacts for a back-contact solar cell,SunPower Corporation,"Manning, Jane",3/10/2011,GRANTED, +2011338012,Solar receiver,"Mitsubishi Heavy Industries, Ltd.","Kobayashi, Kazuta; Tagawa, Masashi; Osada, Toshiyuki; Aoyama, Kuniaki; Masuda, Masahiro; Okubo, Takeshi; Sasaki, Shuhei; Furutani, Akira; Kato, Jin; Nakatani, Hiromi",11/11/2011,GRANTED, +2011338314,Battery operated solar charged pump kit utilizing an inline submersible pump,Xylem IP Holdings LLC,"Irving, Michael Howard; Schopperle, Jeffrey Brian",8/12/2011,ACCEPTED, +2011339841,Solar cell module and connector for solar cell module,Kabushiki Kaisha Toshiba,"Shinohara, Hirofumi",8/09/2011,FILED, +2011341720,Portable solar power generator and water heating system,The Boeing Company,"Lee, Bailey",22/09/2011,GRANTED, +2011345259,Method for connecting solar cells,SunPower Corporation,"Phu, Thomas; Kumaria, Shashwat; Deleon, Briccio",17/11/2011,ACCEPTED, +2011346645,Naphtalene monoimide derivatives and use thereof as photosensitizers in solar cells and photodetectors,BASF SE,"Pschirer, Neil Gregory; Schoneboom, Jan; Eickemeyer, Felix; Reichelt, Helmut; Sens, Rudiger; Bruder, Ingmar",16/12/2011,FILED, +2011349033,Solar energy absorber unit and solar energy device containing same,Novelis Inc.,"Yuan, Yudie; Hunter, John Anthony",17/11/2011,GRANTED, +2011349604,Locating connectors and methods for mounting solar hardware,SunPower Corporation,"Wares, Brian; Almy, Charles; Barton, Nicholas",16/12/2011,GRANTED, +2011349630,Locating connectors and methods for mounting solar hardware,SunPower Corporation,"Wares, Brian; Almy, Charles",16/12/2011,GRANTED, +2011349904,Solar cell module securing structure,"Yanegijutsukenkyujo CO., LTD.","Kobayashi, Shuichi",1/11/2011,GRANTED, +2011351181,Solar concentrating heat receiver and solar concentrating heat receiving system,"Mitsubishi Heavy Industries, Ltd.","Mitsuda, Kimihiko; Yamamoto, Yasuharu; Osada, Toshiyuki; Tagawa, Masashi; Kobayashi, Kazuta",5/12/2011,GRANTED, +2011354220,Heat transfer medium for solar thermal systems,Siemens Aktiengesellschaft,"Ubler, Matthias; Groppel, Peter; Muller-Elvers, Christian; Murau, Peter; Heilmann, Pascal",2/12/2011,GRANTED, +2011355591,A solar collector drainage arrangement,Rheem Australia Pty Limited,"Reardon, Joseph; Chapman, Gregory; Bolitho, Glen",22/12/2011,FILED, +2011355592,A sealing arrangement for a solar collector enclosure,Rheem Australia Pty Limited,"Reardon, Joseph; Chapman, Gregory; Bolitho, Glen",22/12/2011,GRANTED, +2011355593,A solar collector ventilation arrangement,Rheem Australia Pty Limited,"Reardon, Joseph; Chapman, Gregory; Bolitho, Glen",22/12/2011,FILED, +2011355594,A solar collector panel attachment arrangement,Rheem Australia Pty Limited,"Reardon, Joseph; Chapman, Gregory; Bolitho, Glen",22/12/2011,FILED, +2011357237,New solar concentration devices,Evonik Rohm GmbH,"Ackermann, Jochen; Numrich, Uwe; Lafontaine, Grant B.; Pasierb, Michael Thomas; Baumler, Andrew J.",13/12/2011,FILED, +2011358195,Protective device for a photovoltaic system,SMA Solar Technology AG,"Hopf, Markus; Victor, Matthias; Greizer, Frank; Bettenwort, Gerd; Friebe, Jens",18/05/2011,GRANTED, +2011358821,"Clamp connection for the attachment of plate-shaped components, particularly solar modules",Carl Freudenberg KG,"Barth, Armin",12/08/2011,LAPSED, +2011359381,Process and structures for fabrication of solar cells,SunPower Corporation,"Harley, Gabriel; Smith, David D; Dennis, Tim; Waldhauer, Ann; Kim, Taeseok; Cousins, Peter John",20/09/2011,GRANTED, +2011359885,Support mechanism for thermal receivers in the solar trough systems,Hse Hitit Solar Enerji Anonim Sirketi,"Capan, Rahmi Oguz",16/12/2011,FILED, +2011363000,Automatic generation and analysis of solar cell IV curves,SunPower Corporation,"Fischer, Kevin C.; Kraft, Steven M.; Jones, Jason C.",12/12/2011,GRANTED, +2011364489,"Heat receiver tube, method for manufacturing the heat receiver tube, parabolic trough collector with the receiver tube and use of the parabolic trough collector",Siemens Concentrated Solar Power Ltd.,"Aran, Hagai; Barkai, Menashe; Cohen, Gabriel; Ezer, Rami; Lipman, Eli",29/03/2011,FILED, +2011365793,Method and apparatus for making stationery parabolic solar collector,"Ozkul, Tarik","Ozkul, Tarik",26/05/2011,GRANTED, +2011369838,"Method of draining heat-transfer oil in a solar power plant, and equipment for draining, storing and replenishing heat-transfer oil in order to implement said method","GD Energy Services, S.A.U.","Lacalle Bayo, Jesus",27/05/2011,LAPSED, +2011371275,Bypass diode for a solar cell,SunPower Corporation,"Rim, Seung Bum; Kim, Taeseok; Smith, David D.; Cousins, Peter J.",3/10/2011,GRANTED, +2011372481,Automatic quotes for solar power installations,Solar Choice Pty Ltd,"Gemmell, Angus",26/10/2011,FILED, +2011372536,Portable solar and wind-powered energy generating system,"Miller, Lynn A.","Miller, Lynn A.",1/07/2011,FILED, +2011374670,Water-proof coating system for reflecting solar radiation and water-borne coating for forming decorative and reflective layer in coating system,Construction Research & Technology GmbH,"She, Yunchuan; Wang, Congxiao; Handyside, Timothy Marc",5/08/2011,ACCEPTED, +2011374671,A water-proof coating system for reflecting solar radiation and water-borne coatings for forming the white decorative and reflective layer in the coating system,Construction Research & Technology GmbH,"She, Yunchuan; Wang, Congxiao; Handyside, Timothy Marc",5/08/2011,GRANTED, +2011377040,"Solar thermal energy electric power generation system, solar thermal energy electric power generation method, heating medium supplying system, and heating medium heating system",Kawasaki Jukogyo Kabushiki Kaisha,"Ota, Hideaki",16/09/2011,LAPSED, +2011377920,"Glas tube with infrared light reflective coating, method for manufacturing the glass tube, heat receiver tube with the glass tube, parabolic trough collector with the heat receiver tube and use of the parabolic trough collector",Siemens Concentrated Solar Power Ltd.,"Barkai, Menashe",30/09/2011,FILED, +2011379004,Facility for treating thermal oils in solar thermal plants,"GD Energy Services, S.A.U.","Lacalle Bayo, Jesus",14/10/2011,LAPSED, +2011380892,Solar collector including a solar turbine or a turbocompressor,"Villarrubia Ruiz, Jonas","Villarrubia Ruiz, Jonas",18/12/2011,ACCEPTED, +2011384554,Solar thermal electric power generation system,Kawasaki Jukogyo Kabushiki Kaisha,"Ota, Hideaki",27/12/2011,FILED, +2011900048,"P. A process of increasing the electrical yield of existing wind turbine farm systems such that the existing turbines are not physically affected or altered, utilising their backdraught , unswept area and solar exposure to generate electricity even when the wind isn't blowing.",Terra Guardian Pty Ltd,"Bhattacharya, Ankan",8/01/2011,LAPSED, +2011900088,A Solar Collector Panel Attachment Arrangement,Rheem Australia Pty Limited,"Reardon, Joseph; Chapman, Gregory; Bolitho, Glen",12/01/2011,LAPSED, +2011900089,A Solar Collector Header Attachment Arrangement,Rheem Australia Pty Limited,"Reardon, Joseph; Chapman, Gregory; Bolitho, Glen",12/01/2011,LAPSED, +2011900091,A Sealing Arrangement for a Solar Collector Enclosure,Rheem Australia Pty Limited,"Reardon, Joseph; Chapman, Gregory; Bolitho, Glen",12/01/2011,LAPSED, +2011900092,A Solar Collector Ventilation Arrangement,Rheem Australia Pty Limited,"Reardon, Joseph; Chapman, Gregory; Bolitho, Glen",12/01/2011,LAPSED, +2011900093,A Solar Collector Drainage Arrangement,Rheem Australia Pty Limited,"Reardon, Joseph; Chapman, Gregory; Bolitho, GLen",12/01/2011,LAPSED, +2011900361,Solar derivatives,IP ASSETS; AksonG Pty Ltd; AksonG Pty Ltd,"Skryabin, Igor; Radchik, Alex",4/02/2011,LAPSED, +2011900450,Solar powered rope light,Mort Bay Traders Pty Ltd,not given,11/02/2011,LAPSED, +2011900526,Solar system 1,"Shaw, Ian Henry Mr","Shaw, Ian",17/02/2011,LAPSED, +2011900530,Solar energy system,"de Varda, Joseph","de Varda, Joseph",17/02/2011,LAPSED, +2011900574,Solar energy system,"de Varda, Joseph","de Varda, Joseph",21/02/2011,LAPSED, +2011900601,Solar Hot Water System,Nue Pty Ltd,Not Given,22/02/2011,LAPSED, +2011900794,Solar Cell Installation,"William, John Kirkham","Kirkham, William John",7/03/2011,LAPSED, +2011900829,Platinum-Free Nano Composite Counter Electrodes for Dye Sensitized Solar Cells,Monash University,Not Given,9/03/2011,LAPSED, +2011900869,Solar energy concentrators,"Yeomans, Allan James Mr","Yeomans, Allan James",11/03/2011,LAPSED, +2011900926,Solar Cells,Nano-Nouvelle Pty Ltd,Not Given,15/03/2011,LAPSED, +2011901134,Cathode-driven or assisted solar cell,University of Wollongong,Not Given,28/03/2011,LAPSED, +2011901293,Hybrid solar cell contact,NewSouth Innovations Pty Limited,"Wenham, Stuart Ross; Mai, Ly",7/04/2011,LAPSED, +2011901543,Solar Heat and Electricity Generation,"Guignard, Paul Andre Dr","Guignard, Paul A.",27/04/2011,LAPSED, +2011901668,Solar Thermal Engine,"Raffaele, Peter Robert; Raffaele, Michael John","Raffaele, Peter; Raffaele, Michael",5/05/2011,LAPSED, +2011901711,Solar heat and electricity generation,"Guignard, Paul Andre Dr","Guignard, Paul A.",7/05/2011,LAPSED, +2011901799,Solar heating,Astral Pool Australia Pty Ltd; Fabtronics Australia Pty Ltd,"Wallace, Peter Ronald; Briggs, Rodney; Harris, Frank William; Goodwin, Ashley Kane",12/05/2011,LAPSED, +2011901938,Solar panel support arrangement and method,Sunray Tracker Pty Ltd,Not Given,3/05/2011,LAPSED, +2011901964,Pebble-Glow Photo-Luminous Solar Glowing Pebble Paving and Wall Rendering Finishing System,"Rogers, Barry Heith","Rogers, Barry Heith",20/05/2011,LAPSED, +2011902000,Solar heat and electricity generation,"Guignard, Paul Andre Dr","Guignard, Paul A.",24/05/2011,LAPSED, +2011902083,Solar heat and electricity generation,"Guignard, Paul Andre Dr","Guignard, Paul A.",28/05/2011,LAPSED, +2011902269,A Solar Air Conditioning System,"Hastings, Ross Mr","Hastings, Ross",8/06/2011,LAPSED, +2011902271,Solar Thermal Dish/Engine Power System,"Hastings, Ross Mr","Hastings, Ross",8/06/2011,LAPSED, +2011902340,"""Solar open safety device"" installation system","Dixon, Gary John","Dixon, Gary John",31/05/2011,LAPSED, +2011902351,A Solar Assisted Chiller System,"Hastings, Ross Mr","Hastings, Ross",16/06/2011,LAPSED, +2011902366,Solar Power Conversion System,"Davies, Kevin Stephen Mr",Not Given,17/06/2011,LAPSED, +2011902400,Solar heat and electricity generation,"Guignard, Paul Andre Dr","Guignard, Paul A.",20/06/2011,LAPSED, +2011902593,Light trapping in solar cells,NewSouth Innovations Pty Limited,"Lennon, Alison Joan; Lu, Pei Hsuan; Wenham, Stuart Ross; Li, Zhongtian",30/06/2011,LAPSED, +2011902631,A Solar Energy System,Tropiglas Technologies Ltd,"Rosenberg, Victor",1/07/2011,LAPSED, +2011902681,Improved solar distillation device,"Starkey, Jonathan Conrad Mr","Starkey, Jonathon Starkey",6/07/2011,LAPSED, +2011902711,Automatic quotes for solar power installations,Solar Choice Pty Ltd,Not Given,7/07/2011,LAPSED, +2011902762,Environmentally friendly solar blinds,"Woo, Kam Cheung","Woo, Kam Cheung",11/07/2011,LAPSED, +2011902783,Solar Concentrator,"Cooper, Bretton; Blazley, Wade","Cooper, Bretton; Blazley, Wade",12/07/2011,LAPSED, +2011902906,Optical fibre solar cells and the use of optical fibres in solar applications and novel solar devices,"Canning, John Prof.","Canning, John; Crossley, Maxwell; Black, Andrew",20/07/2011,LAPSED, +2011902936,Composition and method for coating a solar panel,LJW Solar Pty Ltd,"Warner, Michael",22/07/2011,WITHDRAWN, +2011903030,Solar dryer for animal feeds,"Welch, Peter St Vincent","Welch, Peter St Vincent",1/08/2011,LAPSED, +2011903131,Dielectric structure in solar cells,NewSouth Innovation Pty Limited,Not Given,2/08/2011,LAPSED, +2011903181,A means for producing electricity using solar cells,"Healey, Arthur Stephen","Healey, Arthur Stephen",10/08/2011,LAPSED, +2011903192,Solar Boosted Combined Cooling Heating and Power System,"Hastings, Ross Mr","Hastings, Ross",11/08/2011,LAPSED, +2011903342,Unsworth integrated solar desalination systems- ISDS basic solar well,"Unsworth, Paul","Unsworth, Paul",22/08/2011,LAPSED, +2011903376,A Solar powered housing Capsule,"Little, Philip",Not Given,19/08/2011,LAPSED, +2011903426,Improved Solar Still,First Green Park Pty Ltd,"Johnston, Peter",26/08/2011,LAPSED, +2011903439,Solar thermal collector,"Patford, Laurie","Patford, Laurie",26/08/2011,LAPSED, +2011903451,Transom Solar,"Beecroft, Corey","Beecroft, Corey",29/08/2011,LAPSED, +2011903503,A solar power unit with a cover,"Graham, Matthew","Graham, Matthew",31/08/2011,LAPSED, +2011903601,Pressure regulation method and apparatus for solar energy collecting apparatus,"Yeomans, Allan James Mr","Yeomans, Allan James",6/09/2011,LAPSED, +2011903642,"Storage, Solar Water Heater M3","Trihey, Albert Massey Mr","Trihey, Albert Massey; Trihey, John Massey",8/09/2011,LAPSED, +2011903652,Solar panel mounting system,Lock Solar Ltd,Not Given,7/09/2011,LAPSED, +2011903944,Varying bandgap solar cell,Gallium Enterprises Pty Ltd,Not Given,23/09/2011,LAPSED, +2011903950,Solar Electricity Generation,"Guignard, Paul Andre Dr","Guignard, Paul Andre",25/09/2011,LAPSED, +2011903951,Solar Still Assembly,First Green Park Pty Ltd,"Johnstone, Peter",26/09/2011,LAPSED, +2011904144,A solar radiation receiver and the use in concentrating solar thermal energy collection systems,"Yin, Yongbai Mr","Yin, Yongbai",7/10/2011,LAPSED, +2011904333,Incorporated solar panel,"David, Albert John; Fester, Robin Andre","Fester, Robin; David, Albert John",19/10/2011,LAPSED, +2011904342,Solar Collector,"Trihey, Albert Massey Mr","Trihey, Albert Massey; Trihey, John Massey; Witte, Edward",20/10/2011,LAPSED, +2011904437,Solar thermal engine,"Raffaele, Peter Robert; Raffaele, Michael John","Raffaele, Peter Robert; Raffaele, Michael John",23/10/2011,LAPSED, +2011904511,Solar Collector 2,"Trihey, Albert Massey Mr","Trihey, Albert Massey; Trihey, John Massey; Witte, Edward",28/10/2011,LAPSED, +2011904765,Metal contact scheme for solar cells,"NewSouth Innovations Pty Limited; Wuxi Suntech Power Co., Ltd","Vais, Valantis; Lennon, Alison Joan; Wenham, Stuart Ross; Jingjia, Jl; Wenham, Alison Maree",15/11/2011,LAPSED, +2011904769,Thin-Film Solar Cell,Swinburne University of Technology,Not Given,15/11/2011,LAPSED, +2011904770,Wafer-Based Solar Cell,Swinburne University of Technology,Not Given,15/11/2011,LAPSED, +2011904795,A passive solar collector arrangement,Intex Holdings Pty Ltd,Not Given,17/11/2011,LAPSED, +2011904940,Solar Powered Mobile LED Lighting Towers,Waverider Nominees Pty Ltd,"Walker, Richard",28/11/2011,LAPSED, +2011905151,Solar powered house numbering system with emergency function,"Fielding, Samuel Luke Thomas Mr",Not Given,9/12/2011,LAPSED, +2011905229,Solar and Steam Motor/ Powerplant,"Humphries, Tony A.",Not Given,25/11/2011,LAPSED, +2011905245,M-PIN SPVSG Multiple PIN Composition Silicon Super PV Cells for Solar Concentrator,"TANG, Richard Zhao Kun Mr","Tang, Zhao Kun",15/12/2011,LAPSED, +2011905268,Solar to Steam Engine,"Humphries, Tony A.",Not Given,14/12/2011,LAPSED, +2011905365,A Solar Panel Assembly,Soleir Ltd,"Foong, Edwin; Gillespie, Rohan",21/12/2011,LAPSED, +2011905401,Detector Cable Guard,"Rowland, Peter; Davis, Paul","Rowland, Peter; Davis, Paul",23/12/2011,LAPSED, +2011905406,Multi Purpose Knuckle With Thumbscrew,"Rowland, Peter; Davis, Paul","Rowland, Peter; Davis, Paul",23/12/2011,LAPSED, +2012100040,"Solar powered, wireless networked security camera","Berry, Michael Richard Mr","Berry, Michael Richard",18/01/2012,GRANTED, +2012100075,Solar tile structure,Axuntek Solar Energy,"Lee, Shih-Wei; Tseng, Chih-Wei; Tseng, Chio-An; Chen, Yen-Chun; Jian, Fu-Lu",24/01/2012,CEASED, +2012100092,Detector Cable Guard,"Davis, Paul; Rowland, Peter","Rowland, Peter; Davis, Paul",30/01/2012,CERTIFIED, +2012100094,Multi Purpose Knuckle and Thumb screw,"Davis, Paul; Rowland, Peter","Rowland, Peter; Davis, Paul",30/01/2012,CEASED, +2012100122,Solar Powered Road Marker device,"Berry, Michael","Berry, Michael Richard",6/02/2012,GRANTED, +2012100374,Solar Powered Lighting Apparatus,"Jurgens, Elise; Jurgens, Owen; Jurgens, Phillipa; Jurgens, Terence","Jurgens, Terence",3/04/2012,GRANTED, +2012100413,Solar window glass,A.C. Impex Pty Ltd,"Maimon, Yacov; Liu, Nan",4/04/2012,CEASED, +2012100429,Solar Window Glass,A.C. Impex Pty Ltd,"Maimon, Yacov; Liu, Nan",5/04/2012,CEASED, +2012100512,Solar panel support arrangement and method,Sunray Tracker Pty Ltd,"Chappel, Jonathan",3/05/2012,CEASED, +2012100793,A kind of solar photovoltaic bracket connecting component,"Zhangjiagang Freedom New Energy Co., Ltd.","Yuan, Bin",29/05/2012,CEASED, +2012100871,Mobile solar lighting plant,Linked Group Services Pty Ltd,"Sharam, Jason",12/06/2012,GRANTED, +2012100964,Cement Solar Tile,"Maimon, Yacov; Star 8 Solar Green Commercial Pty Ltd","Maimon, Yacov",25/06/2012,GRANTED, +2012101058,Solar panel mounting system,"Suzhou Radiant Photovoltaic Technology Co., Ltd","Zheng, Konley; Zheng, Alei; Xu, David",17/07/2012,GRANTED, +2012101059,Portable solar hot water thermos and kettle,"Stevens, Heather Miss","Stevens, Heather",17/07/2012,CEASED, +2012101079,Solar swimming pool sanitation system,"Gavey, Ernest Mr","Gavey, Ernest",23/07/2012,GRANTED, +2012101096,An outdoor solar energy drying machine,Tongxiangshi Puyuan Sheerde Knitted Garment Factory,"Yu, Quntao",24/07/2012,CEASED, +2012101097,A solar desk lamp with a sucker,Tongxiangshi Puyuan Sheerde Knitted Garment Factory,"Yu, Quntao",24/07/2012,CEASED, +2012101220,Solar panel safety isolator,Collett Manufacturing Pty Ltd,"Collett, Christopher Mark",13/08/2012,CEASED, +2012101285,A Solar Assisted Chiller System,"Hastings, Ross Mr","Hastings, Ross",23/08/2012,LAPSED, +2012101286,A solar thermal dish/engine power system,"Hastings, Ross Mr","Hastings, Ross",23/08/2012,LAPSED, +2012101325,Solar Powered Hand-held Safety Sign,"Downing, Neil John","Downing, Neil John",31/08/2012,GRANTED, +2012101345,Extendable solar panel assembly for a container,PB Holdings (QLD) Pty Ltd,"Shaw, Brendon John; Jones, Paul William",4/09/2012,GRANTED, +2012101363,Pressure regulation method and apparatus for solar energy collecting apparatus,"Yeomans, Allan James Mr","Yeomans, Allan James",5/09/2012,CEASED, +2012101367,Flexible Solar,"Maimon, Yacov; Star 8 Solar Green Commercial Pty Ltd","Maimon, Yacov",3/09/2012,GRANTED, +2012101391,Thin Film Cement Solar Tile,"Star 8 Solar Green Commercial Pty Ltd; Maimon, Yacov","Maimon, Yacov",7/09/2012,LAPSED, +2012101504,Solar Transparency Glass,Star 8 Solar Green Commercial Pty Ltd,"Maimon, Yacov",4/10/2012,LAPSED, +2012101518,Solar tracking solar hot water system,"Crooks, Christopher Mr; Ignatious, Benny Kottamplakal","Ignatious, Benny K.; Crooks, Christopher",9/10/2012,CEASED, +2012101655,Underfloor solar air heating and cooling device for domestic application,"GILL, PETER WILLIAM","Gill, Peter William",6/11/2012,CEASED, +2012101740,Lateral Sunflower Modular Parabolic Trough Solar Collector (PTC) System,"Tosovic, Dusan MR","Tosovic, Dusan",30/11/2012,GRANTED, +2012101765,M-PIN-SPVSC (Multiple PIN Composition Silicon Super PV Cells for Solar Concentrator),"TANG, Richard Zhao Kun Mr","TANG, (Richard) Zhao Kun",3/12/2012,GRANTED, +2012101846,Solar powered fan brim for Hard hats,Parasafe Australia Pty Ltd,"Hokins, Neil",18/12/2012,CEASED, +2012200020,Thin-film solar cell interconnection,NewSouth Innovations Pty Limited,"Aberle, Armin Gerhard; Walsh, Timoty Michael; Wenham, Stuart Ross",3/01/2012,LAPSED, +2012200055,Environmentally friendly solar blinds,"Woo, Kam Cheung","Woo, Kam Cheung",4/01/2012,FILED, +2012200149,"Low Emissivity Coating with Low Solar Heat Gain Coefficient, Enhanced Chemical and Mechanical Properties and Method of Making the Same","AGC Flat Glass North America, Inc.","Coster, Dominique; Maschwitz, Peter; Decroupet, Daniel",11/01/2012,GRANTED, +2012200216,Heat transfer passes for solar boilers,Babcock Power Services Inc.,"Plotkin, Andrew; Gillum, Craig",13/01/2012,FILED, +2012200403,See-through solar collector module and manufacturing method thereof,Axuntek Solar Energy,"Lee, Shih-Wei; Lin, Ching-Ju; Huang, Wei-Min; Hou, Chi-Hung; Chen, Yen-Chun",24/01/2012,LAPSED, +2012200426,A Modular Solar Panel Assembly,"Lanskey, James","Lansky, James",25/01/2012,GRANTED, +2012200641,Modular sub-assembly of semiconductor strips,Transform Solar Pty Ltd,"Verlinden, Pierre Jacques; Kerr, Mark John",3/02/2012,CEASED, +2012200744,Systems and methods for solar boiler construction,Babcock Power Services Inc.,"Plotkin, Andrew; Ricci, Russell",8/02/2012,FILED, +2012201040,Solar Hot Water System,Nue Pty Ltd,"Fan, Yi; Gao, Feng",22/02/2012,LAPSED, +2012201047,Solar cooking appliances,"Lin, Huazi; W&E International (Canada) Corp.","Lin, Huazi",23/02/2012,GRANTED, +2012201056,Solar cooking appliances,"Lin, Huazi; W&E International (Canada) Corp.","Lin, Huazi",23/02/2012,GRANTED, +2012201084,Solar array,Hilti Aktiengesellschaft,"Bragagna, Elio; Mundwiler, Lukas",24/02/2012,LAPSED, +2012201088,Solar cell with reduced base diffusion area,SunPower Corporation,"Cousins, Peter J.; De Ceuster, Denis",24/02/2012,GRANTED, +2012201213,System for collecting and delivering solar and geothermal heat energy with thermoelectric generator,"Simka, Pavel","Simka, Pavel",5/03/2012,GRANTED, +2012201360,Circuit and method for controlling the point of maximum power for solar energy source and solar generator incorporating said circuit,"Capel, Antoine","Capel, Antoine",7/03/2012,LAPSED, +2012201554,Solar cell (sliver) sub-module formation,The Australian National University,"Everett, Vernie Allan; Blakers, Andrew William",15/03/2012,LAPSED, +2012201561,Methods and apparatuses for manufacturing monocrystalline cast silicon and monocrystalline cast silicon bodies for photovoltaics,AMG IdealCast Solar Corporation,"Stoddard, Nathan G.",15/03/2012,LAPSED, +2012201605,"Frame-like holder for a solar panel, with a cable holder",Solon SE,"Rentfrow, Greg",19/03/2012,GRANTED, +2012201674,"Support arm, cylindrical-parabolic solar collector support and method of producing said arm","Sener, Ingenieria Y Sistemas, S.A.","Vazquez Ingelmo, Jorge; Domingo Osle, Miguel",21/03/2012,GRANTED, +2012201963,Method and systems for distributing solar energy charging capacity to a plurality of electric vehicles,General Electric Company,"Ansari, Adil; Caird, Kenneth James",4/04/2012,LAPSED, +2012202071,Solar boiler system,"Mitsubishi Hitachi Power Systems, Ltd.","Mishima, Nobuyoshi; Sugiura, Takashi; Sakakura, Toshihiko",11/04/2012,GRANTED, +2012202289,Solar energy collection flight path management system for aircraft,The Boeing Company,"Segal, Matthew Jonathan; Wise, Kevin Andrew",19/04/2012,GRANTED, +2012202396,Hybrid solar concentration device,General Electric Company,"Chatterjee, Aveek; Bhakta, Aditya; Ghosh, Sampa; Govindasamy, Rakesh; Krishan, Devanathan",26/04/2012,LAPSED, +2012202671,Solar heating,Astral Pool Australia Pty Ltd; Fabtronics Australia Pty Ltd,"Wallace, Peter; Briggs, Rod; Harris, Frank; Goodwin, Ashley",8/05/2012,GRANTED, +2012202676,A solar collector,Kingspan Holdings (IRL) Limited,"Pelan, Richard; Bauer, Boris; McEntee, Paul Thomas; Davis, Patrick Robert",8/05/2012,LAPSED, +2012203024,Multi-layer N-type stack for cadmium telluride based thin film photovoltaic devices and methods of making,"PrimeStar Solar, Inc.","Feldman-Peabody, Scott Daniel; Gossman, Robert Dwayne",22/05/2012,LAPSED, +2012203178,Multi-layer n-type stack for cadmium telluride based thin film photovoltaic devices and methods of making,"PrimeStar Solar, Inc.","Feldman-Peabody, Scott Daniel; Gossman, Robert Dwayne",22/05/2012,LAPSED, +2012203184,Refractive index matching of thin film layers for photovoltaic devices and methods of their manufacture,"PrimeStar Solar, Inc.","Gossman, Robert Dwayne",22/05/2012,LAPSED, +2012203351,Solar boiler tube panel supports,Babcock Power Services Inc.,"Morse, Gregory L.; Ringer Jr., Michael D.; Slezak, Ivo; Ricci, Russell",7/06/2012,FILED, +2012203401,Methods for manufacturing cast silicon from seed crystals,AMG IdealCast Solar Corporation,"Stoddard, Nathan G.",8/06/2012,LAPSED, +2012203603,Method and apparatus for the production of crystalline silicon substrates,AMG IdealCast Solar Corporation,"Clark, Roger F.",20/06/2012,LAPSED, +2012203604,Methods and apparatuses for manufacturing geometric multicrystalline cast silicon and geometric multicrystalline cast silicon bodies for photovoltaics,AMG IdealCast Solar Corporation,"Stoddard, Nathan G.",20/06/2012,LAPSED, +2012203668,Methods and apparatuses for manufacturing cast silicon from seed crystals,AMG IdealCast Solar Corporation,"Stoddard, Nathan G.; Clark, Roger F.",22/06/2012,LAPSED, +2012203710,Solar Cement Tile,"Maimon, Yacov; Star 8 Solar Green Commercial Pty Ltd","Maimon, Yacov",25/06/2012,LAPSED, +2012205154,Solar Shade,"Host, Rex Ian","Host, Rex Ian",16/07/2012,LAPSED, +2012205235,Oxygen getter layer for photovoltaic devices and methods of their manufacture,"PrimeStar Solar, Inc.","Gossman, Robert Dwayne; Feldman-Peabody, Scott Daniel; Knapp, Jeffrey Todd",19/07/2012,LAPSED, +2012205275,Mobile solar sail power station and coupled solar sail power stations for space based power generation and transmission,"Ellinghaus, Frank","Ellinghaus, Frank",11/07/2012,LAPSED, +2012206683,Fastening system for mounting solar modules on a trapezoidal sheet,Mounting Systems GmbH,"Schnitzer, Sandy; Hertlein, Lisa",10/01/2012,LAPSED, +2012209021,Apparatus for metering granular source material in a thin film vapor deposition apparatus,"PrimeStar Solar, Inc.","Little, Edwin Jackson",31/07/2012,LAPSED, +2012210253,Fuse continuity detection,"Schneider Electric Solar Inverters USA, Inc.","McDiarmid, Ralph; Miletic, Zoran",27/01/2012,ACCEPTED, +2012210486,Local power supply installation,SMA Solar Technology AG,"Allert, Claus",27/01/2012,FILED, +2012210521,Long-life optical concentrator based on a specific Fresnel lens produced from polymeric materials for solar power generation,Evonik Rohm GmbH,"Numrich, Uwe; Arndt, Thomas; Battenhausen, Peter; Ackermann, Jochen; Olbrich, Michael",26/01/2012,LAPSED, +2012217206,"Improved method for manufacturing a reflector, preferably for the solar energy field",Commissariat a L'Energie Atomique et Aux Energies Alternatives,"Vidal, Frederic; Couturier, Raphael",13/02/2012,GRANTED, +2012218216,A solar cell laminate comprising crystalline silicon photo-electricity device and process to make such a laminate,Flexsol Solutions B.V.,"Van Den Berg, Lennert Frans",13/02/2012,LAPSED, +2012220524,Packaging material for solar cell module and uses thereof,"Eternal Materials Co., Ltd.","Hsu, Tsun-Min; Shih, Yi-Chung; Chen, Meng-Tso",14/09/2012,GRANTED, +2012220525,Thin sheet for solar cell module,"Eternal Materials Co., Ltd.","Hsu, Tsun-Min; Huang, Chi-Tsung; Bai, Hao-Tien",14/09/2012,GRANTED, +2012220646,Solar tracker drive,SunPower Corporation,"Almy, Charles; Barton, Nicholas",22/02/2012,GRANTED, +2012220665,"Pivot-fit frame, system and method for photovoltaic modules",SolarCity Corporation,"West, John Raymond; Hudson, Tyrus Hawkes",22/02/2012,FILED, +2012222318,Synchronous power controller for a generating system based on static power converters,"Abengoa Solar New Technologies, S.A.","Rodriguez Cortes, Pedro; Candela Garcia, Jose Ignacio; Rocabert Delgado, Joan; Teodorescu, Remus",27/02/2012,FILED, +2012225014,A window shutter unit for external mounting on a building,Venetian Solar ApS,"Thielemann, Stefan",8/03/2012,LAPSED, +2012225199,Solar cell installation. cut-out switch and method,"Kirkham, William John","Kirkham, William John",6/03/2012,FILED, +2012225281,Distributed control of dynamic reactive power,"Petra Solar, Inc.","Enslin, Johan; Amarin, Ruba Akram; Mensah, Adje F.; Shoubaki, Ehab H.",9/03/2012,LAPSED, +2012227010,"DYE FOR PHOTOELECTRIC CONVERSION DEVICE, AND PHOTOELECTRIC CONVERSION FILM, ELECTRODE, AND SOLAR CELL USING THE SAME",Tanaka Kikinzoku Kogyo K.K.; The University of Tokyo,"Segawa, Hiroshi; Kinoshita, Takumi; Fujisawa, Jun-Ichi; Nakazaki, Jotaro; Uchida, Satoshi; Kubo, Takaya",6/03/2012,FILED, +2012227434,Silicon dioxide solar cell,"International Frontier Technology Laboratory, Inc.","Komatsu, Nobuaki; Ito, Tomoko; Nagai, Hiroki; Nanjo, Shin-Ichiro",12/03/2012,FILED, +2012228208,Reflector element and method and system for the production thereof,"Rioglass Solar, S.A.","Ainz Ibarrondo, Felix",14/03/2012,ACCEPTED, +2012228379,Receiver module for solar power station with in-built thermal monitoring,Commissariat a l'Energie Atomique et aux Energies Alternatives,"Couturier, Raphael; Bruch, Arnaud",13/03/2012,FILED, +2012230190,"Solar desalination plant for sea water, brines or waste water and desalination method",Universitat Politecnica de Catalunya,"Bosch I Bosch, Angel",22/03/2012,FILED, +2012230467,Solar absorber module,Saint-Gobain Industriekeramik Rodental GmbH,"Hack, Udo",16/03/2012,FILED, +2012232862,Solar energy converter,Naked Energy Ltd,"Boyle, Richard; Williams, Christophe; Cottington, Norman",21/03/2012,FILED, +2012233669,Organic Rankine Cycle for concentrated solar power system with saturated liquid storage and method,Nuovo Pignone S.p.A.,"Kosamana, Bhaskara; Saravanaram, T.; Muniaraj, Senthilkumar",30/03/2012,FILED, +2012233670,Organic Rankine Cycle for concentrated solar power system,Nuovo Pignone S.p.A.,"Kosamana, Bhaskara; Chowdhury, Joydeep; Chettiyar, Arunachalam; T., Saravanaram; Govindasamy, Rakesh",30/03/2012,FILED, +2012234396,Dye-sensitized solar cell with nitrogen-doped carbon nanotubes,Future Carbon GmbH,"Figgemeier, Egbert",26/03/2012,LAPSED, +2012238016,Thin silicon solar cell and method of manufacture,SunPower Corporation,"Rim, Seung Bum; Morse, Michael; Kim, Taeseok; Cudzinovic, Michael J.",19/03/2012,GRANTED, +2012239816,Solar air heating device,"Kelsey, Harley Edward; Mackay, Cameron Richard","Mackay, Cameron Richard; Kelsey, Harley Edward",5/04/2012,FILED, +2012240999,Variable length catheter for drug delivery,Thermopeutix Inc.,"Solar, Ronald Jay; Shaked, Yoav; Lieber, Glen; Dippel, Eric J.",5/04/2012,ACCEPTED, +2012241047,Microcatheter with distal tip portion and proximal solution lumen,Thermopeutix Inc.,"Solar, Ronald Jay; Shaked, Yoav; Lieber, Glen",4/04/2012,FILED, +2012244158,Solar Collector,"Trihey, Albert Massey MR","Trihey, Albert Massey; Trihey, John Massey",27/10/2012,WITHDRAWN, +2012244311,Cable for use in concentrated solar power installation,Nexans,"XU, Hailong; LI, Mi; LIN, Xiongwen",31/10/2012,GRANTED, +2012244342,Solar Collector,"HOLDER, Etienne Garrit; HUPERTZ, Walter Hugo","HUPERTZ, Walter Hugo; HOLDER, Etienne Garrit",1/11/2012,FILED, +2012245768,Solar cell module structure and fabrication method for preventing polarization,SunPower Corporation,"Li, Bo",12/04/2012,GRANTED, +2012247080,A solar cell interconnection process,The Australian National University,"Blakers, Andrew Williams; Everett, Vernie Allan; Weber, Klaus Johannes",31/10/2012,LAPSED, +2012248104,Device for concentrating solar radiation in an absorber,Heliovis AG,"Stoger, Elmar; Munzenrieder, Gerald",30/04/2012,FILED, +2012249897,Polymeric solar concentrator and solar thermal device incorporating same,Morningside Technology Ventures Ltd.; Zinniatek Limited,"Bates, David J.; Haynes, Andrew L.; Partridge, Ashton C.",24/04/2012,ACCEPTED, +2012250342,Solar condenser,"Xiangtan Electric Manufacturing Co., Ltd","Zhu, Kai; Wang, Minhui; Zhang, Yuelei",26/04/2012,GRANTED, +2012250840,Hybrid solar systems and methods of manufacturing,"Bostwick, Paul Alan","Bostwick, Paul Alan",1/05/2012,LAPSED, +2012253987,Modular solar receiver panels and solar boilers with modular receiver panels,"Babcock Power Services, Inc.","Plotkin, Andrew; Rancatore, Robert; Toupin, Kevin; Ricci, Russell",30/04/2012,FILED, +2012254215,Solar energy converter,Alpha Solar Pte Ltd,"Soon, Choon Sen",8/02/2012,GRANTED, +2012254895,Thin-Film Solar Cell,Swinburne University of Technology,"GU, Min; JIA, Baohua; CHEN, Xi; SAHA, Jhantu K.",15/11/2012,FILED, +2012254896,Wafer-Based Solar Cell,Swinburne University of Technology,"GU, Min; JIA, Baohua; FAHIM, Narges; OUYANG, Zi.",15/11/2012,LAPSED, +2012258898,Self-activated front surface bias for a solar cell,"Solexel, Inc.","Zingher, Arthur R.",21/05/2012,LAPSED, +2012259845,Operating apparatus for solar radiation shielding device,Tachikawa Corporation,"Watanabe, Akihiro",22/05/2012,GRANTED, +2012259869,Operating device for solar radiation shielding device and cord supporting part for solar radiation shielding device,Tachikawa Corporation,"Kawai, Eiji",23/05/2012,FILED, +2012260355,"Multi-junction compound solar cell, multi-junction compound solar battery, and method for manufacturing same",Panasonic Corporation,"Nobori, Kazuhiro",8/05/2012,GRANTED, +2012261344,Disc-type solar Stirling engine power generation device capable of operating continuously day and night,"Wuhan Kaidi Engineering Technology Research Institute Co., Ltd.","Chen, Yilong; Yang, Qingping; Zhang, Yanfeng",23/05/2012,GRANTED, +2012261682,Separating and assembling semiconductor strips,Transform Solar Pty Ltd,"Wong, Paul Charles; Abnoos, Razmik; Everett, Vernie Allan; Kerr, Mark John",12/12/2012,LAPSED, +2012261714,"Gas turbine plant, heat receiver, power generating device, and sunlight collecting system associated with solar thermal electric generation system","Mitsubishi Heavy Industries, Ltd","Kobayashi, Kazuta; Tagawa, Masashi; Aoyama, Kuniaki; Osada, Toshiyuki; Masada, Junichiro; Maeda, Manabu; Masuda, Masahiro; Sugimoto, Shiro; Kawashima, Hiroshi; Iijima, Takayoshi; Atarashiya, Kenji; Mizuta, Keiji; Horie, Shigenari",13/12/2012,GRANTED, +2012264708,Longer-life solar power plant receiver,Commissariat a l'Energie Atomique et aux Energies Alternatives,"Couturier, Raphael; Fleury, Gatien; Bregeard, Etienne; Bruch, Arnaud",30/05/2012,FILED, +2012265213,Vacuum solar thermal panel provided with an internal pressure indicator,TVP Solar SA,"Palmieri, Vittorio",18/05/2012,FILED, +2012266168,Process for producing an element for absorbing solar radiation for a thermal concentrating solar power plant,Commissariat a l'Energie Atomique et aux Energies Alternatives,"Fleury, Gatien; Couturier, Raphael; Dubarry, Christophe; Mollard, Carole; Sicardy, Olivier",7/06/2012,FILED, +2012266842,Method for theft-prevention monitoring of solar modules and solar installation having a multiplicity of solar modules for carrying out the method,Viamon GmbH,"Strecke, Oliver",5/06/2012,GRANTED, +2012266985,INVERTER APPARATUS AND SOLAR PHOTOVOLTAIC GRID-CONNECTED SYSTEM USING THE SAME,"Huawei Technologies Co., Ltd.","Li, Quan",22/05/2012,GRANTED, +2012267970,"Non-combustible film, dispersion liquid for non-combustible films, method for producing non-combustible film, solar cell back sheet, flexible board, and solar cell","National Institute of Advanced Industrial Science and Technology; Sumitomo Seika Chemicals Co., Ltd.; Tokyo University of Science Educational Foundation Administrative Organization","Bando, Seiji; Hayashizaka, Noriyuki; Umeda, Yuki; Kawasaki, Kazunori; Ebina, Takeo; Hayashi, Hiromichi; Yoshida, Manabu; Yamashita, Takashi",7/06/2012,GRANTED, +2012268835,"SOLAR HEAT COLLECTOR, SOLAR THERMAL POWER GENERATION SYSTEM, AND SEAWATER DESALINATION SYSTEM",JGC CORPORATION,"SUZUKI, Akimasa; OZAKI, Junya; HASHIMOTO, Masao; SASAKI, Yoshiki; KAI, Mototaka; KUMAGAMI, Manabu; KATAOKA, Shunji; SAITO, Yuji",21/12/2012,FILED, +2012271905,Support for solar energy collectors,SunPower Corporation,"Barton, Nicholas",28/09/2012,GRANTED, +2012271908,Reflector system for concentrating solar systems,SunPower Corporation,"Sounni, Amine Berrada; Almy, Charles",28/09/2012,GRANTED, +2012271909,Thermal tracking for solar system,SunPower Corporation,"Linderman, Ryan J.",28/09/2012,LAPSED, +2012276966,Solar heat boiler and solar heat electric power generation plant,"Mitsubishi Hitachi Power Systems, Ltd.","Marumoto, Takahiro; Sikata, Tetsuo; Arita, Kenso; Kashima, Jun",18/06/2012,GRANTED, +2012280395,"Solar receiver for a solar thermal system, and solar thermal system",Siemens Aktiengesellschaft,"Howell, Philip Clissold; Walter, Steffen",29/06/2012,LAPSED, +2012280700,Method for manufacturing a vacuum solar thermal panel and related vacuum solar thermal panel,TVP Solar SA,"Palmieri, Vittorio; Di Giamberardino, Francesco",4/07/2012,FILED, +2012280933,Integrated solar collectors using epitaxial lift off and cold weld bonded semiconductor solar cells,The Regents of the University of Michigan,"Forrest, Stephen R.; Renshaw, Christopher Kyle; Sloothy, Michael",6/07/2012,LAPSED, +2012282380,Collector mirror for a solar concentrator comprising linear Fresnel mirrors,Centre National de la Recherche Scientifique; Universite Nice Sophia Antipolis,"Xiao, Gang",13/07/2012,LAPSED, +2012282686,Systems and methods for solar photovoltaic energy collection and conversion,"Sinewatts, Inc.","Bhowmik, Shibashis",11/07/2012,GRANTED, +2012288032,Solar light collecting mirror and solar thermal power generation system using said solar light collecting mirror,"Konica Minolta, Inc.","Ishida, Kazuo; Takahashi, Yutaka",19/07/2012,LAPSED, +2012290307,Shop assembled vertical serpentine flow molten salt solar receiver,The Babcock & Wilcox Company,"Wasyluk, David T.; Kraft, David L.; Marshall, Jason M.; Iannacchione, Steven P. (Deceased)",27/07/2012,FILED, +2012291109,Pigment sensitization solar cell,"Toppan Printing Co., Ltd.","Shibayama, Naoyuki; Abe, Masahiro",27/07/2012,GRANTED, +2012292010,Solar radiation receiver,"Galdon Cabrera, Carlos","Galdon Cabrera, Carlos; Nunez Gonzalez, Carlos",30/07/2012,FILED, +2012293456,"Portable and stationary distillation unit for the simultaneous production of distilled water and salt, enhanched by solar collectors","Hatzigianni, Zoi; Hatzigiannis, Georgios; Hatzigiannis, Vassilios","Hatzigiannis, Georgios; Hatzigiannis, Vassilios; Hatzigianni, Zoi",30/07/2012,FILED, +2012293559,Solar tracker,"Soltec Energias Renovables, SL","Grant, Thomas",4/05/2012,FILED, +2012294932,High-efficiency solar photovoltaic cells and modules using thin crystalline semiconductor absorbers,"Solexel, Inc.","Moslehi, Mehrdad M.; Kapur, Pawan; Kramer, K-Josef; Rana, Virendra V.; Seutter, Sean; Deshpande, Anand; Calcaterra, Anthony; Olsen, Gerry; Manteghi, Kamran; Stalcup, Thom; Kamian, George D.; Wang, David xuan-Qi; Su, Yen-Sheng; Wingert, Michael",9/08/2012,FILED, +2012298449,An apparatus and method for preventing solar overheating,"Smyth, Eamon","Smyth, Eamon",24/08/2012,FILED, +2012298754,System for collecting concentrated solar radiation,Chevron USA Inc.,"Penton, John David",23/08/2012,LAPSED, +2012299269,High throughput laser ablation processes and structures for forming contact holes in solar cells,SunPower Corporation,"Kim, Taeseok; Harley, Gabriel; Smith, David D.; Cousins, Peter John",15/08/2012,GRANTED, +2012299933,A solar collector unit and a method of providing such a solar collector unit,Alpha-E ApS,"Lehmann, Kim Nichum",24/08/2012,FILED, +2012303090,"Vapor barrier film, dispersion for vapor barrier film, method for producing vapor barrier film, solar cell back sheet, and solar cell","National Institute of Advanced Industrial Science and Technology; Sumitomo Seika Chemicals Co., Ltd.","Bando, Seiji; Misho, Daisuke; Kawasaki, Kazunori; Ebina, Takeo; Hayashi, Hiromichi; Nakamura, Takashi; Yoshida, Manabu",21/08/2012,GRANTED, +2012303787,"Clamping connection for mounting plate-like components, in particular solar modules",Carl Freudenberg KG,"Pressler, Ulla; Kohn, Jason; Barth, Armin",23/08/2012,GRANTED, +2012304250,Reflector for a photovoltaic power module,Solar Systems Pty Ltd,"Carter, Sam; Goodrich, Joel; Barnes, Brett",21/08/2012,LAPSED, +2012307424,Solar radiation receiver having an entry window made of quartz glass and method for producing an entry window,Heraeus Quarzglas GmbH & Co. KG,"Becker, Klaus; Hofmann, Achim; Hunermann, Michael; Schenk, Christian",13/09/2012,GRANTED, +2012307629,Layer material for corrosion protection and solar receiver having such a layer material,Siemens Aktiengesellschaft,"Luthen, Volkmar; Winkler, Gabriele",24/08/2012,GRANTED, +2012310321,Road marker or light based warning device,Solar Bright Limited,"Martin, Patrick John; Senior, Paul",5/07/2012,LAPSED, +2012313362,Varying bandgap solar cell,Gallium Enterprises Pty Ltd,"Barik, Satyanarayan",21/09/2012,GRANTED, +2012318379,Infrastructure for solar power installations,"Sahin, Nedim","Sahin, Nedim",5/10/2012,ACCEPTED, +2012320007,Hinge for solar tracking apparatus,Scorpius Trackers Private Limited,"Shah, Kiran",22/06/2012,LAPSED, +2012323518,Method for manufacturing dye-sensitized solar cells and solar cells so produced,Exeger Sweden AB,"Lindstrom, Henrik; Fili, Giovanni",5/04/2012,FILED, +2012324030,"Solar farm, solar table fitted to such a solar farm, system and method for constructin such a solar farm",Redavia,"Spolders, Erwin; Heinzler, Daniel",2/11/2012,GRANTED, +2012324663,Solar control glazing comprising a layer of an alloy containing NiCu,Saint-Gobain Glass France,"Singh, Laura Jane; Palacios-Laloy, Agustin; Sandre-Chardonnal, Etienne",17/10/2012,ACCEPTED, +2012324705,Rigid or flexible solar collector with an image displayed on the surface and methods for producing same,Sunpartner Technologies,"Gilbert, Joel",16/10/2012,LAPSED, +2012325054,Solar receiver tube assembly with suited receiver tube per working temperature and use of the receiver tube assembly,Siemens Concentrated Solar Power Ltd.,"Aran, Hagai; Lipman, Eli",12/10/2012,FILED, +2012325664,Protective circuit for an electrically floating photovoltaic array,Solar Systems Pty Ltd,"Mu, Zhen",10/10/2012,LAPSED, +2012328425,Double layer solar heating-and-cooling thermosyphon system,"Teoh, Elaine P.; Teoh, Siang Teik","Teoh, Siang Teik",29/10/2012,LAPSED, +2012328575,System and method for optimizing solar power conversion,The Board of Trustees of the University of Illinois,"Shenoy, Pradeep; Krein, Philip T.",26/10/2012,FILED, +2012330715,Determining timing for cleaning electricity generating solar panels,Derech Hagav Ltd,"Dror, Jack; Balouka, Avraham Shay",4/11/2012,FILED, +2012335554,Hybrid fossil fuel and solar heated supercritical carbon dioxide power generating system and method,"8 Rivers Capital, LLC; Palmer Labs, LLC","Palmer, Miles R.; Fetvedt, Jeremy Eron; Freed, David Arthur; Brown Jr., Glenn William",9/11/2012,ACCEPTED, +2012340374,Solar tube panel with dual-exposure heat absorption,The Babcock & Wilcox Company,"Kraft, David L.; Wasyluk, David T.; Persinger, Justin A.; Marshall, Jason M.",15/11/2012,FILED, +2012340377,High efficiency solar receiver,The Babcock & Wilcox Company,"Albrecht, Melvin J.; Alexander, Kiplin C.; Iannacchione, Steven P.; Marshall, Jason M.; Persinger, Justin A.; Wasyluk, David T.",15/11/2012,FILED, +2012340379,Solar receiver with dual-exposure heat absorption panel,The Babcock & Wilcox Company,"Wasyluk, David T.; Kraft, David L.; Persinger, Justin A.; Marshall, Jason M.; Albrecht, Melvin J.",15/11/2012,FILED, +2012340415,Freeze protection system for solar receiver,The Babcock & Wilcox Company,"Albrecht, Melvin J.; Marshall, Jason M.; Persinger, Justin A.; Rao, Thanneeru D.; Wasyluk, David T.; Heap, Andrew; Meduri, Phani; Pacheco, James E.; Soni, Gaurav",15/11/2012,FILED, +2012341498,Solar heat receiver and solar heat power generation device,"Mitsubishi Heavy Industries, Ltd.","Kobayashi, Kazuta; Tagawa, Masashi; Osada, Toshiyuki; Okubo, Takeshi",22/11/2012,GRANTED, +2012341819,"Photoelectrode for dye-sensitized solar cell, and method for manufacturing photoelectrode for dye-sensitized solar cell, and dye-sensitized solar cell","Tokyo University of Science Educational Foundation Administrative Organization; Toppan Printing Co., Ltd.","Watanabe, Naoya; Kudou, Tomohiro; Ozawa, Hironobu; Arakawa, Hironori; Shibayama, Naoyuki",15/08/2012,GRANTED, +2012342175,Direct solar steam generator and method of shuting down a direct solar steam generator,"Areva Solar, Inc.","Tanner, Peter",21/11/2012,LAPSED, +2012344685,Plant treatment and method,"Schrader, Glen","Schrader, Glen",30/11/2012,FILED, +2012344705,Solar collector having a pivotable concentrator arrangement,Airlight Energy IP SA,"Ambrosetti, Gianluca; Chambers, Jonathan; Cooper, Thomas; Pedretti, Andrea",22/11/2012,LAPSED, +2012344723,Semiconductor substrate for a photovoltaic power module,Solar Systems Pty Ltd,"Ring, William; Goodrich, Joel; Mu, Zhen; Musk, Robert",21/11/2012,LAPSED, +2012345482,"Automatic washing device for continuous surfaces, in particular solar thermal collectors, photovoltaic panels, continuous glazed building walls and similar surfaces",Washpanel s.r.l.,"Zanatta, Francesco",28/11/2012,LAPSED, +2012350105,Hybrid solar energy recovery system,"Delsaut, James; Leduc, Gilles","Delsaut, James; Leduc, Gilles",6/12/2012,FILED, +2012350645,Solar energy and external source steam complementary power generation apparatus,"Wuhan Kaidi Engineering Technology Research Institute Co., Ltd.","Chen, Yilong; Yang, Qingping; Zhang, Yanfeng",18/10/2012,ACCEPTED, +2012350982,Floating cover sheet with solar module,Benecke-Kaliko AG,"Haarburger, Tobias; Stolting, Andreas",19/11/2012,ACCEPTED, +2012354063,An improved solar selective coating having high thermal stability and a process for the preparation thereof,Council of Scientific & Industrial Research,"Barshilia, Harish Chandra",25/06/2012,FILED, +2012354665,"Solar heat receiver, method for assembling same, and solar heat power generation system with solar heat receiver","Mitsubishi Heavy Industries, Ltd.","Kobayashi, Kazuta; Tagawa, Masashi; Osada, Toshiyuki; Okubo, Takeshi; Furutani, Akira",21/12/2012,GRANTED, +2012355764,"Laser contact processes, laser system, and solar cell structures for fabricating solar cells with silicon nanoparticles",SunPower Corporation,"Loscutoff, Paul; Molesa, Steve; Kim, Taeseok",5/12/2012,GRANTED, +2012356054,System and method for solar energy utilization,Or Hama Energy Ltd.,"Blau, Gilad",17/12/2012,FILED, +2012362505,Systems and methods for enhanced light trapping in solar cells,"Solexel, Inc.","Moslehi, Mehrdad M.; Rana, Virendra V.; Coutant, Solene; Deshazer, Heather; Anbalagan, Pranav; Rattle, Benjamin",26/12/2012,GRANTED, +2012362636,Solar tracker for solar energy devices,"Doyle, Fintan J.; Sulas Industries","Doyle, Fintan J.",21/12/2012,LAPSED, +2012363378,Solar chimney with external vertical axis wind turbine,"Yangpichit, Pitaya","Yangpichit, Pitaya",5/04/2012,FILED, +2012370020,Maximum power point tracking (MPPT),"Schneider Electric Solar Inverters USA, Inc.","Garabandic, Djordje",17/02/2012,FILED, +2012376491,"Device, system and method for high level of energetic efficiency for the storage and use of thermal energy of solar origin",Magaldi Industrie S.r.l.,"Magaldi, Mario; De Michele, Gennaro; Donatini, Franco",23/11/2012,FILED, +2012388233,Radially arranged metal contact fingers for solar cells,SunPower Corporation,"Westerberg, Staffan; Cousins, Peter J.",14/12/2012,FILED, +2012389312,Distillation system under vacuum produced by a barometric column,HSE Hitit Solar Enerji A.S.,"Capan, Rahmi",27/09/2012,FILED, +2012389313,A steam condensation and water distillation system,HSE Hitit Solar Enerji A.S.,"Capan, Rahmi Oguz",27/09/2012,FILED, +2012389626,A solar element comprising resonator for application in energetics,Vysoke Uceni Technicke V Brne,"Fiala, Pavel",22/10/2012,FILED, +2012900020,"""Solar Security Lighting"" Led Security Lights & Spotlights ""Novelty Solar Light"" ""Wave Solar Lights Large or Small""","Rout, Noelene Joy","Rout, Noelene Joy",3/01/2012,LAPSED, +2012900192,A Solar Collector Header Attachment Arrangement,Rheem Australia Pty Limited,"Reardon, Joseph; Chapman, Gregory; Bolitho, Glen",18/01/2012,LAPSED, +2012900307,Solar Panel self cleaning coating,"Goldsworthy, Robert John Mr",Not Given,27/01/2012,LAPSED, +2012900308,Solar Panel IR coating,"Goldsworthy, Robert John Mr",Not Given,27/01/2012,LAPSED, +2012900359,Energy supply system for solar energy collecting apparatus,"Yeomans, Allan James","Yeomans, Allan James",1/02/2012,LAPSED, +2012900455,Waterborn solar generator platform,Water Innovations Power and Technology Holdings Pty Ltd,"Cap, George Jaroslav; Woodfield, Ross",8/02/2012,LAPSED, +2012900526,Solar energy hub,"de Varda, Joseph","de Varda, Joseph",14/02/2012,LAPSED, +2012900538,Solar & Steam Motor/ Powerplant,"Humphries, Tony A.",Not Given,13/02/2012,LAPSED, +2012900683,Safety Improvements for Solar Panels,SAFETY IN SOLAR PTY LTD,"Fuge, Paul Joseph; Fuge, Dayne Joseph; Baron, Rene",23/02/2012,LAPSED, +2012900738,Virtual solar tracking,Tropical Energy Solutions Pty Ltd,Not Given,27/02/2012,LAPSED, +2012900944,Economical Solar Heater for Liquids,"Preda, Dorin","Preda, Dorin",9/03/2012,LAPSED, +2012900992,Solar energy concentrators,"Yeomans, Allan James","Yeomans, Allan James",13/03/2012,LAPSED, +2012901000,A solar powered lighting system,Kimberley Plastics Pty Ltd,Not given,13/03/2012,LAPSED, +2012901003,An Ejector and a method for making the Ejector,Endless Solar Corporation Ltd,Not given,14/03/2012,LAPSED, +2012901059,Solar Cells,Nano-Nouvelle Pty Ltd,Not given,16/03/2012,LAPSED, +2012901076,Modular foldable solar panels,Zen Technologies (Power and Energy) Pty Ltd,Not given,16/03/2012,LAPSED, +2012901181,Solar thermal power generating systems,"Yeomans, Allan James","Yeomans, Allan James",26/03/2012,LAPSED, +2012901183,Stand alone solar powered water drinking fountain,"Collinson, Stephen W","Collinson, Stephen",26/03/2012,LAPSED, +2012901186,Solar powered outdoor/indoor clothes dryer,"Balestri, Enrico","Balestri, Enrico",22/03/2012,LAPSED, +2012901229,Energy supply and storage systems for use with solar energy collecting apparatus,"Yeomans, Allan James","Yeomans, Allan James",28/03/2012,LAPSED, +2012901241,Solar Electricity Generation,"Guignard, Paul Andre Dr","Guignard, Paul Andre",29/03/2012,LAPSED, +2012901504,Solar junction box,"Lal, Jain; Suttie, Gerard","Suttie, Gerard; Lal, Jain",17/04/2012,LAPSED, +2012901505,Solar cable connector,"Lal, Jain; Suttie, Gerard","Suttie, Gerard; Lal, Jain",17/04/2012,LAPSED, +2012901591,Positioning Apparatus for Solar Panel,Data Signs Pty Ltd,Not Given,23/04/2012,LAPSED, +2012901680,Day & Night Wheelie Bin POP and Solar Farm,Blue Planet Group Pty Ltd,"Galagedara, Prabash; Livera, Milano",30/04/2012,LAPSED, +2012901795,The means to improve the thermal efficiency of a solar collector by reducing radiant heat loss from the rear side of the solar absorber,"Pintar, Marko; Zheng, JingJing Ms","Pintar, Marko; Zheng, JIng JIng",2/05/2012,LAPSED, +2012901978,Solar junction box,"Lal, Jain; Suttie, Gerard","Suttie, Gerard; Lal, Jain",15/05/2012,LAPSED, +2012902090,Advanced Hydrogenation of Silicon Solar Cells,NewSouth Innovations Pty Limited,Not Given,21/05/2012,LAPSED, +2012902395,A Tilting Energy Harnessing Rig,Solar Sailor Pty Ltd,"Dane, Robert",7/06/2012,LAPSED, +2012902419,Solar energy receiver,Graphite Energy N.V.,"Bain, Nicholas Jordan; Baddock, Garry James; Khoo, Paul Soo-Hook; Reynolds, David John; McNeil, Alexander McKechran Hardie; Laws, Adam Timothy",8/06/2012,LAPSED, +2012902454,A solar energy system,Endless Solar Corporation Ltd,Not Given,12/06/2012,LAPSED, +2012902455,A method of operating a solar energy system,Endless Solar Corporation Ltd,Not Given,12/06/2012,LAPSED, +2012902456,A solar energy system,Endless Solar Corporation Ltd,Not Given,12/06/2012,LAPSED, +2012902457,An ejector,Endless Solar Corporation Ltd,Not Given,12/06/2012,LAPSED, +2012902459,A method of operating a solar energy system,Endless Solar Corporation Ltd,Not Given,12/06/2012,LAPSED, +2012902462,A light emitting device having vertically mounted solar panels,Solar Streetscapes (Holdings) Pty Ltd,Not Given,12/06/2012,LAPSED, +2012902463,Heat resistance in solar powered bollard lamps,Solar Streetscapes (Holdings) Pty Ltd,Not Given,12/06/2012,LAPSED, +2012902464,"A damage resistant light emitting device, and components for a light emitting device",Solar Streetscapes (Holdings) Pty Ltd,Not Given,12/06/2012,LAPSED, +2012902465,"A modular light emitting device, and components for a light emitting device",Solar Streetscapes (Holdings) Pty Ltd,Not Given,12/06/2012,LAPSED, +2012902467,Solar receiver,Commonwealth Scientific and Industrial Research Organisation,Not Given,13/06/2012,LAPSED, +2012902482,Solar Still Element Structure,First Green Park Pty Ltd,"Johnstone, Peter",14/06/2012,LAPSED, +2012902483,Solar Still Modules,First Green Park Pty Ltd,"Johnstone, Peter",14/06/2012,LAPSED, +2012902596,Solar Reforming Reactor,Commonwealth Scientific and Industrial Research Organisation,Not Given,20/06/2012,LAPSED, +2012902840,"Solar power generation, distribution and metering system",Solargreen (AUST) Pty Ltd,"Mitchell, Bruce Joseph",3/07/2012,LAPSED, +2012902847,Method for manufacturing twin solar tubing,"Ivett, Jonathon Lachlan Mr","Ivett, Jonathon Lachlan",4/07/2012,LAPSED, +2012902856,Universal solar power point,"Majkic, Bogdan","Majkic, Bogdan",4/07/2012,LAPSED, +2012902893,Laser Driven solar power sources for remote sensing and optical fibre solar cells,Sydnovate,"Canning, John",6/07/2012,LAPSED, +2012902909,Solar sheeting for roofing or walling,Fielders Australia Pty Ltd,Not Given,9/07/2012,LAPSED, +2012902999,Roof sheeting adapted to accommodate solar panels,Weeks Holdings Pty Ltd,"Weeks, Matthew",13/07/2012,LAPSED, +2012903071,The production of synthesis gas through the use of a solar receiver decoupled from a reforming reactor,Commonwealth Scientific and Industrial Research Organisation,Not Given,19/07/2012,LAPSED, +2012903137,Composition and method for coating a solar panel,LJW Solar Pty Ltd,"Williams, Luke",23/07/2012,LAPSED, +2012903264,Improvements to solar power systems,"Yeomans, Allan James","Yeomans, Allan James",31/07/2012,LAPSED, +2012903280,Energy supply and storage system for use with solar energy collecting apparatus,"Yeomans, Allan James Mr","Yeomans, Allan James",1/08/2012,LAPSED, +2012903309,Solar eCRM,"Badiger, Mounesh Mr; Tech Access Pty Ltd",Not Given,2/08/2012,LAPSED, +2012903335,A system and a method for controlling a solar-powered water heater,New England Solar Power Pty Ltd,Not Given,2/08/2012,LAPSED, +2012903480,Heat Dissipation Arrangement for Solar Tubular Absorbers,Commonwealth Scientific and Industrial Research Organisation,"Benito, Regano; Too, Yen Soo; Duffy, Gregory; Edwards, James",13/08/2012,LAPSED, +2012903610,Energy supply and storage system for use with solar energy collecting apparatus,"Yeomans, Allan James","Yeomans, Allan James",22/08/2012,LAPSED, +2012903647,"Apparatus, system and method for a solar panel safety switch",Schneider Electric South East Asia (HQ) Pte Ltd,Not Given,23/08/2012,LAPSED, +2012903694,Improved Solar Still,First Green Park Pty Ltd,"Johnstone, Peter",28/08/2012,LAPSED, +2012903696,Solar panel lighted real estate agents for sale board,"Ginard, Graham Steven","Ginard, Graham Steven",28/08/2012,LAPSED, +2012903807,Solar powered multi-stage membrane distillation apparatus for water purification,"Arakel, Aharon Dr","Hakobyan, Arsen; Arakel, Aharon; Hakobyan, Arusyak",3/09/2012,LAPSED, +2012903820,Composite Solar Roof,"Blazley, Wade","Blazley, Wade",3/09/2012,LAPSED, +2012903841,An apparatus for charging at least one electronic device using solar radiation,"Rao, Roy","Rao, Roy",5/09/2012,LAPSED, +2012903908,Solar Field Arrangement,"Prosin, Mario Igor",Not Given,7/09/2012,LAPSED, +2012903940,Solar Field Arrangement,"Prosin, Mario Igor",Not Given,10/09/2012,LAPSED, +2012903986,Solar Collectors,"Stanley, Rick",Not Given,12/09/2012,LAPSED, +2012904028,Ground Mounted Solar PV Assembly,"Blazley, Wade","Blazley, Wade",14/09/2012,LAPSED, +2012904077,Solar Panel Rotator,"Bull, Adrian William Mr","Bull, Adrian",19/09/2012,LAPSED, +2012904133,Method of concentrating solar energy with very high tracking tolerance,Solar Sure,Not Given,22/09/2012,LAPSED, +2012904147,Solar sheeting for roofing or walling,Fielders Australia Pty Ltd,Not Given,21/09/2012,LAPSED, +2012904194,Heat energy storage method and apparatus for use with solar energy collecting apparatus,"Yeomans, Allan James","Yeomans, Allan James",26/09/2012,LAPSED, +2012904227,Multiple Unit Storage Device for the Installation of Construction Materials,Giga Solar,"Critchlow, Adrian; Gordon, Stuart",27/09/2012,LAPSED, +2012904360,Opening Rigid Wing,Solar Sailor Pty Ltd,"Dane, Robert; Mathew, Ninan; McBride, Ian",5/10/2012,LAPSED, +2012904373,Solar pool heating manifold protector - protection against storm and wildlife damage,"James, David Mr; Tregear, Mark","James, David; Tregear, Mark",8/10/2012,LAPSED, +2012904450,Composite Solar Roof,"Blazley, Wade","Blazley, Wade",11/10/2012,LAPSED, +2012904525,External Solar Roof Ventilation Fan,Optex Solar pP/L,Not Given,17/10/2012,LAPSED, +2012904608,Solar Panel Cable Mounting System and Methods,Giga Solar,"Critchlow, Adrian; Gordon, Stuart",19/10/2012,LAPSED, +2012904807,IMPROVED SOLAR DISILLATION DEVICE,"Starkey, Jonathan Conrad MR; Starkey, Juanita MS","Starkey, Jonathan Conrad",4/11/2012,LAPSED, +2012904899,IR absorbers that generate heat which is converted to electricity. IR absorbers coated on to a surface which traps the heat and then converted into electricity. These coated surfaces can use the sun or heat generated from a heater to produce electricity . This would power most of the needs to a building. . Panels like solar panels could be coated and thermo couples used to convert the IR collected by the IR absorber into electricity.,"Goldsworthy, Robert John Mr","Goldsworthy, Robert John",10/11/2012,LAPSED, +2012904906,Hot Water Heater and Storage Tank,Heat Trap Solar Pty Ltd,"Neuwen, David Bernard",7/11/2012,LAPSED, +2012904980,Solar thermal collector,"Patford, Laurie","Patford, Laurie",16/11/2012,LAPSED, +2012904983,Solar Generator Platform,Water Innovations Power and Technology Holdings Pt,"CAP, George Jaroslav; Woodfield, Ross",16/11/2012,LAPSED, +2012905009,Hybrid energy production PV solar panel,"Habbouchi, Sami; Odeh, Saad D DR","Odeh, Saad D.; Habbouchi, Sami",19/11/2012,LAPSED, +2012905019,Improved Methods of Heating Fluids,Cosmos Solar Pty Ltd,"Kimmins, Russell; Hurley, Peter",20/11/2012,LAPSED, +2012905071,Solar Thermal Power Generation,Sunoba Pty Ltd,"Barton, Noel Geoffrey",22/11/2012,LAPSED, +2012905158,INTEGRATED SOLAR DESALINATION SYSTEMS SOLAR WELL VERSION 2B,"UNSWORTH, PAUL","UNSWORTH, PAUL",27/11/2012,LAPSED, +2012905173,A heat sink device,Solar Streetscapes (Holdings) Pty Ltd,Not Given,26/11/2012,LAPSED, +2012905382,Time of Day Estimation Method in a Solar Hot Water System and System Using the Method,"Gendel, Alon MR","Gendel, Alon",11/12/2012,LAPSED, +2012905396,Trailer,Solar Powered Systems Pty Ltd,Not Given,11/12/2012,LAPSED, +2012905397,Lighting Module,Solar Powered Systems Pty Ltd,Not Given,11/12/2012,LAPSED, +2012905678,Hybrid Solar Collector,"Trihey, Albert Massey MR","Trihey, Albert Massey; Trihey, John Massey",28/12/2012,LAPSED, +2012905682,"Solaclad is a nanotechnology based solar energy system opaque, translucent or transparent, surface applied or integral suitable for a wide range of applications including all built environment surfaces.",SOLACLAD PTY LTD,"Fox, Michael",29/12/2012,LAPSED, +2013100028,Hybrid energy production PV solar panel,"Habbouchi, Sami; Odeh, Saad D DR","Odeh, Saad D.; Habbouchi, Sami",15/01/2013,CERTIFIED, +2013100041,A Solar Assisted Chiller System,"Hastings, Ross","Hastings, Ross",17/01/2013,CEASED, +2013100043,A Solar Thermal Dish/Engine Power System,"Hastings, Ross","Hastings, Ross",17/01/2013,CEASED, +2013100101,Solar heating,Astral Pool Australia Pty Ltd; Fabtronics Australia Pty Ltd,"Wallace, Peter; Briggs, Rod; Harris, Frank; Goodwin, Ashley",1/02/2013,CERTIFIED, +2013100128,SOLAR MULTIFUNCTIONAL PRUNING MACHINE FOR FRUIT TREE,"Chengdu Jinhui Technology Co., Ltd.","Zhang, Yifan",6/02/2013,CEASED, +2013100162,VIRTUAL SOLAR TRACKING,Tropical Energy Solutions Pty Ltd,"Dallmeyer, Frank",11/02/2013,CEASED, +2013100216,Quick Mounting System For A Photovoltaic Module,"Xiamen Grace Solar Technology Co., Ltd","HUANG, Laifu",26/02/2013,GRANTED, +2013100325,Light Weight Solar Metal Roofing,"Christian, David Frank DR","Christian, David Frank",16/03/2013,CEASED, +2013100349,Solar Energy Capture and Storage System with Revenue Recovery Through Energy Sales,"Elliston, Barbara Louise; PV Direct Limited","Elliston, Barbara Louise",22/03/2013,CERTIFIED, +2013100553,Solar Wind Hybrid System - MITHRA001,"Fernando, Mithra","Fernando, Mithra",21/04/2013,CEASED, +2013100725,Axial Movement Tester for Motor,"ZHEJIANG LINIX SOLAR CO.,LTD","FANG, GUANGZHONG",27/05/2013,CEASED, +2013100726,Structure for Sealing Input shaft and Box Body of Reduction Box,"ZHEJIANG LINIX SOLAR CO.,LTD","SHENTU, Jun",27/05/2013,CEASED, +2013100727,Friction Plate for Planet Carrier of Planet Gearbox,"ZHEJIANG LINIX SOLAR CO.,LTD","XU, Jiangchen",27/05/2013,CEASED, +2013100728,Friction Plate for Rear End Plate of Planet Gearbox,"ZHEJIANG LINIX SOLAR CO.,LTD","XU, Jiangchen",27/05/2013,CEASED, +2013100729,Rear End Cover of Direct Current Motor,"ZHEJIANG LINIX SOLAR CO.,LTD","HUANG, Haiyan",27/05/2013,CEASED, +2013100730,Structure for Positioning Rear End Cover and Casing of Direct Current Motor,"ZHEJIANG LINIX SOLAR CO.,LTD","XU, Jiangchen",27/05/2013,CEASED, +2013100731,Front End Cover of Direct Current Motor,"ZHEJIANG LINIX SOLAR CO.,LTD","XU, Jiangchen",27/05/2013,CEASED, +2013100732,Non-Stop Fixture,"ZHEJIANG LINIX SOLAR CO.,LTD","ZHANG, Jingguo",27/05/2013,CEASED, +2013100733,Fixture for Boring Center Hole on Magnetic Steel,"ZHEJIANG LINIX SOLAR CO.,LTD","ZHANG, Jingguo",27/05/2013,CEASED, +2013100734,Low-wear Lifting Motor for Automobiles,"ZHEJIANG LINIX SOLAR CO.,LTD","XU, Jiangchen",27/05/2013,CEASED, +2013100735,Lifting Motor for Automobiles,"ZHEJIANG LINIX SOLAR CO.,LTD","ZHOU, Aimei",27/05/2013,CEASED, +2013100736,Clamping Structure for Milling Linear Actuator Conduit,"ZHEJIANG LINIX SOLAR CO.,LTD","WANG, Xin",27/05/2013,CEASED, +2013100737,Load Simulation Mechanism for Motor,"ZHEJIANG LINIX SOLAR CO.,LTD","DU, Shan",27/05/2013,CEASED, +2013100738,Positioning and Supporting Structure for Rotor and End Cover of Motor,"ZHEJIANG LINIX SOLAR CO.,LTD","ZHANG, Jingguo",27/05/2013,CEASED, +2013100739,Multipurpose Lathe Fixture,"ZHEJIANG LINIX SOLAR CO.,LTD","ZHANG, Jingguo",27/05/2013,CEASED, +2013100740,High-Stability Lifting Motor for Automobiles,"ZHEJIANG LINIX SOLAR CO.,LTD","ZHOU, Aimei",27/05/2013,CEASED, +2013100741,Clamping Structure for milling notches on Circumferential Surfaces of Oily Bearings,"ZHEJIANG LINIX SOLAR CO.,LTD","HUANG, Haiyan",27/05/2013,CEASED, +2013100742,Cooling Fluid Delivery mechanism for Grinder,"ZHEJIANG LINIX SOLAR CO.,LTD","HUANG, Haiyan",27/05/2013,CEASED, +2013100743,Fixture for Lathing Rotor with Two Bearing Retainers,"ZHEJIANG LINIX SOLAR CO.,LTD","ZHANG, Jingguo",27/05/2013,CEASED, +2013100744,External thread Machining Device,"ZHEJIANG LINIX SOLAR CO.,LTD","ZHANG, Jingguo",27/05/2013,CEASED, +2013100914,Cleaning PV Solar Farms via UAVs.,"Cooper, James","Cooper, James",4/07/2013,GRANTED, +2013101002,"Solar Powered Energy Storage System uses the suns energy to pump water to an elevated position creating potential energy. The efficiency of the system ranges between 4-8% during daylight hours. When the header tank (in elevated position) is full, the raised water is allowed to flow down a pipe to drive an impeller which drives a squirrel-cage generator. The generator is connected to a transformer to feed back electrical energy to the household mains or other needs. The Squirrel-cage generator is geared and clutched to supply energy when output frequency slightly exceeds mains frequency.","Chapman, Richard MR","Chapman, Richard",24/07/2013,CEASED, +2013101039,"Mathematical methods (trigonometry and integral calculus) to determine optimum configurations for solar power systems to maximise power delivery and match power demand profile"".","Felstead, Mark; Kitto, Andrew William; Roberts, Lloyd","Kitto, Andrew William; Felstead, Mark; Roberts, Lloyd",1/08/2013,CEASED, +2013101127,Solar Smart Tile,STAR 8 HOLDINGS PTY LTD,"Maimon, Yacov; Lancaster, Ian",26/08/2013,GRANTED, +2013101242,Solar Tuk-Tuk Roof,Star 8 Holdings Pty Ltd (Or Nominee),"Maimon, Yacov; Lancaster, Ian",19/09/2013,GRANTED, +2013101398,Solar Energy Conversion Sphere,"Elabor, Jonathan MR","Elabor, Jonathan",24/10/2013,CEASED, +2013101478,Improved Methods of Heating Fluids,COSMOS SOLAR PTY LTD,"KIMMINS, Russell Wayne; HURLEY, Peter Damien",13/11/2013,GRANTED, +2013101698,The means to improve the thermal efficiency of a solar collector by reducing radiant heat loss from the rear side of the solar absorber,"Pintar, Marko; Zheng, Jing Jing","Zheng, JingJing; Pintar, Marko",18/03/2013,GRANTED, +2013101703,Adjustable solar concentrator assembly and methods of using the same,One Earth Designs,"Chan, Tin Yi; Chui, Yim Ping; Frank, Scot Carrett; Kristofek, Grant W.; Kulper, Sloan Austin; Leung, Man Chuen; Micka-Smith, Heather; Powers, Catlin; Tolles, Christopher Mencke; Vleet, Liam Van; Wan, Tat Lee; Young, Erica Elizabeth",15/03/2013,GRANTED, +2013200236,A Solar Collector Header Attachment Arrangement,Rheem Australian Pty Limited,"Reardon, Jospeh; Chapman, Gregory; Bolitho, Glen",17/01/2013,GRANTED, +2013200320,AUTOMATIC SOLAR TRACKING ADJUSTMENT/CONTROL APPARATUS OF SOLAR GENERATION SYSTEM,"BIG SUN ENERGY TECHNOLOGY INCORPORATION; LUO, CHIA CHING","Luo, Chia Ching",22/01/2013,GRANTED, +2013200622,Solar cell and method of manufacturing the same,"Shin-Etsu Chemical Co., Ltd.","Watabe, Takenori; Otsuka, Hiroyuki",6/02/2013,GRANTED, +2013200629,Solar receiver panel,"Sener, Ingenieria Y Sistemas, S.A.","Lata Perez, Jesus Maria; Bayon Sanz, Pedro Angel",6/02/2013,GRANTED, +2013200776,"Reactors for conducting thermochemical processes with solar heat input, and associated systems and methods","McAlister Technologies, LLC","McALISTER, Roy Edward",8/02/2013,FILED, +2013200939,Safety Improvements for Solar Panels,SAFETY IN SOLAR PTY LTD,"Fuge, Paul Joseph; Fuge, Dayne Joseph; Baron, Rene",20/02/2013,LAPSED, +2013201557,Process for decreasing the reflectivity of a semiconductor material,The Australian National University,"Weber, Klaus Johannes; Blakers, Andrew William; Blakers, William Andrew",15/03/2013,LAPSED, +2013201559,SOLAR EARTH MODULE,"Farquhar, Roger MR","Farquhar, Roger",15/03/2013,LAPSED, +2013201614,The means to improve the thermal efficiency of a solar collector by reducing radiant heat loss from the rear side of the solar absorber,"Pintar, Marko; Zheng, Jing Jing","Zheng, JingJing; Pintar, Marko",18/03/2013,CONVERTED, +2013201680,A SOLAR POWERED LIGHTING SYSTEM,Kimberley Plastics Pty Ltd,"Kimberley, Brian",13/03/2013,LAPSED, +2013201975,COOKING DEVICE USING SOLAR ENERGY,"Terraz, Jean-Marc","Terraz, Jean-Marc",21/03/2013,FILED, +2013202221,Solar reflective coatings and coating systems cross-reference to related applications,"PPG Industries Ohio, Inc.","Decker, Eldon L.; Hellring, Stuart D.; McQuown, Stephen G.; Minch, Britt A.; Vanier, Noel R.; Polk, David W.",29/03/2013,WITHDRAWN, +2013202224,Solar reflective coatings and coating systems cross-reference to related applications,"PPG Industries Ohio, Inc.","Decker, Eldon L.; Hellring, Stuart D.; McQuown, Stephen G.; Minch, Britt A.; Vanier, Noel R.; Polk, David W.",29/03/2013,WITHDRAWN, +2013203564,A decoration solar panel bridge supplying power sources,"CARROLL, Min","CARROLL, Min",10/04/2013,LAPSED, +2013204709,SOLAR SHEETING FOR ROOFING OR WALLING,Bluescope Steel Limited,"Cobb, Kym; Blaik, Kevin John; Lloyde, Matthew James; Aldridge, Brett",12/04/2013,FILED, +2013204713,A SOLAR ROOF SHEET ASSEMBLY,Bluescope Steel Limited,"Aldridge, Brett; Lloyde, Matthew James; Blaik, Kevin John; Cobb, Kym",12/04/2013,FILED, +2013204716,SOLAR SHEETING FOR ROOFING OR WALLING,Bluescope Steel Limited,"Lloyde, Matthew James; Blaik, Kevin John; Cobb, Kym; Aldridge, Brett",12/04/2013,FILED, +2013205059,"EVM granulated material as embedding material for solar modules, method for its production, adhesive foil as well as a solar module, method for its production and production device",Lanxess Deutschland GmbH,"ROOS, Andreas; HERRMANN, Michael; KALKOFEN, Rainer; KELBCH, Stefan; FROMMONT, Hans-Jrgen; BERGMANN, Gerd; TAPPE, Ralf",13/04/2013,LAPSED, +2013205777,SOLAR PANEL HOLDER,K2 Systems GmbH,"Kemmer, David; Wiggers, Melanie; Seeg, Thomas",8/05/2013,LAPSED, +2013206238,Solar Reforming Reactor,Commonwealth Scientific and Industrial Research Organisation,"Benito, Regano; McEvoy, Stephen; McNaughton, Robbie; Hart, Glenn",7/06/2013,FILED, +2013206239,THE PRODUCTION OF SYNTHESIS GAS THROUGH THE USE OF A SOLAR RECEIVER DECOUPLED FROM A REFORMING REACTOR,Commonwealth Scientific and Industrial Research Organisation,"McNaughton, Robbie",7/06/2013,GRANTED, +2013206264,Solar-powered bollard lamp devices,Solar Streetscapes (Holdings) Pty Ltd,"Giblett, Nathan",11/06/2013,FILED, +2013206268,Power plant with solar energy system,Alstom Technology Ltd,"Carroni, Richard; Ruchti, Christoph; Dietzmann, Joerg",11/06/2013,GRANTED, +2013206693,UNIVERSAL SOLAR POWER POINT,"MAJKIC, BOGDAN","MAJKIC, BOGDAN",2/07/2013,LAPSED, +2013207143,"Method for the low-temperature production of radial-junction semiconductor nanostructures, radial junction device, and solar cell including radial-junction nanostructures",Centre National de la Recherche Scientifique; Ecole Polytechnique; Total Marketing Services,"Yu, Linwei; Roca I Cabarrocas, Pere",3/01/2013,GRANTED, +2013207591,Solar collector assembly,MH Solar Co LTD,"SATER, Bernard L.; Zahuranec, Terry; SATER, Neil D.; ZALUSKY, James Thomas",17/07/2013,LAPSED, +2013208658,Apparatus and method for using solar radiation in electrolysis process,Yeda Research and Development Co. Ltd.,"Karni, Jacob; Alioshin, Yury; Banitt, David; Scheiner, David; Harpaz, Roi; Finarov, Baruch",13/01/2013,FILED, +2013210888,Electrical supply controller,Power Diverter Limited,"Lawes, Daniel; Walters, Simon; Yeoman, Michael",21/01/2013,FILED, +2013216637,USE OF AN INERT GRAPHITE LAYER IN A BACK CONTACT OF A PHOTOVOLTAIC CELL,"PrimeStar Solar, Inc.","Clark, Laura Anne; Lucas, Tammy Jane; Metzger, Wyatt Keith",15/08/2013,FILED, +2013217282,Rylene monoimide derivatives and use thereof as photosentizers in solar cells and photodetectors,BASF SE; Max-Planck-Gesellschaft zur Forderung der Wissenschaften e.V.,"Benedito, Flavio Luiz; Bruder, Ingmar; Erk, Peter; Pschirer, Neil Gregory; Send, Robert; Mullen, Klaus; Wonneberger, Henrike; Li, Chen",7/02/2013,FILED, +2013217894,Solar tracker with refraction-based concentration,"Compania Valenciana de Energias Renovables, S.A.","Peris Domingo, Gonzalo Bernabe; Ehlis Pirretas, Sergio; Mas Mulet, Jordi; Fernandez Lacruz, Eduardo",7/02/2013,FILED, +2013218710,Organic thin film solar cell,"Sekisui Chemical Co., Ltd.","Hayakawa, Akinobu; Ito, Kazushi; Sun, Ren-de",7/02/2013,FILED, +2013218713,Organic thin film solar cell,"Sekisui Chemical Co., Ltd.","Hayakawa, Akinobu; Ito, Kazushi; Sun, Ren-De",7/02/2013,GRANTED, +2013218788,Solar generator platform,Powerak Pty Ltd,"Cap, George Jaroslav; Woodfield, Ross",7/02/2013,GRANTED, +2013219241,"APPARATUS, SYSTEM AND METHOD FOR A SOLAR PANEL SAFETY SWITCH",Schneider Electric South East Asia (HQ) Pte Ltd,"Sargent, Adam Charles; Owen, David Robert",23/08/2013,FILED, +2013220617,Holder for a solar panel,"Ilzhofer, Werner","Ilzhofer, Werner",24/01/2013,FILED, +2013220618,Device for supporting at least one solar panel,"Ilzhofer, Werner","Ilzhofer, Werner",24/01/2013,LAPSED, +2013222048,SUPPORT STRUCTURE FOR PHOTOVOLTAIC MODULE MOUNTING AND METHODS OF ITS USE,"PrimeStar Solar, Inc.","Reed, Max William",3/09/2013,FILED, +2013225860,Structures and methods for high efficiency compound semiconductor solar cells,"Solexel, Inc.","Kapur, Pawan; Moslehi, Mehrdad M.",28/02/2013,FILED, +2013227164,"Optical condenser, rotational axis setting method therefor, and heat collection apparatus and solar power generation apparatus equipped with optical condenser","Mitsubishi Heavy Industries, Ltd.","Furutani, Akira",25/02/2013,GRANTED, +2013227583,"Solar concentrator, and heat collection apparatus and solar thermal power generation apparatus including same","Mitsubishi Heavy Industries, Ltd.","Furutani, Akira; Furuta, Taizan",19/02/2013,ACCEPTED, +2013228056,SYSTEM FOR MEASURING ULTRAVIOLET SOLAR RADIATION WITH MEANS FOR DISPLAYING UV INFORMATION IN A PUBLIC OR PRIVATE PLACE,"Labra, Ernesto Vicente Gramsch; Teccia, Ltda.","Labra, Ernesto Vicente Gramsch; Viani, Tomas Pablo Santibanez",11/09/2013,LAPSED, +2013229146,Portable modular sun-tracking solar energy receiver system,Aspect Solar Pte Ltd,"Goei, Esmond T.; Goei, Andrew E.; Tan, Mok Tiong; Marnyo, Haryadi; Lei, Li; Mejia, Ryan Flores; Chin, Yen",11/03/2013,FILED, +2013230342,Ground source cooling apparatus for solar energy electricity generating system,"Beijing Terasolar Energy Technologies Co., Ltd","Liu, Yang",5/03/2013,FILED, +2013230691,Solar and renewable/waste energy powered turbine with two stage heating and graphite body heat exchanger,Graphite Energy N.V.,"Bain, Nicholas Jordan; Khoo, Paul Soo-Hock; Reynolds, David John",7/03/2013,FILED, +2013231094,SOLAR PANEL,Empire Technology Development LLC,"ELLIOTT, Stuart; LANYON, Samuel Ross Garland; VOM, Eduardo; ALLMAN, Richard",19/09/2013,GRANTED, +2013231335,Electric wall feedthrough for solar installations,Phoenix Contact GmbH & Co.KG,"Sagdic, Mehmet",12/03/2013,GRANTED, +2013232734,A method of fabricating a component of a solar energy system,Endless Solar Corporation Ltd,"Dennis, Michael",14/03/2013,FILED, +2013233954,A solar concentrator for a solar energy collector and a method of adjusting the solar concentrator,"Areva Solar, Inc.","Hoermann, Alexander; Ray, Forest",13/03/2013,FILED, +2013235508,"Multi-thermal storage unit systems, fluid flow control devices, and low pressure solar receivers for solar power systems, and related components and uses thereof",Wilson Solarpower Corporation,"Anderson, Bruce; Treece, William Dean",14/03/2013,FILED, +2013236290,Solar thermal power generation facility and method of starting up same,"Mitsubishi Heavy Industries, Ltd.","Harada, Shoichi; Higashi, Kazuya; Sonoda, Takashi; Yamamoto, Keisuke; Iwasaki, Yoshifumi; Iwasaki, Tatsuya; Toyofuku, Sumio; Nishizawa, Kazuma",18/03/2013,GRANTED, +2013237314,Solar control glazing,Saint-Gobain Glass France,"Singh, Laura Jane; Palacios-Laloy, Augustin; Sandre-Chardonnal, Etienne",8/03/2013,FILED, +2013237911,Back contact solar cells using aluminum-based alloy metallization,"Solexel, Inc.","Seutter, Sean M.; Moslehi, Mehrdad M.; Desphande, Anand; Rana, Virendra V.; Kapur, Pawan; Kramer, Karl-Josef; Calcaterra, Anthony; Dutton, David; Yonehara, Takao",28/03/2013,FILED, +2013237992,End point detection for back contact solar cell laser via drilling,"Solexel, Inc.","Rana, Virendra V.; Moslehi, Mehrdad M.; Anbalagan, Pranav; Deshazer, Heather; Coutant, Solene; Rattle, Benjamin E.; Kramer, Karl-Josef; Kapur, Pawan",28/03/2013,FILED, +2013239076,Solar array module system for generating electric power,Solarwat Ltd.,"Vatelmacher, Boris; Paz, Gabi",30/03/2013,FILED, +2013240255,Adjustable solar concentrator assembly and methods of using the same,One Earth Designs,"Chan, Tin Yi; Chui, Yim Ping; Frank, Scot Carrett; Kristofek, Grant W.; Kulper, Sloan Austin; Leung, Man Chuen; Micka-Smith, Heather; Powers, Catlin; Tolles, Christopher Mencke; Vleet, Liam Van; Wan, Tat Lee; Young, Erica Elizabeth",15/03/2013,CONVERTED, +2013241067,Linear solar energy collector system and solar power generator system,"Ricoh Company, Ltd.; Tokyo Institute of Technology","Satoh, Tatsuya; Suzuki, Mitsuo; Masuda, Koji; Ueda, Takeshi; Nagao, Kazuya; Kitabayashi, Junichi; Tamaura, Yutaka; Kaneko, Hiroshi",22/03/2013,FILED, +2013241851,Quinolinium dyes with fluorinated counter anion for dye sensitized solar cells,BASF SE,"Send, Robert; Bruder, Ingmar; Erk, Peter; Sens, Rudiger; Yamamoto, Hiroshi; Yamato, Hitoshi; Nakamichi, Shinji; Takahashi, Ryuichi",27/03/2013,FILED, +2013242235,"Method for manufacturing mirror structure, mirror structure, light collection device having same, heat collection facility and solar thermal power generation facility","Mitsubishi Heavy Industries, Ltd.","Furutani, Akira",21/03/2013,GRANTED, +2013242931,A dye-sensitized solar cell module having a serial structure and a method for manufacturing the solar cell,Exeger Sweden AB,"Lindstrom, Henrik; Fili, Giovanni",8/03/2013,FILED, +2013242933,A dye-sensitized solar cell including a composite substrate,Exeger Sweden AB,"Lindstrom, Henrik; Fili, Giovanni",8/03/2013,ACCEPTED, +2013242984,Method for producing thin-film solar modules and thin-film solar modules which are obtainable according to said method,Robert Bosch GmbH,"Probst, Volker",15/02/2013,FILED, +2013242989,"Multi-layer back electrode for a photovoltaic thin-film solar cell and use of the same for producing thin-film solar cells and modules, photovoltaic thin-film solar cells and modules containing the multi-layer back electrode and method for the production thereof",Robert Bosch GmbH,"Probst, Volker",18/02/2013,FILED, +2013242990,"Multi-layer back electrode for a photovoltaic thin-film solar cell, use of the same for producing thin-film solar cells and modules, photovoltaic thin-film solar cells and modules containing the multi-layer back electrode and method for the production thereof",Robert Bosch GmbH,"Probst, Volker",19/02/2013,FILED, +2013245188,Solar driven solvent extractor and process for extraction of microalgal lipids using the same,Council of Scientific & Industrial Research an Indian Registered Body Incorporated Under the Regn. of Soc. Act (Act XXI of 1860),"Ghosh, Pushpito Kumar; Mishra, Sandhya Chandrika Prasad; Maiti, Subarna; Paliwal, Chetan; Mishra, Sanjiv Kumar; Ghosh, Tonmoy; Chokshi, Kaumeel; Patel, Pankaj; Bharadia, Jitendra Narsinh",2/04/2013,FILED, +2013245471,Solar cells arrangement,Bar Ilan University; THE REGENTS OF THE UNIVERSITY OF CALIFORNIA; YEDA RESEARCH AND DEVELOPMENT COMPANY LTD.,"ZABAN, Arie; CAHEN, David; LUBOMIRSKY, Igor; STAFSUDD, Oscar M.",16/10/2013,GRANTED, +2013245559,SINGLE CHIP GRID CONNECTED SOLAR MICRO INVERTER,Semitech Semiconductor Pty Ltd,"Collin, Zeev; Rhodes, F. Mathew",21/10/2013,FILED, +2013245614,Photovoltaic thin-film solar modules and method for producing such thin-film solar modules,Robert Bosch GmbH,"Probst, Volker",28/03/2013,FILED, +2013248187,High Efficiency Photovoltaic System,TSMC Solar Ltd.,"Cheng, Tzu-Huan; Chu, Li-Huan",23/10/2013,LAPSED, +2013248442,Method and apparatus for operating a solar thermal power plant,Siemens Aktiengesellschaft,"Bruckner, Jan; Thomas, Frank",11/04/2013,ACCEPTED, +2013249424,"Mounting assemblies, solar trackers, and related methods","Corio, Ronald P.","Corio, Ronald P.",16/04/2013,FILED, +2013251281,Photovoltaic cells with processed surfaces and related applications,"MH Solar Co., Ltd.","Sater, Bernard L.",1/11/2013,LAPSED, +2013251282,Photovoltaic cells with processed surfaces and related applications,"MH Solar Co., Ltd.","Sater, Bernard L.",1/11/2013,GRANTED, +2013251373,Fuel injector with purged insulating air cavity,Solar Turbines Incorporated,"Twardochleb, Christopher Zdzislaw; Duckers, Jonathan Gerrard",26/04/2013,ACCEPTED, +2013254025,Solar cell module and method for connecting same,"Nissha Printing Co., Ltd.","Yamaguchi, Yoichi; Ogaya, Shinji; Tsuda, Hayato",18/02/2013,FILED, +2013254274,Hybrid solar generator,"Tiano, Francesco Antonio; Tiano, Luca; Wits Engineering S.r.l.","Tiano, Francesco Antonio",24/04/2013,FILED, +2013254306,Solar power tower receiver,Stellenbosch University,"Kretzschmar, Holger; Gauche, Paul",25/04/2013,FILED, +2013254922,Electric cable for solar plant generating electrical energy and thermal energy and plant comprising it,Prysmian S.p.A,"Sarchi, Davide; Herold, Eduard; Martinelli, Paolo; Bechis, Massimo; Schorr, Burkhard",7/11/2013,FILED, +2013254968,SOLAR WARM WATER GENERATOR SYSTEM,"Luu, Quoc Thoi MR","Luu, Quoc Thoi; Luu, Lincoln Quoc Anh Ton; Luu, James An Loc",11/11/2013,GRANTED, +2013257477,Stationary parabolic solar power system and related methods for collecting solar energy,D & D Manufacturing,"Polk Jr., Dale",14/11/2013,ACCEPTED, +2013257529,Monitoring system,Solar Analytics Pty Ltd,"Vais, Valantis; Jarnason, Stefan; Basu, Avantika",19/11/2013,FILED, +2013262385,Light weight solar concentrator,SHEC Energy Corporation,"Beck, James Thomas",14/05/2013,FILED, +2013263823,Localized power point optimizer for solar cell installations,SunPower Corporation,"Noworolski, Jan Mark; Klein, David L.",29/11/2013,GRANTED, +2013266009,Advanced hydrogenation of silicon solar cells,NewSouth Innovations Pty Limited,"Wenham, Stuart Ross; Hamer, Phillip George; Hallam, Brett Jason; Sugianto, Adeline; Chan, Catherine Emily; Song, Lihui; Lu, Pei-Hsuan; Wenham, Alison Maree; Mai, Ly; Chong, Chee Mun; Xu, Guangqi; Edwards, Matthew Bruce",20/05/2013,FILED, +2013266938,Heating arrangement for heating a fluid utilizing a solar panel,SoletAer AB,"Fjaestad, Adam",21/05/2013,FILED, +2013267481,Structures and methods of formation of contiguous and non-contiguous base regions for high efficiency back-contact solar cells,"Solexel, Inc.","Deshpande, Anand; Kapur, Pawan; Rana, Virendra V.; Moslehi, Mehrdad M.; Seutter, Sean M.; Deshazer, Heather; Kommera, Swaroop; Anbalagan, Pranav; Rattle, Benjamine E.; Coutant, Solene",29/05/2013,LAPSED, +2013267494,Turbine damper,Solar Turbines Incorporated,"Zhang, Qingxuan Michael; Brown, Theresa A.; Faulder, Leslie John",30/05/2013,FILED, +2013270295,Solar photo-thermal receiving device,"Beijing Terasolar Energy Technologies Co., Ltd","Liu, Yang",30/05/2013,GRANTED, +2013270475,Trailer,Solar Powered Systems Pty Ltd,"Khoury, Edward Joseph",10/12/2013,LAPSED, +2013270476,Lighting Module,Solar Powered Systems Pty Ltd,"Khoury, Edward Joseph",10/12/2013,FILED, +2013270609,ATTACHMENT SYSTEM FOR MOUNTING SOLAR MODULES,Mounting Systems GmbH,"Redel, Mark",13/12/2013,FILED, +2013270933,Solar thermal panel array field arrangement and related vacuum solar thermal panel,TVP Solar SA,"Palmieri, Vittorio; Di Giamberardino, Francesco",5/06/2013,FILED, +2013271363,Solar energy receiver,Graphite Energy N.V,"Bain, Nicholas Jordan; Baddock, Garry James; Khoo, Paul Soo-Hock; Reynolds, David John; McNeil, Alexander McKechran Hardie; Laws, Adam Timothy; Chao, Jun",7/06/2013,FILED, +2013272248,Manufacturing methods and structures for large-area thin-film solar cells and other semiconductor devices,"Solexel, Inc.","Moslehi, Mehrdad M.; Kapur, Pawan; Kramer, Karl-Josef",24/04/2013,FILED, +2013273913,An ejector,Endless Solar Corporation Ltd,"Dennis, Michael",16/04/2013,FILED, +2013273921,A solar energy system,Endless Solar Corporation Ltd,"Dennis, Michael",11/06/2013,FILED, +2013273922,A solar energy system,Endless Solar Corporation Ltd,"Dennis, Michael",11/06/2013,FILED, +2013276804,Gas turbine process using a solar updraft tower power plant,Siemens Aktiengesellschaft,"Lenk, Uwe; Tremel, Alexander",6/05/2013,FILED, +2013277333,"Coated sheet materials having high solar reflective index and corrosion resistance, and methods of making same","PPG Industries Ohio, Inc.","Schwendeman, Irina G.; Retsch Jr., William H.; Rearick, Brian K.; Conley, Carole A.",18/06/2013,GRANTED, +2013279266,Solar cells,Norwegian University of Science and Technology (NTNU),"Weman, Helge; Fimland, Bjorn-Ove; Kim, Dong Chul",21/06/2013,FILED, +2013279643,Coating of a glass sleeve,Siemens Concentrated Solar Power Ltd.,"Aran, Hagai; Levin, Victor; Mor, Elad",3/06/2013,FILED, +2013280828,Brace for solar module array,SunPower Corporation,"Danning, Matthew G.; Lee, Wayman",21/06/2013,FILED, +2013282893,Solar panel cleaning system and method,Ecoppia Scientific Ltd.,"Meller, Moshe; Meller, Eran",14/06/2013,FILED, +2013283366,Solar collector system,"Hadlauer, Martin","Hadlauer, Martin",25/06/2013,FILED, +2013283919,Organic solar cell of the bulk heterojunction type comprising an imide based conjugated backbone compound as photoactive material,Tata Steel Nederland Technology B.V.,"Palaniswamy, Ganesan; Hannour, Fouzia; Dingemans, Theodorus Jacobus; Bouwer, Ricardo Klaas Maarten",31/05/2013,FILED, +2013284287,Cooling system for a solar power generator,Solar Systems Pty Ltd,"Heys, Malcolm",28/06/2013,FILED, +2013285053,Organic dyes comprising hydrazone moiety and use in dye- sensitized solar cells thereof,BASF SE,"Bruder, Ingmar; Send, Robert; Urnikaite, Simona; Malinauskas, Tadas; Daskeviciene, Maryte; Getautis, Vytautas",26/06/2013,FILED, +2013288275,Process for conducting organic reactions in a standalone and affordable laboratory scale solar photo thermochemical reactor,Council of Scientific Industrial Research,"Ghose, Pushpito Kumar; Chakraborty, Supratim; Dinda, Milan; Maiti, Subarna; Bhatt, Chitrangi Bankimbhai; Bharadia, Jitendra Narsinhbhai; Patel, Pankaj Arvindbhai; Bapat, Pratap Shashikant",9/07/2013,FILED, +2013289151,High efficiency solar cell structures and manufacturing methods,"Solexel, Inc.","Kramer, Karl-Josef; Moslehi, Mehrdad M.; Kapur, Pawan; Rana, Virendra V.; Dutton, David; Seutter, Sean M.; Calcaterra, Anthony; Ashjaee, Jay; Yonehara, Takao",2/04/2013,FILED, +2013289503,Use of microporous anionic inorganic framework structures containing dopant cations for producing thin film solar cells,Robert Bosch GmbH,"Hergert, Frank; Probst, Volker",5/06/2013,FILED, +2013291157,Solar power system,"Mitsubishi Hitachi Power Systems, Ltd.","Shinozaki, Kohei; Marumoto, Takahiro; Shikata, Tetsuo; Kashima, Jun; Tadakuma, Satoshi",17/07/2013,FILED, +2013295581,Solar thermochemical processing system and method,Battelle Memorial Institute,"Wegeng, Robert S.; Humble, Paul H.; Krishnan, Shankar; Leith, Steven D.; Palo, Daniel R.; Dagle, Robert A.",26/07/2013,FILED, +2013296123,Method for coating a solar panel,Solar Developments Pty Ltd,"Williams, Luke",21/02/2013,FILED, +2013297546,"Heat collection device for solar heat boiler, and tower-type solar heat boiler equipped with same","Mitsubishi Hitachi Power Systems, Ltd.","Marumoto, Takahiro; Shikata, Tetsuo",30/07/2013,ACCEPTED, +2013299324,Improvements to solar power systems,"Yeomans, Allan James","Yeomans, Allan James",31/07/2013,FILED, +2013299734,Solar energy collection utilizing heliostats,"Logos Technologies, LLC","Kremer, Richard M.; Pulliam, Wade",6/08/2013,FILED, +2013301239,"Boron containing perylene monoimides, process for their production, their use as building blocks for production of perylene monoimide derivatives, monoimide derivatives and their use in dye-sensitized solar cells",BASF SE; Max-Planck-Gesellschaft zur Forderung der Wissenschaften e.V.,"Wonneberger, Henrike; Bruder, Ingmar; Send, Robert; Battagliarin, Glauco; Li, Chen; Mullen, Klaus",24/07/2013,FILED, +2013301468,Solar thermosiphon system,Robert Bosch GmbH,"Lunz, Karin; Kemp, Alexander; Gachignard, Nelly; Clement, Uwe",9/08/2013,FILED, +2013303223,Designs for control on solar power system with extreme low energy consumption,LT Lighting (Taiwan) Corp.,"Shuy, Geoffrey Wen-Tai; Chang, Wen Ten; Lai, Hsin-Chen",12/02/2013,FILED, +2013304335,Support structure for solar modules,Habdank PV-Montagesysteme GmbH & Co. KG,"Habdank, Martin",19/01/2013,FILED, +2013306745,"Dye-sensitive solar cell paste, porous light-reflective insulation layer, and dye-sensitive solar cell","Sumitomo Osaka Cement Co., Ltd.","Yakubo, Teppei; Takano, Shingo",21/08/2013,FILED, +2013308336,Composite solar roof,"Blazley, Wade","Blazley, Wade",3/09/2013,FILED, +2013309484,Tunneling-junction solar cell with shallow counter doping layer in the substrate,SolarCity Corporation,"Xie, Zhigang; Heng, Jiunn Benjamin; Fu, Jianming; Xu, Zheng",24/06/2013,FILED, +2013311227,Low cost high efficiency solar power plant,"Verma, Subodh","Verma, Subodh",5/09/2013,FILED, +2013311710,A solar energy system,HSE Hitit Solar Enerji Anonim Sirketi,"Capan, Rahmi Oguz",4/09/2013,LAPSED, +2013317631,Hydrogen-regenerating solar-powered aircraft,Solar Ship Inc.,"Fournier, Sebastien; Godsall, Jay",19/09/2013,FILED, +2013317707,An improved apparatus for concentrating solar energy,Solar Sure Pty Ltd,"Shaw, Ian Henry",21/09/2013,FILED, +2013319925,Laminated glazing with coloured reflection and high solar transmittance suitable for solar energy systems,Swissinso SA,"Hody Le Caer, Virginie; Schuler, Andreas",29/08/2013,FILED, +2013320297,Process for the production of an optically selective coating of a substrate for high temperature receiver solar devices and relative material obtained,ENI S.p.A.,"Spano, Guido; Lazzari, Carla; Marella, Marcello",18/09/2013,FILED, +2013323061,"Method for producing a flat steel product having high reflectivity, flat steel product, and mirror element for solar concentrators",Outokumpu Nirosta GmbH; ThyssenKrupp Steel Europe AG,"Glass, Roman; Karsten, Utz; Kazmierski, Jorg; Kolbe, Nina; Krautschick, Hans-Joachim; Lange, Klaus Manfred; Puls, Stefan Peter; Schauer-Pass, Janine; Schuhmacher, Bernd; Wiemer, Dirk; Worster, Frank",27/08/2013,FILED, +2013323565,Excitonic energy transfer to increase inorganic solar cell efficiency,The Regents of the University of Michigan; University of Southern California,"Forrest, Stephen R.; Thompson, Mark E.",26/09/2013,FILED, +2013323868,Methods and structures for forming and improving solder joint thickness and planarity control features for solar cells,SunPower Corporation,"Linderman, Ryan; Phu, Thomas",23/09/2013,FILED, +2013325337,Solar air heating / cooling system,"Coulter, Grace","Coulter, Grace",2/10/2013,FILED, +2013327408,Opening rigid wing,Solar Sailor Pty Ltd,"Dane, Robert; Mathew, Ninan; McBride, Ian",8/10/2013,FILED, +2013331304,Systems and methods for monolithically integrated bypass switches in photovoltaic solar cells and modules,"Solexel, Inc.","Moslehi, Mehrdad M.",16/10/2013,GRANTED, +2013334912,Bifacial solar cell module with backside reflector,SunPower Corporation,"Kim, Sung Dug; Bunea, Gabriela",21/10/2013,FILED, +2013337195,Method for preparing polyester/polyolefin composite hot melt glue used for solar cell bus board,"East China University of Science and Technology; Kunshan Tianyang Hot Melt Adhesive Co., Ltd.; Shanghai Tianyang Hot Melt Adhesive Co., Ltd.","Xue, Weilan; Zhao, Ping; Li, Zhelong; Zhu, Wanyu; Zeng, Zuoxiang; Gao, Xu; Liu, Juan",24/10/2013,GRANTED, +2013337262,Systems and methods for monolithically isled solar photovoltaic cells and modules,"Solexel, Inc.","Moslehi, Mehrdad M.",5/11/2013,FILED, +2013338548,Inflatable solar powered lamp,"MPOWERD, Inc.","Snyder, Jason Alan",22/08/2013,FILED, +2013346002,Solar cell,"Sekisui Chemical Co., Ltd.","Ohara, Shunji; Hayakawa, Akinobu; Horiki, Mayumi; Ito, Kazushi",29/10/2013,FILED, +2013347413,Linear drive apparatus and method of controlling and using same for solar energy tracking,"Si Chuan Zhong Shun Solar Energy Development Co., Ltd","Huang, Zhong",27/09/2013,ACCEPTED, +2013352351,Solar module having a back plane integrated inverter,Sunedison Microinverter Products LLC,"Potharaju, Suryanarayana",26/11/2013,FILED, +2013354612,Solar biomass complementary thermal power system,"Zhongying Changjiang International New Energy Investment Co., Ltd.","Chen, Yilong; Yang, Qingping; Zhang, Yanfeng; Liu, Wenyan",5/12/2013,FILED, +2013355406,Seed layer for solar cell conductive contact,SunPower Corporation,"Cudzinovic, Michael; Wu, Junbo; Zhu, Xi",3/12/2013,FILED, +2013358829,Linear condensation assembly and manufacturing process therefor,"Si Chuan Zhong Shun Solar Energy Development Co., Ltd","Huang, Zhong",12/10/2013,FILED, +2013359837,Methods for electroless conductivity enhancement of solar cell metallization,SunPower Corporation,"Cudzinovic, Michael; Behnke, Joseph",5/12/2013,FILED, +2013361102,"Apparatus, systems and methods for collecting and converting solar energy",BENERGY LLC,"Bickmore, William D.",20/12/2013,FILED, +2013361666,Solar concentration system,"Skyven Technologies, LLC","Gupta, Arun",17/12/2013,FILED, +2013362916,Hybrid emitter all back contact solar cell,SunPower Corporation,"Loscutoff, Paul; Rim, Seung",17/12/2013,FILED, +2013362923,Module assembly for thin solar cells,SunPower Corporation,"Bunea, Gabriela",17/12/2013,FILED, +2013363569,Solar cell emitter region fabrication using etch resistant film,SunPower Corporation,"Loscutoff, Paul; Cousins, Peter J.",27/11/2013,FILED, +2013363570,Enhanced adhesion of seed layer for solar cell conductive contact,SunPower Corporation,"Wu, Junbo; Johnson, Michael C.; Cudzinovic, Michael; Behnke, Joseph; Zhu, Xi; Smith, David D.; Sewell, Richard Hamilton; Tu, Xiuwen; Rim, Seung Bum",27/11/2013,FILED, +2013363640,Solar cell with silicon oxynitride dielectric layer,SunPower Corporation,"Shepherd, Michael; Smith, David D.",26/11/2013,FILED, +2013364089,Controlling electrically-powered trash compactors and receptacles,"Big Belly Solar, Inc.","Poss, James A.; Satwicz, Jeffrey T.; Feldman, Michael E.; Skocypec, David J.",14/11/2013,FILED, +2013364371,Solar cell emitter region fabrication using silicon nano-particles,SunPower Corporation,"Loscutoff, Paul; Smith, David D.; Morse, Michael; Waldhauer, Ann; Kim, Taeseok; Molesa, Steven Edward",18/06/2013,FILED, +2013364372,Solar cell emitter region fabrication using N-type doped silicon nano-particles,SunPower Corporation,"Loscutoff, Paul; Cousins, Peter J.; Molesa, Steven Edward; Waldhauer, Ann",18/06/2013,FILED, +2013365633,Perovskite schottky type solar cell,Yissum Research Development Company of The Hebrew University of Jerusalem Ltd.,"Etgar, Lioz",19/12/2013,FILED, +2013368278,Support for solar energy collection,SunPower Corporation,"Agullo, Vicent Ripoll",11/12/2013,FILED, +2013369133,Device for positioning a member for transmitting solar energy relative to an optical concentrator,ECHY,"Martin-Laval, Quentin; Fourment, Paul",24/12/2013,FILED, +2013370015,Seawater desalting apparatus and method using solar energy for continuously supplying heat,"Zhongying Changjiang International New Energy Investment Co., Ltd","Chen, Yilong; Yang, Qingping; Zhang, Yanfeng",15/11/2013,FILED, +2013377371,A hybrid multilayer solar selective coating for high temperature solar thermal applications and a process for the preparation thereof,Council of Scientific & Industrial Research,"Chandra, Harish Barshilia; Basu, Jyothi Bharathibai; Vara, Lakshmi Ramachandrappa",11/09/2013,FILED, +2013402604,"Solar heat turbine system, and device and method for controlling said system","Mitsubishi Heavy Industries, Ltd.","Harada, Shoichi; Higashi, Kazuya; Sonoda, Takashi; Yamamoto, Keisuke; Iwasaki, Yoshifumi; Iwasaki, Tatsuya",10/10/2013,FILED, +2013408092,Solar cell and preparation method therefor,"Wenguang, Quan","Wenguang, Quan",19/12/2013,FILED, +2013900023,Component and method for connecting a tank to a solar water heating assembly,"Finn, Warren","Finn, Warren",4/01/2013,LAPSED, +2013900097,Continuous Solar Thermal Home Power,naturise pty ltd,"Hudson, Geoffrey",14/01/2013,LAPSED, +2013900165,A SOLAR ROOF SHEET ASSEMBLY,Fielders Australia Pty Ltd,Not Given,18/01/2013,LAPSED, +2013900225,RAYS SOLAR FRESH WATER TENT AND SOLAR BALLOON FRESH WATER SOLUTION,"TURNER, ARTHUR RAYMOND","TURNER, ARTHUR RAYMOND",21/01/2013,LAPSED, +2013900250,Solar Tracking Skylight Cover with Storm Protection,"Gaeth, John Allan MR","Gaeth, John Allan",25/01/2013,LAPSED, +2013900261,A SOLAR PANEL KIT,Brown & Watson International Pty Ltd,Not Given,23/01/2013,LAPSED, +2013900310,Solar cell metallisation and interconnection method,NewSouth Innovations Pty Ltd,"Edwards, Matthew",31/01/2013,LAPSED, +2013900351,Solar cell metallisation and interconnection method,NewSouth Innovations Pty Ltd,"Edwards, Matthew; Hsiao, Pei-Chieh",4/02/2013,LAPSED, +2013900404,Solar energy pad,"de Varda, Joseph","de Varda, Joseph",8/02/2013,LAPSED, +2013900593,Solar Air Heating System with Special Design of Evacuated Tubes for Domestic and Commercial Use,"Pintar, Marko MR; Zheng, JingJing MS","Zheng, JingJing; Pintar, Marko",22/02/2013,LAPSED, +2013900594,Economical Solar Heater for Liquids,"Preda, Dorin MR","Preda, Dorin",22/02/2013,LAPSED, +2013900704,A monolithically integrated solar cell system,NewSouth Innovations Pty Limited,"CHAN, Catherine Emily; WENHAM, Stuart Ross; HALLAM, Brett Jason; WENHAM, Alison Maree",1/03/2013,LAPSED, +2013900882,Wind uplift protection for solar collector panels,OPTEX SOLAR PTY LTD,"Grochola, Gregory",14/03/2013,LAPSED, +2013900904,SOLAR ENERGY CONCENTRATORS,"Yeomans, Allan James MR","Yeomans, Allan James",15/03/2013,LAPSED, +2013900956,GL FLASH ROTARY SOLAR ENERGY GENERATOR,"Lyons, Mark Jack MR","Lyons, Geoffrey Hyman Louis",19/03/2013,LAPSED, +2013901111,EFFICIENT SOLAR POWER GENERATOR,Theodoma Limited,"Drysdale, Kenneth William Patterson",2/04/2013,LAPSED, +2013901232,COMBINED PHOTOVOLTAIC- THERMAL SOLAR COLLECTOR BASED ON ALUMINIUM HEAT PIPES FOR SOLAR HVAC.,"Elgart, Yakov","Rassamakin, Boris; Khairnasov, Sergii; Dusheiko, Michel; Rassamakin, Andrii; Frolov, Genadii; Elgart, Yakov",10/04/2013,LAPSED, +2013901255,An Effective and Economical Solar Air Heating System,"Pintar, Marko MR; Zheng, JingJing MS","Zheng, JingJing; Pintar, Marko",12/04/2013,LAPSED, +2013901854,A solar energy concentrator apparatus and method of designing,Intex Holdings Pty Ltd,"Davies, Roger Philip",23/05/2013,LAPSED, +2013901981,"A floating, deploy-able, remote, and autonomous water quality monitoring device. The device is placed in waterways or the ocean, and floats on the water giving position and speed (via GPS/GNSS), connectivity (via modem), and a range of water quality measurements (such as EC, temperature, turbidity). A camera may also be included to capture an image as the device floats along. The device runs on solar panels and/or batteries.",The FARMPOS Unit Trust,"Neale, Timothy",2/06/2013,LAPSED, +2013901991,Solar Roof Panel,BLUESCOPE STEEL LIMITED,Not Given,3/06/2013,LAPSED, +2013902157,A Tilting Energy Harnessing Rig,Solar Sailor Pty Ltd,"Dane, Robert",14/06/2013,LAPSED, +2013902206,Solar panel,Illumination Australia Pty Ltd,Not Given,18/06/2013,LAPSED, +2013902242,Solar still modules,First Green Park Pty Ltd,"Johnstone, Peter",20/06/2013,LAPSED, +2013902314,AN APPARATUS FOR COLLECTING SOLAR RADIATION,K-HART International Pty Ltd,"OBEYESEKERA, Bandu Ranjith Kumara; OBEYESEKERA, Tanya Garuthma",25/06/2013,LAPSED, +2013902529,Solar powered device,Illumination Australia Pty Ltd,Not Given,9/07/2013,LAPSED, +2013902552,Patent SC-MH (The Solar Cube for Micro-Grid Hub),"TANG, (Richard) Zhao Kun","TANG, Zhao Kun",5/07/2013,LAPSED, +2013902675,AN ELECTRICITY DISTRIBUTION SYSTEM AND METHOD,Share My Solar Pty Ltd,"KENNEDY, John Clare River Gerrard; BUNTER, Adrian Maxwell",18/07/2013,LAPSED, +2013902777,Solar Cell Apparatuses and Methods,Swinburne University of Technology,Not Given,26/07/2013,LAPSED, +2013902808,Solar energy collection apparatus and method of designing and/or orienting same,Intex Holdings Pty Ltd,"Davies, Roger Philip",29/07/2013,LAPSED, +2013902948,A HIGH EFFICIENCY STACKED SOLAR CELL,NewSouth Innovations Pty Limited,Not Given,6/08/2013,LAPSED, +2013903013,A PHOTOVOLTAIC SOLAR WATER HEATING SYSTEM,New England Solar Power Pty Ltd,Not Given,9/08/2013,LAPSED, +2013903058,(Solar) Rock Heater,"Humphries, Tony Alfred",Not Given,6/08/2013,LAPSED, +2013903059,"Generator of Solar to Steam, to house electricity","Humphries, Tony Alfred",Not Given,8/08/2013,LAPSED, +2013903141,Solar Panel Temperature Moderator System,ROGER C & MARIA A WEBB,"Webb, RC & MA",20/08/2013,LAPSED, +2013903186,Solar Weatherboard or Siding,ROGER C & MARIA A WEBB,"Webb, Roger & Maria",22/08/2013,LAPSED, +2013903194,ENERGY SUPPLY AND STORAGE SYSTEM FOR USE WITH SOLAR ENERGY COLLECTING APPARATUS,"Yeomans, Allan James MR","Yeomans, Allan James",23/08/2013,LAPSED, +2013903283,Improved solar still,First Green Park Pty Ltd,"Johnstone, Peter",29/08/2013,LAPSED, +2013903286,Solar Thermal /Photo Voltaic Energy Recovery Weatherboard Cladding,ROGER C & MARIA A WEBB,"Webb, Roger & Maria",29/08/2013,LAPSED, +2013903340,Reusable floating aquatic plant wastewater treatment system integrated with solar powered aeration/mixing device to create both aerobic and anaerobic environments for treatment,"REXSAS PTY. LIMITED; Wellington, Christopher MR","Wellington, Christopher",2/09/2013,LAPSED, +2013903534,SOLAR COLLECTORS,"Stanley, Rick MR","Stanley, Rick",13/09/2013,LAPSED, +2013903684,"A solar-charged waterproof shockproof mobile phone case for electronic device includes a solar collector configured to generate electrical energy when exposed to sunlight or light, a connector housed in the mobile case coupled to the solar collector and battery to provide a discharging electrical energy to a device that fits in the casing retains solar electrical energy to the device whilst in the case , In turn runs the device in a hybrid manner separate to its existing power supply. this case will also house the device to retain a waterproof and shockproof enviroment","McIntyre, Darren John MR","McIntyre, Darren John",24/09/2013,LAPSED, +2013903757,HEAT ENERGY STORAGE METHOD AND APPARATUS FOR USE WITH SOLAR ENERGY COLLECTING APPARATUS,"Yeomans, Allan James MR","Yeomans, Allan James",30/09/2013,LAPSED, +2013903807,A HYBRID SOLAR AND CHEMICAL LOOPING COMBUSTION SYSTEM,Adelaide Research & Innovation Pty Ltd,Not Given,2/10/2013,LAPSED, +2013903817,Solar Powered Pump,"Molloy, Anthony John","Molloy, Anthony John",3/10/2013,LAPSED, +2013903876,Solar Powered Direct Current Powered Pump Green Wall System Using Hydroponic Growing Principles and Featuring Removable Growing Trays and a Vacuum Water Feeding Device,LOWNDES LANDSCAPES PTY LTD,"Lowndes, Ian",8/10/2013,LAPSED, +2013903936,A circular Solar Cell for use in turf watering systems which is not prone to obstruction or breakage,"Thomas, Ian Richard MR","Thomas, Ian Richard",14/10/2013,LAPSED, +2013903944,Heat Dissipation Arrangement for Solar Tube Absorbers,Commonwealth Scientific and Industrial Research Organisation,"Benito, Regano; Too, Yen Soo; Duffy, Gregory; Edwards, James",14/10/2013,LAPSED, +2013904079,SOLAR PANEL RACKING ARRAY,Powerak Pty Ltd,"CAP, George Jaroslav",23/10/2013,LAPSED, +2013904098,A solar tracking assembly,Meccanica Pty Ltd,Not Given,24/10/2013,LAPSED, +2013904236,A NEW METHOD OF HARNESSING SOLAR ENERGY VIA THE MANUFACTURE OF NEUTRINO CYCLONES AND PRODUCTION OF HYDROGEN GAS,"HINCKFUSS, DOUGLAS ALBERT","HINCKFUSS, DOUGLAS ALBERT",30/10/2013,LAPSED, +2013904327,Air to water domestic heat pump hot water system with integrated double wall vented heat exchanger.,AQUATECH SOLAR TECHNOLOGIES PTY LTD,"Baird, Simon Richard",8/11/2013,LAPSED, +2013904374,A SOLAR CONCENTRATOR HAVING A TRANSVERSE COMPRESSION STAGE FOLLOWED BY A FOCUSSING STAGE ABOUT A PERPENDICULAR TRANSVERSE DIRECTION,Zodan Pty Ltd,"Hilton, John Allen",12/11/2013,LAPSED, +2013904461,Solar thermal collector,"Patford, Laurie",Not Given,19/11/2013,LAPSED, +2013904551,Solar concentrator,The University of Melbourne,Not Given,26/11/2013,LAPSED, +2013904647,A METHOD OF FABRICATING AN EJECTOR FOR A SOLAR ENERGY SYSTEM,Endless Solar Corporation Ltd,Not Given,29/11/2013,LAPSED, +2013904776,Solar Energy Charging Device in the form of a Cap,"Thomas, Maximilian MR","Thomas, Maximilian",9/12/2013,LAPSED, +2013904950,Modular Unit For Attachment To A Solar Panel,"Webb, Maria; Webb, Roger","Webb, Roger; Webb, Maria",18/12/2013,LAPSED, +2013904994,A solar array assembly,Laing O'Rourke Australia Pty Ltd,"Lee, Peter Henry",20/12/2013,LAPSED, +2013905039,SOLAR POWERED ELECTRICAL DEVICE TRAILER,Joshmika Pty Ltd,"Fry, Ian",23/12/2013,LAPSED, +2014100104,Create a Solar panel comparison website. Solar panel providers/installers will be advertised very similar to an insurance comparison website. The website will feature information and an easy step by step guide on informing the customer what type of system they may need i.e. panels and inverter Specials and deals can be advertised on the site by partnering solar panel companies. A range of quotes could be accumulated from companies and a quote could be given just by answering a few online questions. User friendly website that's interactive and also informative.,"Schwab, William MR","Schwab, William",5/02/2014,LAPSED, +2014100354,Combined Photovoltaic-Thermal Solar Collector,"Dusheiko, Mykhailo; Elgart, Yakov; Frolov, Gennady; Khairnasov, Sergii; Rassamakin, Andrii; Rassamakin, Boris","Elgart, Yakov; Rassamakin, Boris; Khairnasov, Sergii; Dusheiko, Mykhailo; Rassamakin, Andrii; Frolov, Gennady",10/04/2014,GRANTED, +2014100385,Battery Solar Storage Controller,"Tucker, Tristan MR","Tucker, Tristan",16/04/2014,CEASED, +2014100469,Hybrid Solar Backup/Grid and Off Grid Uninterrupted Power Supply (UPS),"Cufone, Roger MR; FREE RENEWABLE ENERGY ENTERPRISES PTY LTD","Cufone, Roger",8/05/2014,LAPSED, +2014100657,"Solar Energy Simulator A 'simulation based' Solar, Wind and Battery System simulator and performance predictor web application.","Flatow, Wolfgang MR","Flatow, Wolfgang",16/06/2014,GRANTED, +2014100676,A solar paint sprayer,"Tongxiang City Aopeiou Garments Co., Ltd.","XU, JING",18/06/2014,GRANTED, +2014100773,Solar panel securing device,"Xiamen Hopergy Photovoltaic Technology Co., Ltd","Jiang, Liping",7/07/2014,GRANTED, +2014100975,SOLAR POWERED OUTDOOR LIGHTING DEVICE,Sun-Wizard Holding Pty Ltd,"Fry, Ian; McCleary, Richard",25/08/2014,CERTIFIED, +2014101078,"Hybrid Solar Uninterrupted Power Supply and Off Grid Inverter, adaptable to most existing grid interactive solar systems.",FREE RENEWABLE ENERGY ENTERPRISES PTY LTD,"Cufone, Roger",5/09/2014,GRANTED, +2014101095,Solar thermal air flow heating tube device and solar thermal air flow heating tube system,"Pintar, Marko MR; Zheng, JingJing MS","Pintar, Marko; Zheng, JingJing",10/04/2014,GRANTED, +2014101175,Equal Access BBQ,Cosmos Solar Pty Ltd,"Hurley, Peter; Singh, Jaswinder",23/09/2014,GRANTED, +2014101189,Solid State Light,Solar Bright Limited,"Martin, Patrick John",29/09/2014,GRANTED, +2014101231,A SYSTEM FOR ALERTING A PERSON OR PERSONS OF A PUBLIC TRANSPORT HAZARD,Solar Bright Limited,"Martin, Patrick John",7/10/2014,GRANTED, +2014101380,SC-MH (The solar cube for micro-grid hub),"TANG, Richard Zhao Kun Mr","TANG, (Richard) Zhao Kun",14/11/2014,GRANTED, +2014101402,A METHOD OF FABRICATING AN EJECTOR FOR A SOLAR ENERGY SYSTEM,Endless Solar Corporation Ltd,"DENNIS, MICHAEL",26/11/2014,GRANTED, +2014101528,AWS SunnyMate is a device used to divert excess solar or wind power that is usually fed into the public grid and use this excess power to heat hot water.,"Falzon, Adam MR","Falzon, Adam",29/12/2014,LAPSED, +2014101550,Solar integrated photoelectric photo-thermal component and solar cogeneration system thereof,"Nantong Xingyun Energy Technology Co.,Ltd.","Zhang, Xingxing; Xu, Ying; Xu, Jihuan",10/06/2014,GRANTED, +2014200011,TROUGH COLLECTOR FOR A SOLAR POWER PLANT,Airlight Energy IP SA,"Pedretti, Andrea",2/01/2014,FILED, +2014200067,A SOLAR PANEL KIT,Brown & Watson International Pty Ltd,"Lee, Sheridan; Banks, Jo; Davies, George",7/01/2014,FILED, +2014200179,A method for processing elongate substrates and a substrate securing apparatus,The Australian National University,"Blakers, Andrew William; Weber, Klaus Johannes; Everett, Vernie Allan",13/01/2014,LAPSED, +2014201662,SOLAR BATTERY-DRIVEN OBJECT DETECTION SYSTEM,"Optex Co., Ltd","Makino, Hiroshi; Hayashide, Koji; Kurata, Mataichi; Ikeda, Hiroyuki",19/03/2014,FILED, +2014202024,Solar thermal air flow heating tube device and solar thermal air flow heating tube system,"Pintar, Marko MR; Zheng, JingJing MS","Pintar, Marko; Zheng, JingJing",10/04/2014,CONVERTED, +2014202942,"SOLAR HEAT COLLECTOR, SOLAR HEAT COLLECTING MULTILAYER SHEET, AND SOLAR HEAT HEATER",Nitto Denko Corporation,"MINE, Keita; OHMORI, Yutaka",30/05/2014,FILED, +2014203921,Systems and methods for selectively producing steam from solar collectors and heaters for processes including enhanced oil recovery,"Glasspoint Solar, Inc.","O'Donnell, John Setel; Von Behrens, Peter Emery; Nady, Andras; Heisler, Stuart M.",6/01/2014,GRANTED, +2014204438,Solar heat collector for heating a circulating fluid and process for manufacturing a solar heat collector,Urs FURTER,"FURTER, Urs",16/07/2014,FILED, +2014204746,Cooling system and method for photovoltaic solar panels,"Fernandez De Cordoba Sanz, Fernando","Fernandez De Cordoba Sanz, Fernando",9/01/2014,FILED, +2014207369,Applications of non-intrusive load monitoring and solar energy disaggregation,Bidgely Inc.,"Gupta, Abhay; Garud, Vivek; Mohan, Rahul; Cheng, Hsien-Ting; He, Ye",20/01/2014,FILED, +2014207468,Mechanism for cleaning solar collector surfaces,SunPower Corporation,"Grossman, Marc; Jeanty, Cedric",16/01/2014,FILED, +2014208227,Multi-level solar cell metallization,"Solexel, Inc.","Moslehi, Mehrdad M.; Kapur, Pawan; Kramer, Karl-Josef; Rana, Virenda V.; Seutter, Sean; Deshpande, Anand; Calcaterra, Anthony; Olsen, Gerry; Manteghi, Kamran; Stalcap, Thom; Kamian, George D.; Wang, David Xuan-Qi; Su, Yen-Sheng; Wingert, Michael",30/07/2014,FILED, +2014210668,LINEAR FRESNEL SOLAR ARRAYS AND COMPONENTS THEREFOR,"Areva Solar, Inc.","Mills, David R.; Johnson, Peter L.; Schramek, Phillipp; Degraafe, David B.; Hoermann, Alexander; Johnson, Lars R.",11/08/2014,FILED, +2014212233,Composite roof systems and methods of installation,"Beall, Jerry; Bradenburg, Frank; Seaman Corporation; Solar, Dennis M.","Bradenburg, Frank; Solar, Dennis M.; Beall, Jerry",31/01/2014,FILED, +2014213748,"Tracking photovoltaic solar system, and methods for installing or for using such tracking photovoltaic solar system","HeliosLite; Menard, Etienne","Menard, Etienne",5/02/2014,FILED, +2014214382,"Solar energy automatic soaking and heat-collecting tube, trough-type assembly, and heat power generating system and technique","Zhongying Changjiang International New Energy Investment Co., Ltd.","Chen, Yilong; Yang, Qingping; Zhang, Yanfeng",27/01/2014,FILED, +2014216902,Solar tracking concentrator,"Byunggyun, Kim","Kim, Byunggyun",9/01/2014,FILED, +2014217830,Solar control glazing,AGC Glass Europe,"Mahieu, Stijn; Dusoulier, Laurent",14/02/2014,FILED, +2014218426,A solar array assembly,Laing O'Rourke Australia Pty Ltd,"Lee, Peter Henry",28/08/2014,FILED, +2014220499,A mobile solar power plant,Renovagen Ltd,"Hingley, John",20/02/2014,FILED, +2014221242,HIGH-EFFICIENCY SOLAR CELL STRUCTURES AND METHODS OF MANUFACTURE,"Tetrasun, Inc","Wittman, Oliver; Deceuster, Denis",4/09/2014,GRANTED, +2014221251,Device for supporting a solar panel,Doble Telescopic Lighting Pty Ltd,"Doble, Simon",5/09/2014,FILED, +2014221298,Photo Control Circuit and method for control of a load from two input sources. The two input sources are Grid supplied power and Solar supplied power.,"Wilson, Kevin","Wilson, Kevin",9/09/2014,FILED, +2014223074,An improved solar unit assembly and a method for constructing such an assembly,Alpha-E ApS,"Nielsen, Stig Kejser",24/02/2014,FILED, +2014224159,METHOD AND ARRANGEMENT FOR CONTROLLING A SOLAR POWERED PUMP,ABB Technology Oy,"SYED, Ahmed; PATANGE, Chetan; PANDEY, Deepak; SHENOY, Laxmikantha; LAMMI, Mikko; RAJ, Rahul; RN, Satyan",15/09/2014,GRANTED, +2014226834,Solar panel and timepiece including solar panel,"Casio Computer Co., Ltd.","Saito, Yuta",3/03/2014,FILED, +2014227436,SC-MH (The solar cube for micro-grid hub),"Tang, Richard Z K","Tang, Richard Z.K.",3/07/2014,LAPSED, +2014227635,Integrated solar panel,SunCulture Solar Inc.,"Estes, Christopher",14/03/2014,FILED, +2014233487,Conductivity enhancement of solar cells,SunPower Corporation,"Zhu, Xi",14/03/2014,FILED, +2014233535,Reduced contact resistance and improved lifetime of solar cells,SunPower Corporation,"Zhu, Xi",14/03/2014,FILED, +2014233849,Perylenemonoimide and naphthalenemonoimide derivatives and their use in dye-sensitized solar cells,BASF SE; Max-Planck-Gesellschaft zur Forderung der Wissenschaften E.V.,"Wonneberger, Henrike; Pschirer, Neil Gregory; Benedito, Flavio Luiz; Bruder, Ingmar; Send, Robert; Zagranyarski, Yulian; Li, Chen; Mullen, Klaus; Chen, Long; Skabeev, Artem Nikolaevich",12/03/2014,FILED, +2014233871,Solar collector plant with thermal storage,Stellenbosch University,"Heller, Lukas",17/03/2014,FILED, +2014235104,Solar drive control system for oil pump jacks,"Graybill, Kavan","Graybill, Kavan",13/03/2014,FILED, +2014236652,Methods for improving solar cell lifetime and efficiency,SunPower Corporation,"Westerberg, Staffan; Vicente, Florito Dennis; Cudzinovic, Michael; Tomada, Princess Carmi; Guiao, Jemellee",13/03/2014,FILED, +2014236707,Support for solar energy collection,SunPower Corporation,"Ripoll Agullo, Vicent",13/03/2014,FILED, +2014238823,Solar heat collection system,"Mitsubishi Hitachi Power Systems, Ltd.","Shinozaki, Kohei; Marumoto, Takahiro; Shikata, Tetsuo",5/03/2014,FILED, +2014240305,Swimming pool solar air heating jet venturi,"WANLESS, SCOTT ROSS MR","WANLESS, SCOTT ROSS",3/10/2014,FILED, +2014246591,A NEW METHOD OF HARNESSING SOLAR ENERGY AND OTHER SOURCES OF HIGH NEUTRINO FLUX VIA THE MANUFACTURE OF NEUTRINO CYCLONES AND PRODUCTION OF HYDROGEN GAS,"Hinckfuss, Douglas Albert MR","Hinckfuss, Douglas Albert",10/10/2014,FILED, +2014246775,In-line heated solar thermal storage collector,TIGI LTD.,"Klier, Shimon; Adel, Michael",2/04/2014,FILED, +2014246778,Concentrating central solar receiver,Stellenbosch University,"Kroger, Detlev Gustav",2/04/2014,FILED, +2014249518,Translucent plastic solar thermal collector,"Helios Products, LLC","Luftglass, Murray A.; Dahm, Kevin D.; Gunheim, Clayton C.; Taschek, Louis",7/03/2014,FILED, +2014250780,Solar collector comprising an opaque cover,Sunplate Corporation,"Prutsman, Jeffrey D.; Prutsman, John D.",14/04/2014,FILED, +2014259104,Device for the solar thermal gasification of starting material containing carbon,Holcim Technology Ltd,"Von Zedtwitz, Peter; Wieckert, Christina; Obrist, Albert; Voramwald, Werner",15/04/2014,FILED, +2014261039,System of secondary reflectors with high level of efficiency for storage and use of energy from a solar source,Magaldi Industrie S.r.l.,"Magaldi, Mario",2/05/2014,FILED, +2014264719,Organic-inorganic perovskite based solar cell,Greatcell Solar S.A.,"Qin, Peng; Nazeeruddin, Mohammad Khaja; Cai, Zhihong; Graetzel, Michael",5/05/2014,FILED, +2014265033,TRANSPIRED SOLAR COLLECTOR CHIMNEY TOWER,Hollick Solar Systems Limited,"Hollick, John C.; Eryener, Dogan",19/11/2014,FILED, +2014265905,Single axis solar tracking system,"Array Technologies Patent Holding Co., LLC","Corio, Ronald P.",11/04/2014,FILED, +2014271196,Solar energy collection apparatus and design method,Intex Holdings Pty Ltd,"Davies, Roger Philip",23/05/2014,FILED, +2014272817,Regenerating and/or preventing defects in a solar panel installation,Futech,"Ben-Al-Lal, Ismael; Vangeel, Pieter",21/01/2014,FILED, +2014273409,Solar panel having fire protection,BASF SE,"Bohlander, Ralf",16/05/2014,FILED, +2014274557,An apparatus for collecting solar radiation,K-Hart International Pty Ltd.,"Obeyesekera, Bandu Ranjith Kumara; Obeyesekera, Tanya Garuthma",25/06/2014,ACCEPTED, +2014277610,Solar roof panel,BlueScope Steel Limited,"Ryan, Brad; Clayton, Trevor; Adams, Jamie; Tannahill, Vincent; Klees, Robert",3/06/2014,FILED, +2014279389,"Coating liquid for suppressing deterioration of solar cell, thin film of same, and method for suppressing deterioration of solar cell","Shin-Etsu Chemical Co., Ltd.","Inoue, Tomohiro; Furudate, Manabu; Eguchi, Yoshitsugu; Kobayashi, Takashi",23/05/2014,FILED, +2014283908,"Integrated solar energy drying system collecting, storing and supplying heat","Zhongying Changjiang International New Energy Investment Co., Ltd","Chen, Yilong; Hu, Shuchuan; Zhang, Yanfeng",17/06/2014,FILED, +2014284257,Novel solar autoclave equipment,"Liu, Kai","Liu, Kai",11/02/2014,FILED, +2014286981,Photovoltaic-thermal solar energy collection system with energy storage,"Cogenra Solar, Inc.","Almogy, Gilad; Morad, Ratson; Goodyear, Matthew Dean; Thothadri, Mani",11/07/2014,FILED, +2014289320,Solar collector arrangement,Innovative Motion GmbH,"Leberer, Thomas",8/07/2014,FILED, +2014292323,Solar light management,BASF SE,"Hafner, Andreas; Von Muhlenen, Adrian; Enger, Olivier; Gallinet, Benjamin; Ferrini, Rolando; Marjanovic, Nenad; Stalder, Martin; Basset, Guillaume; Luetolf, Fabian",8/07/2014,FILED, +2014292817,An electricity distribution system and method,Share My Solar Pty Ltd,"Kennedy, John Clare River Gerrard; Bunter, Adrian Maxwell",18/07/2014,FILED, +2014295050,"Method for producing a solar cell, in particular a silicon thin-film solar cell",Lilas GmbH,"Lissotschenko, Vitalij",23/07/2014,FILED, +2014296839,Solar panel mounting system,"IronRidge, Inc.","Patton, John C.; Lindstrom, Todd; Hafter, Eric",10/04/2014,FILED, +2014298329,Three-dimensional thermal or photovoltaic solar panel with integral holograph,"Instituto Holografico Terrasun, S.L.","Calo Lopez, Antonio; Villamarin Villegas, Ayalid Mirlydeth; Rodriguez San Segundo, Hugo Jose",1/08/2014,FILED, +2014301013,Solar protection glazing,AGC Glass Europe,"Mahieu, Stijn; Di Stefano, Gaetan; Hauptmann, Marc; Dumont, Jacques",27/06/2014,FILED, +2014302421,Biochemical energy conversion cell,Bugsy Solar LLC,"Stein, Emily A.",25/06/2014,FILED, +2014305651,Storage of solar energy,Raygen Resources Pty Ltd,"Lasich, John Beavis",7/08/2014,FILED, +2014306944,Solar cell module with high electric susceptibility layer,SunPower Corporation,"Shen, Yu-Chen; Hasselbrink Jr., Ernest; Kavulak, David F. J.",6/08/2014,FILED, +2014307879,Radial p-n junction nanowire solar cells,Norwegian University of Science and Technology,"Lim, Cheng Guan; Weman, Helge",14/08/2014,FILED, +2014309279,Interconnection of solar cells in a solar cell module,SunPower Corporation,"Rim, Seung; Kim, Sung Dug",7/08/2014,FILED, +2014310681,Compounds with terminal heteroarylcyanovinylene groups and their use in organic solar cells,BASF SE,"Sundarraj, Sudhakar; Eickhoff, Christian; Bahulayan, Sheeja; Send, Robert; Nishimae, Yuichi; Reichelt, Helmut; Tanabe, Junichi; Erk, Peter",14/08/2014,FILED, +2014310684,New absorber for organic heterojunction solar cells,BASF SE,"Tanabe, Junichi; Nishimae, Yuichi; Eickhoff, Christian; Erk, Peter; Sens, Rudiger; Send, Robert; Sundarraj, Sudhakar",14/08/2014,FILED, +2014310698,"Photocell, in particular solar cell and method for producing a photocell",NTS Nano TechnologySolar,"Lupaca-Schomber, Jaime; Lupaca-Schomber, Ricardo; Merlein, Joerg Andreas",14/08/2014,FILED, +2014311982,Descent control and energy recovery system for solar panel cleaning system,ECOPPIA SCIENTIFIC LIMITED,"Meller, Moshe; Meller, Eran",9/10/2014,FILED, +2014315406,Systems and methods of generating energy from solar radiation,"Combined Power LLC, dba Hyperlight Energy","King, John D. H.; Kramer, Nicholas A.; Tang, Erik E.; Olsen, Kristofer J.",3/09/2014,FILED, +2014315746,A method for manufacturing a ceramic roof tile provided with a solar panel,ZEP B.V.,"Cornelissen, Johan",8/09/2014,FILED, +2014315995,Solar panel and timepiece including solar panel,"Casio Computer Co., Ltd.","Saito, Yuta",2/09/2014,FILED, +2014317380,Method and device for preventing drying in a boiler of a tower solar concentration plant,Cockerill Maintenance & Ingenierie S.A.,"Dethier, Alfred",18/08/2014,FILED, +2014317914,Localized solar collectors,Massachusetts Institute of Technology,"Ghasemi, Hadi; Marconnet, Amy Marie; Chen, Gang; Ni, George Wei",6/09/2014,FILED, +2014324609,LED-based solar simulator system and method of use,Newport Corporation,"Switzer, Gregory W.; McFarland, Todd A.; Buczala, Robert K.; Rishel, Paul E.; Kuntz, Eugene",27/09/2014,FILED, +2014327036,Metallization of solar cells using metal foils,SunPower Corporation,"Pass, Thomas",22/09/2014,FILED, +2014334804,Biased pawl ratcheting wrench,"IDEAL Industries, Inc.","Solar, Brenton Michael; Stanley, Mark Robert",8/10/2014,FILED, +2014337277,Solar powered sample analyzing system using a field deployed analytical instrumentation and vacuum jacketed small diameter tubing,Mustang Sampling LLC,"Thompson, Kenneth O.; Rolston, Claude A.; Querrey, Timothy; Cook, Charles F.",16/10/2014,FILED, +2014345935,"Reflector for solar thermal systems, and method for producing such a reflector",ThyssenKrupp Steel Europe AG; Thyssenkrupp Rasselstein GmbH,"Schuhmacher, Bernd; Kopplin, Karl-Heinz; Hohn, Winfried; Patberg, Lothar; Hirt, Mark; Drewes, Stephan",7/11/2014,FILED, +2014348297,Solar energy disaggregation techniques for whole-house energy consumption data,Bidgely Inc.,"Mohan, Rahul; Hsien-Teng, Cheng; Gupta, Abhay; He, Ye; Garud, Vivek",17/11/2014,WITHDRAWN, +2014348992,"Solar collection assembly, system, and method","Asm Ip Holdings, LLC","Sanese, Christopher N.",7/11/2014,FILED, +2014352534,Solar integrated photoelectric photo-thermal component and solar cogeneration system thereof,"Nantong Xingyun Energy Technology Co.,Ltd.","Zhang, Xingxing; Xu, Ying; Xu, Jihuan",10/06/2014,CONVERTED, +2014354911,Perovskite and other solar cell materials,"Hunt Energy Enterprises, L.L.C.","Irwin, Michael D.; Chute, Jerred A.",24/11/2014,FILED, +2014355297,Dye-sensitized solar cell,"Ricoh Company, Ltd.","Horiuchi, Tamotsu; Yashiro, Tohru; Segawa, Hiroshi; Uchida, Satoshi",26/11/2014,FILED, +2014364086,Solar cell emitter region fabrication using ion implantation,SunPower Corporation,"Weidman, Timothy; Smith, David D.",8/12/2014,FILED, +2014366256,Solar cell emitter region fabrication with differentiated P-type and N-type region architectures,SunPower Corporation,"Rim, Seung Bum; Smith, David D.; Qiu, Taiqing; Westerberg, Staffan; Tracy, Kieran Mark; Balu, Venkatasubramani",12/12/2014,FILED, +2014369801,Solar vehicle-borne air-conditioning system,"Shanghai Ying Ta Aircondition Enterprise Co., Ltd","Guo, Jincai",4/12/2014,FILED, +2014370205,Improved clamps for solar systems,SunPower Corporation,"Braunstein, Ryan; Kinyon, Zachary; Carre, Guillaume; Matrat, David",15/12/2014,FILED, +2014373642,Vehicle-borne solar cold storage system,"Shanghai Ying Ta Aircondition Enterprise Co., Ltd","Guo, Jincai",26/11/2014,FILED, +2014374232,Sun tracking solar power system hardware and method of assembly,SunPower Corporation,"Wares, Brian S.; Grushkowitz, Tyler; McKibben, Nicholas",16/12/2014,FILED, +2014386719,Mobile device for converting solar energy to electricity,Go2Net Poland Sp. z o.o.,"Prypin, Jacek; Korczak, Ewelina",30/10/2014,FILED, +2014386736,Light weight molded roof tile with integrated solar capabilities,"EternaTile, Inc.","Bellavia, Carmen",25/07/2014,FILED, +2014900009,Solar panel racking array,Powerak Pty Ltd,"CAP, George Jaroslav",2/01/2014,LAPSED, +2014900145,"Continuous Lighting tube with a male connector at one end and female connector at the opposing end, the lighting tube will have a continues power supply from one end of the lighting tube to the other end enabling the coupling of two or more lighting tubes in series.",COMMERCIAL SOLAR GROUP PTY LTD,"Wilson, Darrell; Klein, Bradley",17/01/2014,LAPSED, +2014900172,Controllable Fast Acting High Duty Cycle Nitinol V4 with battery boiler and solar engine,"Li, Zhonghua Li MR","Li, Zhonghua Li",20/01/2014,LAPSED, +2014900183,"This is a system for illuminating the edge of a driveway or path, where the edge is not clearly visible when ambient light is low. The system is comprised of a solar panel and battery, along with a charging controller for the battery, and control circuitry for the lights, and a light strip and reflection/diffusion system.","Bird, WO1 Oliver Edwin","Bird, Oliver Edwin",21/01/2014,LAPSED, +2014900287,Solar Energy Collection Apparatus Incorporating Passive Tracking,Intex Holdings Pty Ltd,"Davies, Roger Philip",31/01/2014,LAPSED, +2014900334,A SOLAR LIGHTING SYSTEM,Ellumination Pty Ltd,"AZZOPARDI, Robert; AZZOPARDI, Michael",5/02/2014,LAPSED, +2014900380,Solar cell fabrication,The Australian National University,"Zin, Ngwe",7/02/2014,LAPSED, +2014900592,Roof sheeting adapted to accommodate solar panels,WEEKS HOLDINGS PTY LTD,"Weeks, Matthew",24/02/2014,LAPSED, +2014900630,METHOD OF FORMING A PHOTOACTIVE LAYER OF A PEROVSKITE SOLAR CELL,Commonwealth Scientific and Industrial Research Organisation,"Vak, Doojin",26/02/2014,LAPSED, +2014900765,Solar Panel Pole Mounting System,Ecocool Pty Ltd,"Myatt, Craig",6/03/2014,LAPSED, +2014900820,AN APPARATUS FOR COLLECTING SOLAR RADIATION,K-HART International Pty Ltd,"OBEYESEKERA, Bandu Ranjith Kumara; OBEYESEKERA, Tanya Garuthma",11/03/2014,LAPSED, +2014900848,Novel Solar Tracking System,SOLAR SURE PTY. LTD.,"Shaw, Ian",12/03/2014,LAPSED, +2014900910,Improved precipitation process for producing perovskite-based solar cells,Monash University,"Cheng, Yi-Bing; Bach, Udo; Spiccia, Leone; Huang, Fuzhi; Xiao, Manda",17/03/2014,LAPSED, +2014900948,SOLAR ENERGY CONCENTRATORS,"Yeomans, Allan James Mr","Yeomans, Allan James",18/03/2014,LAPSED, +2014901108,Apparatus and Method for Heliostat Support,VAST SOLAR PTY. LTD.,"Fisher, James",28/03/2014,LAPSED, +2014901204,A solar array assembly,Laing O'Rourke Australia Pty Ltd,"Lee, Peter Henry",3/04/2014,LAPSED, +2014901217,Method of designing a concentrated solar cavity receiver,Commonwealth Scientific and Industrial Research Organisation,"Burton, Alexander Ian; McNaughton, Robbie Kim",4/04/2014,LAPSED, +2014901371,Solar powered vehicle mounted flashing lights and arrow boards,AUTOCHANGE PTY LTD,"Wilson, Curtis",15/04/2014,LAPSED, +2014901479,Economical Solar Heater for Liquids,"Preda, Dorin MR","Preda, Dorin",23/04/2014,LAPSED, +2014901505,Pool Solar hot air injector,"WANLESS, SCOTT ROSS MR","WANLESS, SCOTT ROSS",25/04/2014,LAPSED, +2014901538,Solar and Battery Charged Insect Repeller,"Larkin, Garry John","Larkin, Garry John",29/04/2014,LAPSED, +2014901579,Gas-cooled concentrating solar collector,Sunoba Pty Ltd,"Barton, Noel Geoffrey",1/05/2014,LAPSED, +2014901814,SOLAR PANEL RACKING ARRAY,powerak Pty Ltd,"CAP, george; Fries, Bill",16/05/2014,LAPSED, +2014901965,Solar Concentrating Dish,"Cameron, Michael John, Vernon MR","Cameron, Michael John, Vernon",25/05/2014,LAPSED, +2014902022,Solar Power Limiter,"Devitt, Christopher MR","Devitt, Christopher",28/05/2014,LAPSED, +2014902224,Solar Fault Detect and Finder,"Davies, Kevin",Not Given,5/06/2014,LAPSED, +2014902230,Improvements in Capture and Re-use of Carbon Dioxide and use of Solar Energy,D U T PTY LTD,"Cummings, Donald Ray",12/06/2014,LAPSED, +2014902349,A Tilting Energy Harnessing Rig,Solar Sailor Pty Ltd,"Dane, Robert",19/06/2014,LAPSED, +2014902401,Green House Solar Panel,"Deroko, Darko MR","Deroko, Darko",24/06/2014,LAPSED, +2014902594,Hybrid Solar Collector,"Trihey, Albert Massey MR","Trihey, Albert Massey; Trihey, John Massey",6/07/2014,LAPSED, +2014902600,Hybrid Solar Collector 2,"Trihey, Albert Massey","Trihey, Albert Massey; Trihey, John Massey",6/07/2014,LAPSED, +2014902619,A fluid injection system,Heat Trap Solar Pty Ltd,Not Given,7/07/2014,LAPSED, +2014902705,Simulating a Solar Photovoltaic Cell,Solimpeks Australia Pty Ltd,"Ghani, Faisal",14/07/2014,LAPSED, +2014902741,APPARATUS AND SYSTEMS FOR SOLAR PUMPING AND WATER PURIFICATION,"Powell, Trevor","Powell, Trevor",16/07/2014,LAPSED, +2014902755,"Solaclad is a nanotechnology based solar energy system opaque, translucent or transparent, surface applied or integral suitable for a wide range of applications including all built environment surfaces.",SOLACLAD PTY LTD,"Fox, Michael",17/07/2014,LAPSED, +2014902998,"Energy storage sizing tool The 360Storage sizing tool is software device that is web based and does detailed analysis of inputs from an operator, and foundation assumptions which enables the definition of components required to perform the required outcomes defined by a customer for a suitable energy storage system using solar energy as the input energy source. It then provides analysis of the expected performance of that energy storage system based on irradiance levels of a point close to the customers location and a cost benefit analysis based on inputs from the customers electricity bill.",Solar360 Pty Ltd,"Anthony, Michael",4/08/2014,LAPSED, +2014903141,A PHOTOVOLTAIC SOLAR WATER HEATING SYSTEM,New England Solar Power Pty Ltd,Not Given,12/08/2014,LAPSED, +2014903178,Improved solar concentrator B,SOLAR SURE PTY. LTD.,"shaw, ian henry",14/08/2014,WITHDRAWN, +2014903203,A stroke length adjustable pump system and a multiplexed pump system for chemical injection,Solar Injection Australia,"Stent, Colin; Stent, Adam",18/08/2014,LAPSED, +2014903379,An Integral Collector-Storage Solar Water Heater and Associated Evaporation and Temperature Limiter,Sunspin Pty Ltd,"Suehrcke, Harry; Lowe, Rodney William",26/08/2014,LAPSED, +2014903384,ENERGY SUPPLY AND STORAGE SYSTEMS FOR USE WITH SOLAR ENERGY COLLECTING APPARATUS,"Yeomans, Allan James MR","Yeomans, Allan James",27/08/2014,LAPSED, +2014903494,Hybrid Solar Collector,"Trihey, Albert Massey","Trihey, Albert Massey; Trihey, John Massey",2/09/2014,LAPSED, +2014903669,SOLAR COLLECTORS,"Stanley, Rick MR","Stanley, Rick",15/09/2014,LAPSED, +2014903752,Opening Rigid Flat Panel Sail,Solar Sailor Pty Ltd,"Dane, Robert; Mathew, Ninan",19/09/2014,LAPSED, +2014903754,Solar Power System,Mabo Pty. Ltd.,"Tournier, Michael; Falvo, Tony",19/09/2014,LAPSED, +2014903938,HEAT ENERGY STORAGE METHOD AND APPARATUS FOR SOLAR ENERGY COLLECTING APPARATUS,"Yeomans, Allan James Mr","Yeomans, Allan James",2/10/2014,LAPSED, +2014903954,Solar Photovoltaic Array,5B AUSTRALIA PRT LIMITED,"Tehan, Eden; McGrath, Christopher",3/10/2014,LAPSED, +2014904077,Solar energy optimised air cooling systems,"Hastings, Ross","Hastings, Ross",13/10/2014,LAPSED, +2014904092,Solar Pack Shed,"Feldmann, Nharyan MR","Feldmann, Nharyan",14/10/2014,LAPSED, +2014904229,Solar Pedelec Tricycle Electric Vehicle.,"Brook, Sapoty MR","Brook, Sapoty",22/10/2014,LAPSED, +2014904638,SC - SPAA Solar Cell of Similar Particle Accelerator Architecture,"TANG, Richard Zhao Kun Mr","TANG, (Richard) Zhao Kun",14/11/2014,LAPSED, +2014904663,Solar thermal collector,"Patford, Laurie",Not Given,20/11/2014,LAPSED, +2014904711,MULTIPLE-EFFECT DISTILLATION APPARATUS AND SYSTEM,Solar Blue Innovations Pty Ltd,Not Given,21/11/2014,LAPSED, +2014904779,Solar tower structure and method of construction,"University of Technology, Sydney","Peterseim, Juergen Heinz Martin",26/11/2014,LAPSED, +2014905147,REFLECTOR ASSEMBLY FOR A SOLAR COLLECTOR,"POWELL, Trevor","POWELL, Trevor",19/12/2014,LAPSED, +2015100062,"Vast volumes of plastic and other floating trash are accumulating in various locations in our lakes, rivers and oceans. The inventor has conceived a method of solving the problem that involves Solar Powered Robotic Barges that perpetually travel between these trash gyres and trash processing ports. The concept includes Solar powering of the barges engines, controls, communications and auto pilot. The barge is completely automated. The barge is powered by Solar.This invention provides the base and housing for the Solar Energy Systems, Electric Propulsion Systems and Robotic Control systems.","Flatow, Wolfgang MR","Flatow, Wolfgang",21/01/2015,GRANTED, +2015100401,Solar Line Aviation Safety Light,The Trustee for FLORANCE FAMILY TRUST,"Florance, Jeffrey Alan",30/03/2015,CEASED, +2015100405,APPARATUS AND METHOD FOR HELIOSTAT SUPPORT,VAST SOLAR PTY LIMITED,"Fisher, James",30/03/2015,GRANTED, +2015100586,Inflatable solar powered lamp,"MPOWERD, Inc.","Snyder, Jason Alan",1/05/2015,CERTIFIED, +2015100825,"Solar powered, air operated automatic blowpipe for pest animal eradication. Using a 12v battery hooked up to a solar panel, it will dispense a blowpipe syringe of 1080 or PAPP remotely into a feral animal. The Sentinel is viewed from a control room through a FLIR camera mountedd on a tripod with 1m blowpipe.","Ryan, Patrick Joseph","Ryan, Patrick Joseph",19/06/2015,LAPSED, +2015100991,Solar conversion kit,KLICK Pty Ltd,"Doble, Simon; Marum, Colm",24/07/2015,GRANTED, +2015101110,AN ELECTRICITY DISTRIBUTION SYSTEM AND METHOD,Share My Solar Pty Ltd,"Kennedy, John Clare River Gerrard; Bunter, Adrian Maxwell",14/08/2015,CEASED, +2015101208,Floating flexible solar cells,"Macdonald, John Andrew MR","Macdonald, John Andrew",1/09/2015,GRANTED, +2015101242,SOLAR LAMP INTEGRATED WITH AUDIO PLAYBACK DEVICE,"ZHUHAI LINSHENG ELETRONICS TECHNOLOGY CO., LTD","Zhong, MENG",7/09/2015,GRANTED, +2015101355,A Solar Energy Supply Steel Pipe Weld Joint Polishing Device,"Yongkang City Limeng Machinery Co., Ltd","Meng, Gang",21/09/2015,GRANTED, +2015101397,"A solar-light at the top of a flagpole, which looks like a typical flagpole finial (top). The purpose is to light up the flag at night, using solar energy and a battery storage for power. The light and solar panel and battery are affixed to the top of the pole, in place of a usual finial (top). The solar panel is uppermost; the light is beneath the solar panel and shines downwards. The battery is inside the pole. The solar-light unit is of a shape similar to a typical flagpole finial (top).","Holliday, allan MR","Holliday, allan",25/09/2015,GRANTED, +2015101520,An Improved Structure of Motor Stator,"Zhejiang Jinguang Solar Technology Co., Ltd.","DU, Shan",16/10/2015,GRANTED, +2015101521,A Worm Cavity Machining Auxiliary Device for A Worm Gear - Worm Case,"Zhejiang Jinguang Solar Technology Co., Ltd.","DU, Shan",16/10/2015,GRANTED, +2015101522,A Motor Shell End Cover Positioning Structure,"Zhejiang Jinguang Solar Technology Co., Ltd.","DU, Shan",16/10/2015,GRANTED, +2015101523,A Connection Structure for Gearbox Transmission Shaft and Connecting Rod,"Zhejiang Jinguang Solar Technology Co., Ltd.","Shen, Tujun",16/10/2015,GRANTED, +2015101524,An Analogue Interface Protection Circuit,"Zhejiang Jinguang Solar Technology Co., Ltd.","DU, Shan",16/10/2015,GRANTED, +2015101526,An Anti-Reverse Limited Current Circuit for External Input of Optical Coupler,"Zhejiang Jinguang Solar Technology Co., Ltd.","DU, Shan",16/10/2015,GRANTED, +2015101527,A Starting Protection Circuit of Low-Voltage and High-Power Motor,"Zhejiang Jinguang Solar Technology Co., Ltd.","DU, Shan",16/10/2015,GRANTED, +2015101528,An Improved Rotating Shaft Structure of Motor Rotor,"Zhejiang Jinguang Solar Technology Co., Ltd.","DU, Shan",16/10/2015,GRANTED, +2015101529,A Bus Door Starting Mechanism,"Zhejiang Jinguang Solar Technology Co., Ltd.","Zhao, Haiqiang",16/10/2015,GRANTED, +2015101530,An Auxiliary Tooling for Drilling Holes on Annular Wall of Motor End Cover,"Zhejiang Jinguang Solar Technology Co., Ltd.","DU, Shan",16/10/2015,GRANTED, +2015101532,A Mechanism for connecting Worm with Rotating Shaft of Motor,"Zhejiang Jinguang Solar Technology Co., Ltd.","Shen, Tujun",16/10/2015,GRANTED, +2015101533,An Improved structure of electric brush,"Zhejiang Jinguang Solar Technology Co., Ltd.","Ma, Yaohui",16/10/2015,GRANTED, +2015101534,A Structure for Connecting Carbon Brush Mounting Plate with End Cover,"Zhejiang Jinguang Solar Technology Co., Ltd.","Ma, Yaohui",16/10/2015,GRANTED, +2015101535,An Improved Structure of Electric Hand Drill,"Zhejiang Jinguang Solar Technology Co., Ltd.","Sun, Zhubing",16/10/2015,GRANTED, +2015101536,An Insulating Powder Coating Device for Stator,"Zhejiang Jinguang Solar Technology Co., Ltd.","Wang, Xin",16/10/2015,GRANTED, +2015101537,An Improved Structure for Mounting Insulating Paper in Motor Stator Iron Core,"Zhejiang Jinguang Solar Technology Co., Ltd.","DU, Shan",16/10/2015,GRANTED, +2015101538,A Motor stator structure,"Zhejiang Jinguang Solar Technology Co., Ltd.","DU, Shan",16/10/2015,GRANTED, +2015101539,A Motor,"Zhejiang Jinguang Solar Technology Co., Ltd.","DU, Shan",16/10/2015,GRANTED, +2015101540,An Improved Motor,"Zhejiang Jinguang Solar Technology Co., Ltd.","Lu, Jianguo",16/10/2015,GRANTED, +2015101541,A Structure for Combining Code Disc of Encoder of Motor with Electromagnetic Brake,"Zhejiang Jinguang Solar Technology Co., Ltd.","Ma, Yaohui",16/10/2015,GRANTED, +2015101565,"A SOLAR POWERED ELECTRIC FAN USING 12V DIRECT CURRENT (DC) MOTOR, COMPRISING THE MAIN FAN BODY AND A SOLAR CELL, WHEREIN SAID MAIN FAN BODY CONTAINS A HOUSING, FAN BLADES, AND A THREE-PHASE BRUSHLESS DIRECT CURRENT(BLDC) MOTOR, AND WHEREIN SAID BLDC MOTOR DRIVES THE FAN BLADES TO ROTATE CIRCUMFERENTIALLY, CHARACTERISING IN THAT SAID BLDC MOTOR IS CONNECTED DIRECTLY TO THE SOLAR CELL VIA CONDUCTING WIRE, WHEREIN SAID BLDC MOTOR CONTAINS A ROTOR AND A STATOR CORE, AND WHEREIN SIAD STATOR CORE COMPRISES A PLURALITY OF TEETH OF THE SAME SIZE AND SPECIFICATIONS DISPOSED EVENLY ON THE PERIPHERY OF","HUANG, WENTONG MS","HUANG, WENTONG",22/10/2015,GRANTED, +2015101571,Solar Pedelec Tricycle Electric Vehicle,"Brook, Sapoty MR","Brook, Sapoty",22/10/2015,GRANTED, +2015101635,"A method by which energy collected and/or converted technology Systems such as from so-called renewable energy sources including solar, wind or thermal, may be installed on common property in fractionally-owned properties and to distribute the products and the costs of that energy equitably including proportionally to their proprietorship.","Seeger, colin Laird","Seeger, colin Laird",8/11/2015,GRANTED, +2015101715,A SOLAR POWERED LIGHTING SYSTEM,Kimberley Plastics Pty Ltd,"Kimberley, Brian",24/11/2015,GRANTED, +2015101750,SOLAR SHUTTERS,"Lyons, Mark Jack MR","Lyons, Mark Jack",4/12/2015,GRANTED, +2015101860,For solar cell of similar particle accelerator architecture,"TANG, Richard Zhao Kun Mr","TANG, Richard Zhao Kun",10/11/2015,GRANTED, +2015200124,"Photobioreactors, solar energy gathering systems, and thermal control methods","Joule Unlimited Technologies, Inc.","Morgan, Frederick W.; Jacobson, Stuart A.; Van Walsem, Johan",13/01/2015,FILED, +2015200219,Self-activated front surface bias for a solar cell,"Solexel, Inc.","Zingher, Arthur R.",19/01/2015,FILED, +2015200515,Solar power generation display assembly and method for providing same,SunPower Corporation,"Mackler, Laurence",3/02/2015,FILED, +2015201440,A PHOTOVOLTAIC DEVICE FOR A CLOSELY PACKED ARRAY,Solar Systems Pty Ltd,"Lasich, John Beavis; Verlinden, Pierre Jacques",18/03/2015,LAPSED, +2015201631,Method of designing a concentrated solar cavity receiver,Commonwealth Scientific and Industrial Research Organisation,"Burton, Alexander Ian",30/03/2015,FILED, +2015201996,Trench process and structure for backside contact solar cells with polysilicon doped regions,SunPower Corporation,"Smith, David D.; Cousins, Peter John; De Ceuster, Denis",21/04/2015,FILED, +2015202537,Coaxial ventilator,"Teoh, Siang Teik","Teoh, Siang Teik",11/05/2015,FILED, +2015202730,Solar Power Export Limiter,"Devitt, Christopher MR","Devitt, Christopher",20/05/2015,FILED, +2015203307,SOLAR CELL SYSTEM,BLUESCOPE STEEL LIMITED,"CHRISTIAN, David; PATEL, Niraj",11/06/2015,FILED, +2015203498,Trench process and structure for backside contact solar cells with polysilicon doped regions,SunPower Corporation,"Smith, David D.",24/06/2015,FILED, +2015204271,Power generation plant integrating concentrated solar power receiver and pressurized heat exchanger,The Babcock & Wilcox Company,"SAKADJIAN, Bartev B.; FLYNN, Thomas J.; HU, Shengteng; VELAZQUEZ-VARGAS, Luis G.; MARYAMCHIK, Mikhail",13/07/2015,FILED, +2015210424,"1. Enduro Camper 2. All Terrain Biker Camper 3. Aussie Camper, is a attachable camp kit designed for the endurance rider or the weekend out. With a customisable bracket it can fit different makes and models of touring, cruiser and on/off road motorcycles. A inbuilt solar power system is included in the design for modern day conveniences and extended stays in the one location. may also fit other motorcycle classes at owner choice. (Warranty void)","Sweetman, Jordon Thomas James MR","Sweetman, Jordon Thomas James",7/08/2015,FILED, +2015215858,Solar reflecting and condensing device using thin film,"TIANJIN TAIYANGSHEN TECHNOLOGY CO., LTD.","DENG, Daren",19/08/2015,FILED, +2015221500,Photovoltaic solar concentration system,"Abengoa Solar New Technologies, S.A.","Jimenez, Sebastian Caparros; Davenport, Thomas Lewis Rowley",3/09/2015,FILED, +2015222967,Solar module with aligning encapsulant,SunPower Corporation,"Bunea, Gabriela Elena",26/02/2015,FILED, +2015224402,Micro-concentrator solar array using micro-electromechanical systems (MEMS) based reflectors,The Boeing Company,"Singer, Scott Benjamin; Krut, Dimitri D.; Karam, Nasser H.",8/09/2015,FILED, +2015224439,Solar Generator Platform,powerak Pty Ltd,"CAP, George Jaroslav; Woodfield, Ross",9/09/2015,FILED, +2015230704,Solar Power System,Mabo Pty. Ltd,"Tournier, Michael; Falvo, Antonio",21/09/2015,FILED, +2015230723,Photovoltaic component for use under concentrated solar flux,CENTRE NATIONAL DE LA RECHERCHE SCIENTIFIQUE - CNRS; ELECTRICITE DE FRANCE; UNIVERSITE PIERRE ET MARIE CURIE (PARIS 6),"LINCOT, Daniel; PAIRE, Myriam; GUILLEMOLES, Jean-Francois; PELOUARD, Jean-Luc; COLLIN, Stephane",22/09/2015,FILED, +2015236203,Passivation of light-receiving surfaces of solar cells,SunPower Corporation; Total Marketing Services,"Rim, Seung Bum; Solomon, Genevieve A.; Johnson, Michael C.; Damon-Lacoste, Jerome; Salomon, Antoine Marie Olivier",24/03/2015,FILED, +2015236205,Solar cell with trench-free emitter regions,SunPower Corporation,"Smith, David D.",24/03/2015,FILED, +2015252135,"Solar heat collecting system, and apparatus and method of controlling the same",Kabushiki Kaisha Toshiba,"Goto, Koichi; Takahashi, Masahiko; Yamashita, Katsuya; Okita, Nobuo",6/11/2015,FILED, +2015255208,Support for solar energy collectors,SunPower Corporation,"Barton, Nicholas",11/11/2015,FILED, +2015258171,Solar thermal power generation system,"MITSUBISHI HITACHI POWER SYSTEMS, LTD.","Mishima, Nobuyoshi; Nagafuchi, Naoyuki",17/11/2015,FILED, +2015258330,Solar Power Generation Assembly and Method for Providing Same,SunPower Corporation,"Mackler, Laurence",20/11/2015,FILED, +2015261637,Solar Power Conversion System,"Davies, Kevin Stephen","Davies, Kevin Stephen",26/11/2015,FILED, +2015261650,VERTICALLY STACKED PHOTOVOLTAIC AND THERMAL SOLAR CELL,University of Houston,"Curran, Seamus; Dias, Sampath; Liao, Kang-Shyang; Yambem, Soniya Devi; Haldar, Amrita; Alley, Nigel",26/11/2015,FILED, +2015264788,Portable Solar Heating Apparatus,"Plowman, Garth Robert","Plowman, Garth Robert",1/12/2015,FILED, +2015264923,Illumination Apparatus,Solar Lighting Towers Pty Ltd,"Edwards, Graeme Phillip; Edwards, Shannon Ryan; Edwards, Clinton James",4/12/2015,FILED, +2015323849,High-efficiency N-type bifacial solar cell,"Shanghai Shenzhou New Energy Development Co., Ltd.","Zheng, Fei; Zhang, Zhongwei; Shi, Lei; Ruan, Zhongli; Tao, Zhihua; Zhao, Yuxue",14/05/2015,FILED, +2015900014,SOLAR POWERED ELECTRICAL DEVICE TRAILER,Joshmika Pty Ltd,"Fry, Ian",5/01/2015,LAPSED, +2015900058,Solar Energy Collection System,"Palmer, Glen Scott; Van Dongen, Charles","Palmer, Glen Scott; Van Dongen, Charles",9/01/2015,LAPSED, +2015900409,Solar cell fabrication,The Australian National University,"Zin, Ngwe",10/02/2015,LAPSED, +2015900712,"SOLAR PANEL CELL Solar panel cell including semi-conductive and conductive layers, wherein at least one of conductive layer consists of graphene-content material.","Volkov, Viktor Vladimirovich MR","Volkov, Viktor Vladimirovich; Pimenov, Alexander Vsevolovich",1/03/2015,LAPSED, +2015900797,Modular Solar Lighting and Power Management System and Apparatus,REDI-LITE PTY LTD,"Hawley, Mark; Flint, Tony",6/03/2015,LAPSED, +2015900989,SOLAR ENERGY CONCENTRATORS,"Yeomans, Allan James Mr","Yeomans, Allan James",19/03/2015,LAPSED, +2015901291,Solar Concentrator Enclosure for Photovoltaic Modules,"Eng, Yeon Kieng MR","Eng, Yeon Kieng",11/04/2015,LAPSED, +2015901538,Solar panel system,Elite Caravans (Australia) Pty Ltd,"VIDUKA, IVAN; MILKOVIC, TOMMY; MURRAY, DUNCAN",30/04/2015,LAPSED, +2015901544,"The invention is automatically controlled by a powerful programmable electronic computer controller which results in the most efficient, effective most rapid evaporation of the process water and it utilises solar or other heat, wind and the processes of accelerated evaporation, settlement, flocculation, chemical separation and crystallisation to reduce the volume of the process water and to extract salts, minerals, compounds, chemicals and elements that can have commercial value.","Palmer, Frank Mr","Palmer, Frank",30/04/2015,LAPSED, +2015901667,Portable Solar Tracker,PEEL JAMES & LYNETTE,"Peel, James Alexander",8/05/2015,FILED, +2015901776,Mobile Solar Generating and Expanding Solid Spacious Dwellings,PRODENGIN PTY. LTD.,"Kelly, Kevin John",17/05/2015,FILED, +2015901849,Solar Powered Signage Signs Solar Powered Letter box numbers,The trustee for the Carubia Projects Trust,"Carubia, Alf",21/05/2015,FILED, +2015902236,Integration of solar photovoltaic systems with other systems,5B IP Holdings Pty Ltd,"McGrath, Chris; Tehan, Eden",12/06/2015,FILED, +2015902244,Solar Concentrator Housing for Photovoltaic Modules,"Eng, Yeon Kieng MR",Not Given,4/06/2015,FILED, +2015902324,"Electroactive materials, printing compositions and methods of manufacturing solar cells",Commonwealth Scientific and Industrial Research Organisation,Not Given,18/06/2015,FILED, +2015902385,Solar Power Panel Reflector Assembly,"Eng, Yeon Kieng MR","Eng, Yeon Kieng",21/06/2015,FILED, +2015902415,Improvements in Capture and Re-Use of Carbon Dioxide and use of Solar Energy,D U T PTY LTD,"Cummings, Donald Ray; Sorrell, Charles; Palfreyman, Doug",23/06/2015,FILED, +2015902433,Solar Power Panel with integral Reflector,"Eng, Yeon Kieng MR","Eng, Yeon Kieng",24/06/2015,FILED, +2015902578,INSTALLATION ARRANGEMENT SUITABLE FOR USE WITH A SOLAR PANEL,Alver Pty Ltd,"Sherwood, Glen",1/07/2015,FILED, +2015902613,Combined Wind Solar Generator,"Wilson, Richard Randal","Wilson, Richard Randal",2/07/2015,FILED, +2015902629,SOLAR PANEL RACKING ARRAY,Powerak Pty Ltd,"CAP, George Jaroslav",3/07/2015,FILED, +2015902661,A mesh-system for installing solar power panels,"Eng, Yeon Kieng MR","Eng, Yeon Kieng",6/07/2015,FILED, +2015902694,new solar concentrator,SOLAR SURE PTY. LTD.,"shaw, ian henry",8/07/2015,WITHDRAWN, +2015902696,A frameless solar power panel,"Eng, Yeon Kieng MR","Eng, Yeon Kieng",8/07/2015,FILED, +2015902700,Frameless Solar Panel Mounting and Panel Cooling System,"Flatow, Wolfgang MR","Flatow, Wolfgang",8/07/2015,FILED, +2015902717,A dual-axis solar tracking system for solar power panels,"Eng, Yeon Kieng MR","Eng, Yeon Kieng",9/07/2015,FILED, +2015902779,A METHOD FOR FORMING A CONTACTING STRUCTURE TO A BACK CONTACT SOLAR CELL,Chanzhou Trina Solar Energy Co. Ltd.; Meyer Burger AG; NewSouth Innovations Pty Limited,"LI, ZHONGTIAN; LENNON, ALISON JOAN; HSIAO, PEI-CHIEH (PAGET); SOEDERSTROEM, THOMAS; YAO, YU; JIANG, YU",14/07/2015,FILED, +2015902855,Prestore for solar power,"Mierisch, Robert Charles MR","Mierisch, Robert Charles",18/07/2015,FILED, +2015902858,This invention is a Stackable Planter Pot designed to be assembled with another of the same design around posts or poles and stacked multiple times to create a planting arrangement for various plants. This arrangement is further complimented by the addition of multiple self adhesive strips of spaced LED lights powered by a set of solar cell panels to create a night time ambient environment.,"Reynolds, Neil Andrew MR","Reynolds, Neil Andrew",20/07/2015,FILED, +2015902901,A Solar Power Panel Enclosure with an Internal Support Structure,"Eng, Yeon Kieng MR","Eng, Yeon Kieng",22/07/2015,FILED, +2015902962,Solar or mechanical trailer or commercial vehicle mounted remote or manual elevation Ramp/stepping Safety platform module,"harris, mark MR","harris, mark",25/07/2015,FILED, +2015903006,1. Summary of invention Over load issue when too much power is drawn from MPS unit then the unit shuts down all power goes off No control into load current distribution this means did not distribute amps as needed Only one input connection at a time that is Solar only with one set of windings No auto external motor or generator start when power is depleted from battery storage devise No Auto change from Solar and natural power to battery power,LEDTEK GLOBAL PTY LTD; LedTek Power Corporation,"Aucone, Anthony",28/07/2015,FILED, +2015903043,improved solar concentrator,SOLAR SURE PTY. LTD.,"shaw, ian henry",30/07/2015,FILED, +2015903067,Photovoltaic and Solar Thermal Roof Tile Integrated into Roof Tile System,BIPV Trust,"Leahy, Mary",2/08/2015,FILED, +2015903261,Solar Receiver,Adelaide Research & Innovation Pty Ltd,Not Given,13/08/2015,FILED, +2015903371,SOLAR PV TUBE,"Majkic, Bogdan MR","Majkic, Bogdan",20/08/2015,FILED, +2015903376,Solar powered nightlight scene creations,"paterson, jodi MISS","paterson, jodi",20/08/2015,FILED, +2015903411,Solar Powered Fertigation System,"Coomer, Ron","Coomer, Ron",24/08/2015,FILED, +2015903446,A PHOTOVOLTAIC SOLAR WATER HEATING SYSTEM,New England Solar Power Pty Ltd,"Taber, Rob",26/08/2015,FILED, +2015903449,A method of encapsulating and suspending solar PV cells,"Eng, Yeon Kieng MR","Eng, Yeon Kieng",26/08/2015,FILED, +2015903593,A Plastic Multi-Wall Solar PV panel,"Eng, Yeon Kieng MR","Eng, Yeon Kieng",2/09/2015,FILED, +2015903629,A Solar PV panel with a Longitudinal Extruded Plastic Body,"Eng, Yeon Kieng MR","Eng, Yeon Kieng",4/09/2015,FILED, +2015903653,"Flexible LED Solar Powered Light, with Flexible Battery, Dual Peltier and Magnetic attachment layers.","buckingham, Jayson MR","buckingham, Jayson",8/09/2015,FILED, +2015903675,Interconnection arrangements for solar cells,The Australian National University,"Stocks, Matthew Justin; Weber, Klaus Johannes; Blakevs, Andrew William",9/09/2015,FILED, +2015903687,"To design and manufacture various size Head and (tomb) stones,plaques, monumental full length stone and vaults for the deceased (note-for both human or animal) .Made from various materials eg : Aluminium, extruded hard plastics carbon fiber, steels,timber and other natural minerals. With a built in electronic monitor screen or tablet like device which runs off D.C power gaining charge from solar energy which gives a brief run down of the owners life as well as enabling visitors to leave a brief message for family members. Also other features include opening doors for memorabilar.","seufatu, paul leo MR","seufatu, paul leo",10/09/2015,FILED, +2015903757,"Increasing the efficiency of solar panels utilising a Dome, Geodesic Dome (full or partial) and/or panel fitted over and/or afixed to the solar panel. This invention will reducing the operating temperature of the solar panels at the hottest part of the day and increase sunlight and operating temperture at the coolest parts of the day (after sunrise, early AM and evening PM, before suset). These measures will increase the amount of electricial output produced at each point of the day, thereby improving the solar panels efficiency and economics.","Johnson, Clive Lindsay Mr","Johnson, Clive Lindsay",15/09/2015,FILED, +2015903797,Solar Power System,MABO Pty. Ltd,"Tournier, Michael; Falvo, Tony",17/09/2015,FILED, +2015903917,A method of encapsulating and installing solar PV cells,"Eng, Yeon Kieng MR","Eng, Yeon Kieng",25/09/2015,FILED, +2015904072,SOLAR REFLECTOR MOUNT,"POWELL, Trevor","POWELL, Trevor",7/10/2015,FILED, +2015904264,Method for graphene coating of solar panel comprising: a) apposition of graphene-content metallic foil on the surface of silicon panel; b) mechanical lamination of said foil onto silicon surface; c) dissolution of said metal foil by solution of active chemical; d) rinsing of silicon surface coated with graphene layer; e) drying of coated surface by IR heating.,"Volkov, Viktor Vladimirovich MR","Volkov, Viktor Vladimirovich; Pimenov, Alexander Vsevolodovich",17/10/2015,FILED, +2015904291,A portable frame for supporting a solar panel,"Carless, Glen","Carless, Glen",20/10/2015,FILED, +2015904349,HEAT ENERGY STORAGE METHOD AND APPARATUS FOR USE WITH SOLAR ENERGY COLLECTING APPARATUS,"Yeomans, Allan James MR","Yeomans, Allan James",23/10/2015,FILED, +2015904469,SOLAR REFLECTOR MOUNT 2,"POWELL, Trevor","POWELL, Trevor",30/10/2015,FILED, +2015904470,REFLECTOR ASSEMBLY FOR A SOLAR COLLECTOR 2,"POWELL, Trevor","POWELL, Trevor",30/10/2015,FILED, +2015904533,Solar collector,Graphite Solar Power Pty Ltd,"Hollis, Stephen; Gentle, Richard Howard",5/11/2015,FILED, +2015904557,A Roof Module and a Roof for a Building,Solar Energy Roofs Pty Ltd,"Wardani, Hassan; Zombori, Zsolt; Forte, Danne",6/11/2015,FILED, +2015904617,Thermostat,New England Solar Power Pty Ltd,"Taber, Rob",10/11/2015,FILED, +2015904793,MULTIPLE-EFFECT DISTILLATION APPARATUS AND SYSTEM,Solar Pure Technologies Pty Ltd,"van de Loo, Paul; Unsworth, Paul",20/11/2015,FILED, +2015904809,Solar Trailer Generator,"Wessels, Aden Dalton MR","Wessels, Aden Dalton",21/11/2015,FILED, +2015904873,A SOLAR HOT BOX and POT ARRANGEMENT FOR COOKING and WATER HEATING/STERILISING and which PROVIDES AN ALTERNATIVE TO BATTERY STORAGE,"Smith, Frank Hamilton MR","Smith, Frank Hamilton",25/11/2015,FILED, +2015904874,AN ECONOMICAL SOLAR WATER HEATER FOR DEVELOPED and DEVELOPING COUNTRIES and which REDUCES PV and BATTERY STORAGE NEEDS FOR BOTH.,"Smith, Frank Hamilton MR","Smith, Frank Hamilton",25/11/2015,FILED, +2015904973,SOLAR COOKER,"Butler, Dale MR","Butler, Dale",1/12/2015,FILED, +2015905084,Intelligent Solar House Number,"Yemm, Gareth David James MR","Yemm, Gareth David James",8/12/2015,FILED, +2015905106,Solar Pumped-Storage Hydroelectricity system,"Eng, Yeon Kieng MR","Eng, Yeon Kieng",10/12/2015,FILED, +2015905176,A system of suspending flexible solar PV panels,"Eng, Yeon Kieng MR","Eng, Yeon Kieng",15/12/2015,FILED, +2015905218,Portable Solar Photovoltaic Array,5B IP Holdings Pty Ltd,"Tehan, Eden; McGrath, Chris",16/12/2015,FILED, +2016100112,Solar Power System,Mabo Pty. Ltd,"Tournier, Michael; Falvo, Antonio",4/02/2016,GRANTED, +2016100123,H2Home is a domestic electricity reclaim module providing nigh-time electricity from excess daytime solar power,Ech Consulting Engineers Pty Ltd,"Echimi, Peter",5/02/2016,GRANTED, +2016100264,Solar Energy Capture and Storage System with Revenue Recovery through Energy Sales,"Elliston, Barbara Louise; PV Direct Limited","Elliston, Barbara Louise",10/03/2016,GRANTED, +2016100361,solar panels mount on pontoons with adjustable anchorage to allow different water levels and still having high wind rating,BROIDAL CONTRACTING PTY LTD,"Dal Broi, Gavin Anthony",1/04/2016,FILED, +2016100368,SOLAR COOKER THAT USES A NON-IMAGING CONCENTRATOR FOR HIGH TEMPERTATURE COOKING,"edmonds, ian DR","edmonds, ian",5/04/2016,GRANTED, +2016100431,"A floating, deploy-able, remote, and autonomous water quality monitoring device. The device is placed in waterways or the ocean, and floats on the water giving position and speed, connectivity, and a range of water quality measurements. A camera may also be included to capture an image as the device floats along. The device runs on solar panels and/or batteries.",NEALE PROJECTS PTY. LTD.,"Neale, Timothy John",20/04/2016,GRANTED, +2016100459,A solar underground LED lawn lamp,"Xiangpai (Xiamen) E-Business Co., Ltd","FAN, HANJING",22/04/2016,GRANTED, +2016100742,A solar LED lighting device,"Quanzhou City Laite Lighting Co., Ltd.","Sun, XuDong",23/05/2016,ACCEPTED, +2016100759,Floatation device for solar panels,HydroSun Capital Pty Ltd,"Lunoe, Soren; Szumer, Emanuel Hillel; Reddel, Daniel",25/05/2016,ACCEPTED, +2016200120,A SOLAR POWERED LIGHTING SYSTEM,Kimberley Plastics Pty Ltd,"Brian, Kimberley",8/01/2016,FILED, +2016200126,"SOLAR LAMP, PCB CIRCUIT FOR THE SOLAR LAM AND A PREPARATION METHOD THEREOF",Fujian Joy Solar Technology Corporation,"Chen, Guangyan",8/01/2016,FILED, +2016200358,Enclosing a Photovoltaic Laminate,Solar Century Holdings Limited,"BRAND, Ryan; EASTWELL, Hannah Rose; ELTRINGHAM, Steven; ITALIANO, Peter; STURGEON, Jonathan",21/01/2016,FILED, +2016200455,Integrated solar collectors using epitaxial lift off and cold weld bonded semiconductor solar cells,The Regents of the University of Michigan,"Forrest, Stephen R.; Renshaw, Christopher Kyle; Slootsky, Michael",27/01/2016,FILED, +2016200464,Solar heat collecting system,Kabushiki Kaisha Toshiba,"Goto, Koichi; Takahata, Kazuo; Kosuga, Takahiro",27/01/2016,FILED, +2016200610,Structures and methods of formation of contiguous and non-contiguous base regions for high efficiency back-contact solar cells,"Solexel, Inc.","Deshpande, Anand; Kapur, Pawan; Rana, Virendra V.; Moslehi, Mehrdad M.; Seutter, Sean M.; Deshazer, Heather; Kommera, Swaroop; Anbalagan, Pranav; Rattle, Benjamine E.; Coutant, Solene",1/02/2016,FILED, +2016200826,SYSTEM AND METHOD FOR CONTROLLING RAMP RATE OF SOLAR PHOTOVOLTAIC SYSTEM,General Electric Company,"Liu, Yan; Garces, Luis Jose; Bose, Sumit",9/02/2016,FILED, +2016200879,"Solar-module Frame Profile, Solar Module and Method of Adhesively Bonding a Solar-Module Frame Profile to the Solar-Module Laminate",Hanwha Q Cells GmbH,"MOLITOR, Heiko; DEWENTER, Marc; EBENROTH, Thomas; BUSSE, Henning",11/02/2016,FILED, +2016201948,"Solar concentrator, and heat collection apparatus and solar thermal power generation apparatus including same","Mitsubishi Heavy Industries, Ltd","Furutani, Akira; Furuta, Taizan",29/03/2016,FILED, +2016202055,HIGH-EFFICIENCY SOLAR CELL STRUCTURES AND METHODS OF MANUFACTURE,"Tetrasun, Inc","Wittman, Oliver; Deceuster, Denis",1/04/2016,FILED, +2016202891,Automatic generation and analysis of solar cell IV curves,SunPower Corporation,"Fischer, Kevin C.; Kraft, Steven M.; Jones, Jason C.",5/05/2016,FILED, +2016202929,Conversion of Solar Energy,Solagen Pty Ltd,"LASICH, JOHN BEAVIS",6/05/2016,FILED, +2016203039,Systems and methods for selectively producing steam from solar collectors and heaters for processes including enhanced oil recovery,"Glasspoint Solar, Inc.","O'Donnell, John Setel; Von Behrens, Peter Emery; Nady, Andras; Heisler, Stuart M.",11/05/2016,FILED, +2016900040,Method of installing solar photovoltaic (PV) panels on steel roofs,"Eng, Yeon Kieng MR","Eng, Yeon Kieng",7/01/2016,FILED, +2016900067,A method of installing Solar PV panels on corrugated steel roofs,"Eng, Yeon Kieng MR","Eng, Yeon Kieng",11/01/2016,FILED, +2016900144,A cable deployment and retrieval system for a marine vessel,Solar Sailor Pty Ltd,"Dane, Robert",18/01/2016,WITHDRAWN, +2016900224,"Poly ethylene solar hot water system tank and panels, both thermosyphon and split system styles",WALLANDALE PTY. LTD.,"holland, vincent",25/01/2016,FILED, +2016900256,THERMAL SOLAR FLUID HEATER,Supreme Solar Pty Ltd,"Mauger, James; Mauger, Colin",28/01/2016,FILED, +2016900418,"Solaclad is a nanotechnology based solar energy system opaque, translucent or transparent, surface applied or integral suitable for a wide range of applications including all built environments and surfaces.",SOLACLAD PTY LTD,"Fox, Michael",9/02/2016,FILED, +2016900422,A passively tracking solar air heater,"Ashby, David","Ashby, David",9/02/2016,FILED, +2016900456,The solar system is a new and innovative device to improve collection of power output from a solar panel whilst also producing clean drinking water at the same time from the same device.,"Butson, Macinley MS","Butson, Macinley",10/02/2016,FILED, +2016900459,Solar PV Snap-lock Base for Corrugated Steel Roofs,"Eng, Yeon Kieng MR","Eng, Yeon Kieng",11/02/2016,FILED, +2016900633,Screw pile for use with solar panels,Multiturn Pty Ltd,Not Given,23/02/2016,FILED, +2016900768,Ember warrior solar powered automated roof sprinkler system,POWERAGE ELECTRICS AUSTRALIA PTY LTD,"Wos, Chris; Fitzpatrick, Tyron",2/03/2016,FILED, +2016900835,Modular Solar Lighting and Power Management System and Apparatus,REDI-LITE PTY LTD,"Hawley, Mark; Flint, Tony",7/03/2016,FILED, +2016901073,SOLAR ENERGY CONCENTRATORS,"Yeomans, Allam James MR","Yeomans, Allam James",22/03/2016,FILED, +2016901247,Automatic Device for Cleaning Solar Photovoltaic Panels Without Damage to the Solar Installation and With Maximum Water Efficiency,IRONSTONE TECHNOLOGY PTY LTD,"Humphries, Edwin",5/04/2016,FILED, +2016901322,A multifunctional piezo wind thermal hybrid solar cell energy harvesting system and its applications,"Jevon, Andrew Stewart MR; Logos Energy Australia Pty Ltd","Jevon, Andrew Stewart",10/04/2016,FILED, +2016901433,An Integrated Solar PV Atmospheric Water Generator,"Eng, Yeon Kieng MR","Eng, Yeon Kieng",18/04/2016,FILED, +2016901632,Solar Bin,Solar Bins Australia Pty Ltd,"Hayes, Leon",3/05/2016,FILED, +2016901684,Resource Enhancer. My idea is in natural resources. It uses multiple things to harness natural resources as water and air. It then uses a converter to transfer to generators that then turn the power into electricity. Creating a gain over standard current means that have a curtain percentage of efficiency while the rest is lost. It can also be used in combination with solar panels to generating power in times of inaction in wind farms when wind is absent. I am hoping to do some additional testing to refine my ideas and chose what's best. can be used in transport.,"Kennedy, Sean Ciaran MR","Kennedy, Sean Ciaran",6/05/2016,FILED, +2016901760,Solar Power Forecasting,Commonwealth Scientific and Industrial Research Organisation,"WEST, Sam; LAGERSTROM, Ryan; SUN, Changming; COLLINS, Mike; RAE, Mick",11/05/2016,FILED, +2016901838,Solar Energy Collection System,"Palmer, Glen Scott; Van Dongen, Charles Cornelus","Palmer, Glen Scott; Van Dongen, Charles Cornelus",17/05/2016,FILED, +2016902007,SOLAR TRACKING SYSTEM,Xirasol Pty Ltd,"Melton, Glenn Robert; Brady, Allan James",27/05/2016,FILED, +2016902228,A Marine Sailing Vessel,Solar Sailor Pty Ltd,"Dane, Robert",8/06/2016,FILED, +2016902247,Improvements in Capture and Re-use of Carbon Dioxide and use of Solar Energy,D U T PTY LTD,"Cummings, Donald Ray; Sorrell, Charles; Palfreyman, Doug",9/06/2016,FILED, +Application number,Title,Applicant,Inventors,Date,Status, +Title,Applicant(s),Inventor(s),Filing date,Application status,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, +,,,,,, diff --git a/discuss.md b/discuss.md new file mode 100644 index 00000000..1193f3ba --- /dev/null +++ b/discuss.md @@ -0,0 +1,10 @@ +--- +title: Discussion +--- + +There are many ways to discuss Library Carpentry lessons: + +- Join our [Slack organisation](https://slack-invite.carpentries.org/) and #libraries channel. +- Stay in touch with our [Topicbox Group](https://carpentries.topicbox.com/groups/discuss-library-carpentry). +- Follow updates on [Twitter](https://twitter.com/LibCarpentry). +- Make a suggestion or correct an error by [raising an issue](https://github.com/LibraryCarpentry/lc-open-refine/issues) or submitting a [pull request](https://github.com/LibraryCarpentry/lc-open-refine/pulls). diff --git a/fig/openrefine_add_columns_by_url.png b/fig/openrefine_add_columns_by_url.png new file mode 100644 index 00000000..ac3c5e12 Binary files /dev/null and b/fig/openrefine_add_columns_by_url.png differ diff --git a/fig/openrefine_ui.png b/fig/openrefine_ui.png new file mode 100644 index 00000000..1327e989 Binary files /dev/null and b/fig/openrefine_ui.png differ diff --git a/fig/records.png b/fig/records.png new file mode 100644 index 00000000..a1e05f89 Binary files /dev/null and b/fig/records.png differ diff --git a/fig/rows.png b/fig/rows.png new file mode 100644 index 00000000..4ceaffa5 Binary files /dev/null and b/fig/rows.png differ diff --git a/fig/sort-menu-highlight.png b/fig/sort-menu-highlight.png new file mode 100644 index 00000000..a5776e91 Binary files /dev/null and b/fig/sort-menu-highlight.png differ diff --git a/files/draft-instructor-notes.md b/files/draft-instructor-notes.md new file mode 100644 index 00000000..6f5789a7 --- /dev/null +++ b/files/draft-instructor-notes.md @@ -0,0 +1,213 @@ +# Chris Erdmann Instructor notes from https://libcce.github.io/2018-10-18-UNC/ + +## OpenRefine + +OpenRefine is a power tool for messy data +Helps you clean data, link data, visualize it and keeps a record of your revisions +Its been around for a while (GoogleRefine), which means there is a lot of info/tutorials about it out there + + +Things it’s great for: + +overview of data/analysis of data per column +* Resolve inconsistencies (date format) +* Split data into separate cells (multiple names, address parts) +* Matching data, like your local data to Library of Congress data +* Enhance data with data from other sources + +Scenarios: +* how many times does a value appear in a column? +* How is data distributed across the dataset? +* changing all data in a column into one format +* splitting data into separate columns +* adding data + + +Local library examples: +UNCG Library uses it for collections data +Duke Libraries uses it for teaching workshops + +Open Context +https://opencontext.org/ +Eric Kansa +Uses OpenRefine in its data cleaning workflows + +In the Carpentries +OpenRefine for Ecologists +https://datacarpentry.org/OpenRefine-ecology-lesson/ + + +Import > DOAJ data +https://github.com/LibraryCarpentry/lc-open-refine/raw/gh-pages/data/doaj-article-sample.csv + + +Note: +UTF-8 +First line is column header +DO NOT check parse text cells into numbers + +View on raw data + +Records/rows +Flags/stars + +Split multi value cells +Authors > Edit Cells > Split Multi Valued Cells +Notice number of rows versus number of records +Authors > Edit Cells > Join Multi Valued Cells + +Note: Undo / Redo +We can use this as well if we want to undue something we did +Note: Extract (like a Macro) + + +Challenge: +1. What separator character is used in the Subjects cells? +2. How would you split these subject words into individual cells? +3. How would you join them back together? + + + +## FACETING +Used for overview of the data and creating consistency + +Publisher > Text Facet +Count +Name + +2 ways of merging names -> cluster button or roll over and edit + +Include and exclude for filtering + +Challenge: +1. What types of licenses are found in this data set? +2. How many are blank? From what journal? + +Note: +I've used this feature, copy and pasted facets, for easy reporting + +Explore Text Facet +- How would we find DOIs that are blank with the Text Facet? + Facet > Customized Facets > Facet by Blank +- Use Text Facet to normalize Language (EN e.g.). + +## Clustering + +This allows us to use various algorithms to find name variations and then match + +Authors > Edit Cells > Split multi-value cells +Authors > Edit Cells > Cluster and Edit + +Explore Method / Keying Function + +READ +https://github.com/OpenRefine/OpenRefine/wiki/Clustering-In-Depth + +## Sort / View (like Excel functionality) +Sort A-Z or Z-A +View > Collapse + +## Transformations + +Allow you to do much more than Facets +You can split values (into new columns), for instance, journal information, addresses... +Standardization, removing punctiation maybe or formatting date +Extracting something from a string like ISBN, geographical coordinates + +Publisher > Text Facet +Why does MDPI AG appear twice, looks the same? +Edit cells->Common transforms->Trim leading and trailing whitespace +That is a transformation to start! + +## Write Transformations + +Citation > Edit Column > Add Column based on this one +GREL - Google Refine Expression Language + +What if you wanted to get the volume? +value.match(/.*?(\d+).*?/)[0] + + +What if you wanted to get the year? +Answer? +value.match(/.*(\d{4}).*/)[0] +value.match(/.*?\((\d+)\).*?/)[0] +value.match(/.*?\d+.*?\d+.*?\d+.*?\d+.*?(\d+).*?/)[0] +value.match(/.*\((\d{4})\).*/)[0] +value.match(/.*?((\d\d\d\d)\).*?)[0] +value.match(/.*?(\(\d{4}\)+).*?/)[0] + +What if you wanted to get the journal name? +Answer? +value.match(/.*?([A-Za-z\s]*)((\(|,)).*?/)[0] +value.match(/(.*?),(.*)/)[0] +value.match(/(.*?)(, ).*?/)[0] +value.match(/(.*?),.*/)[0] +value.match(/^(.*?),.*?/)[0] +value.match(/.*(^((\w+)(\s*)){1,})+.*/)[0] + +Google OpenRefine Recipes +https://github.com/OpenRefine/OpenRefine/wiki/Recipes +Lots of examples (ISBN e.g.) + +https://libjohn.github.io/openrefine/ + +- That's something you can do with unstructured data but we know we can grab structured data... from CrossRef for example. + +- Does anyone know how we would do that? +Answer: + +Remember: +Publisher > Text Facet and choose Society of... +ISSNs > Edit Column > Add Column based Fetching URL +"http://api.crossref.org/journals/"+value +Get JSON back... + +How do we get the journal title from the JSON? +Answer: + + +## Booleans +You can check whether a condition is TRUE or FALSE +Authors > Facets > Custom Facet +Value.contains(",") + + +## Reverse author names + +You can use Regex again +Authors > True contain "," > Edit Cells > Transform + +value.match(/(.*),(.*)/).reverse().join(" ") + + +## Reconcile + +Wikidata on Subjects +Subjects > Start Reconciling > Wikidata > Academic discipline + +ORCID +http://refine.codefork.com/ +Use: Author Names +http://refine.codefork.com/reconcile/orcid/smartnames + +https://www.lib.ncsu.edu/news/orcid%3A-the-number-that-every-academic-needs + +## Date to String +Edit Cells > Common transforms > to Date +Edit Column > Add Column based on +value.toString("dd MMMM yyyy") + +## Sharing +Export options +Share your recipes on GitHub + + +Things to note: + +Allocate more memory: +https://docs.openrefine.org/manual/installing/#increasing-memory-allocation + + +Extra: +Transpose http://ssrc.doingdh.org/tidying-data-with-openrefine/ diff --git a/index.md b/index.md new file mode 100644 index 00000000..c4d25c1a --- /dev/null +++ b/index.md @@ -0,0 +1,20 @@ +--- +site: sandpaper::sandpaper_site +--- + +This Library Carpentry lesson introduces people working in library- and information-related roles to working with data in OpenRefine. At the conclusion of the lesson you will understand what the OpenRefine software does and how to use the OpenRefine software to work with data files. + +:::::::::::::::::::::::::::::::::::::::::: prereq + +## Prerequisites + +To complete this lesson you will need to: + +1. Install OpenRefine or use it through a cloud service +2. Download a data file +3. Use a supported browser + +See below for more information. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + diff --git a/instructor-notes.md b/instructor-notes.md new file mode 100644 index 00000000..931848f9 --- /dev/null +++ b/instructor-notes.md @@ -0,0 +1,55 @@ +--- +title: Instructor Notes +--- + +*** + +# Tips and Tricks + +*** + +## Making a handout + +Adapt/print from: + +- [Library Carpentry Reference Page](https://librarycarpentry.org/lc-open-refine/reference.html) +- [Instructor Draft Notes](https://github.com/LibraryCarpentry/lc-open-refine/blob/gh-pages/files/draft-instructor-notes.md) +- [Introduction to OpenRefine by Owen Stephens](http://www.meanboyfriend.com/overdue_ideas/wp-content/uploads/2014/11/Introduction-to-OpenRefine-handout-CC-BY.pdf) + +*** + +# General notes on OpenRefine + +## Common problems + +- If learners are using a browser other than Firefox, or OpenRefine does not automatically open for them when they click the .exe file, have them point their browser at [http://127.0.0.1:3333/](https://127.0.0.1:3333/) or [http://localhost:3333](https://localhost:3333) to launch the program. + +- Mac users with the newest operating system will have to allow this to run by "allowing everything" to run. They can change the setting back after the exercise. + +- Some students will run into issues with + + - unzipping + - finding the .exe file once the software has been unzipped + - finding the data file on their computers after downloading + +- If OpenRefine crashes when launched from a network share drive, do the following: + + - Copy the OpenRefine folder to a local drive not mapped to a network share, e.g. "C:\\Users\\JaneDoe" + - Open a Windows Command prompt + - Change the working directory to the OpenRefine folder at "C:\\Users\\JaneDoe" + - Run openrefine.exe + +- If "https" doesn't work to fetch CrossRef during Advanced OpenRefine Functions, they can try "http" + +- If they need to diagnose failure to fetch the content from the URL they can check the "Store error" option in the "Add column by fetching URLs" dialogue and try looking at the common problems listed in the [documentation](https://docs.openrefine.org/manual/columnediting#common-errors) + +- The data for this lesson was pulled from DOAJ in 2015 and may not reflect the same data currently available from DOAJ on the day of your workshop. + +## Powerful transformations + +- In the titlecase exercise, highlight the fact that + each transformation can have unintended side effects, + and advise that running one cleanup operation too few + may sometimes be preferable to one too many. + + diff --git a/learner-profiles.md b/learner-profiles.md new file mode 100644 index 00000000..434e335a --- /dev/null +++ b/learner-profiles.md @@ -0,0 +1,5 @@ +--- +title: FIXME +--- + +This is a placeholder file. Please add content here. diff --git a/md5sum.txt b/md5sum.txt new file mode 100644 index 00000000..66b1f486 --- /dev/null +++ b/md5sum.txt @@ -0,0 +1,23 @@ +"file" "checksum" "built" "date" +"CODE_OF_CONDUCT.md" "c93c83c630db2fe2462240bf72552548" "site/built/CODE_OF_CONDUCT.md" "2023-05-01" +"LICENSE.md" "b24ebbb41b14ca25cf6b8216dda83e5f" "site/built/LICENSE.md" "2023-05-01" +"config.yaml" "6504610727505612f6710d4929692c92" "site/built/config.yaml" "2023-05-01" +"index.md" "a2cfb929e462bf3230e2989c5cfe6ea2" "site/built/index.md" "2023-06-06" +"episodes/01-introduction.md" "2a7603380325d1baf99b2e1a7b3ee54f" "site/built/01-introduction.md" "2023-05-01" +"episodes/02-importing-data.md" "c7af2e53abf232259f5898d1592b49e5" "site/built/02-importing-data.md" "2023-11-16" +"episodes/03-working-with-data.md" "d4655eb2dcf012d64f5fdbf4ec036fcd" "site/built/03-working-with-data.md" "2023-11-22" +"episodes/04-faceting-and-filtering.md" "797226449e84362f21982bb8fe6e3bb0" "site/built/04-faceting-and-filtering.md" "2023-11-28" +"episodes/05-clustering.md" "4d65bc09ffa81b4d5cb5dab789a355ac" "site/built/05-clustering.md" "2023-10-25" +"episodes/06-working-with-columns.md" "2cc92be4399235910611479db8e57f24" "site/built/06-working-with-columns.md" "2024-01-11" +"episodes/07-introduction-to-transformations.md" "06bc0adfa41c146189c0bcb2da51e4f7" "site/built/07-introduction-to-transformations.md" "2023-05-01" +"episodes/08-writing-transformations.md" "b69d3a52f8de4655d7c8695d95d5821d" "site/built/08-writing-transformations.md" "2023-05-01" +"episodes/09-undo-and-redo.md" "9dba6d90cc6d8d9d5381cb537006b63e" "site/built/09-undo-and-redo.md" "2023-05-01" +"episodes/10-data-transformation.md" "47399b9f87a7c2dfae1d6b67eea71cc7" "site/built/10-data-transformation.md" "2023-05-26" +"episodes/11-using-arrays-transformations.md" "e115138dcb3c916bcaf5634600e594c4" "site/built/11-using-arrays-transformations.md" "2024-01-09" +"episodes/12-export-transformation.md" "aa6dd576a893a0870baa24611573e50b" "site/built/12-export-transformation.md" "2023-05-01" +"episodes/13-looking-up-data.md" "4be5191800691af09ff34b5fdd4c05bd" "site/built/13-looking-up-data.md" "2023-11-22" +"instructors/instructor-notes.md" "c2dfd88f1e85cccb9cbe872530c534ac" "site/built/instructor-notes.md" "2023-11-21" +"learners/discuss.md" "60c724559d15d89fc50c5418d87f9628" "site/built/discuss.md" "2023-10-20" +"learners/reference.md" "be4b8a891809c85a625fff879855921a" "site/built/reference.md" "2023-05-01" +"learners/setup.md" "c8eb6539fcfbeff1b146e1f22d5b2f58" "site/built/setup.md" "2024-02-09" +"profiles/learner-profiles.md" "60b93493cf1da06dfd63255d73854461" "site/built/learner-profiles.md" "2023-05-01" diff --git a/reference.md b/reference.md new file mode 100644 index 00000000..839b5967 --- /dev/null +++ b/reference.md @@ -0,0 +1,9 @@ +--- +title: 'Reference' +--- + +## Glossary + +FIXME This is a placeholder file. Please add content here. + + diff --git a/setup.md b/setup.md new file mode 100644 index 00000000..3ace4864 --- /dev/null +++ b/setup.md @@ -0,0 +1,85 @@ +--- +title: Setup +--- + +## Getting ready + +You need to install OpenRefine and download a data file to follow this lesson. + +### Installing and running OpenRefine + +OpenRefine is a free, open-source Java application. You can download OpenRefine from +[http://openrefine.org/download.html](https://openrefine.org/download.html). +This lesson has been tested with all versions of OpenRefine up to the latest tested version, 3.7.7. + +Packages are available on [https://openrefine.org/download.html](https://openrefine.org/download.html) for Windows, macOS, and Linux. +Please download the latest stable version, choosing the "kit" for your operating system. +Current versions of the "Windows kit with embedded Java" and "Mac kit" include everything you need to run OpenRefine. +The "Linux kit" and traditional "Windows kit" require a "Java Runtime Environment" (JRE) installed on your system (see notes below). + +If you are using an older version of OpenRefine, it is recommended you upgrade to the latest tested version. + +Please follow OpenRefine's manual to [install](https://docs.openrefine.org/manual/installing) and [run](https://docs.openrefine.org/manual/running) it. + +When running OpenRefine, initially a command line window will open. This is a window with a black background. As OpenRefine runs, lines of text will appear in the command line window. Then the Open Refine interface will open in your default web browser. You do not need to interact with the command line window. Leave it open in the background, and work on datasets in your web browser. + +Notes: + +- When you download OpenRefine for Windows or Linux from the address above, you are downloading an archive file + (zip or tar). To install OpenRefine unzip the downloaded file to a permanent location on your computer. This can + be to a personal directory or to an applications or software directory - OpenRefine should run wherever you put the + unzipped folder. The location has to be a "local" drive as problems have been reported trying to run OpenRefine + from a Network drive. +- The options "Windows kit with embedded Java" and "Mac kit" include Java as part of the package. You **do not** + need to install Java if you use one of these kits. This is the preferred method on Windows and Mac systems. +- On Windows, if you use the traditional "Windows kit" without embedded Java, you will need a + "Java Runtime Environment" (JRE) on your system. If you do not already have JRE or JDK installed, + you can visit [Adopt OpenJDK](https://adoptopenjdk.net/) or [Oracle Java](https://java.com/en/download/) + to download an installer package. Please note that + [Oracle significantly changed their license terms in 2019](https://www.oracle.com/java/technologies/javase/jdk-faqs.html) limiting it to "personal use" without a paid license. If you use OpenRefine at work or in research, OpenJDK is preferred. +- On Linux a "Java Runtime Environment" (JRE) will be required to run OpenRefine. If you do not already have + JRE or JDK installed on your system, most distribution repositories will contain OpenJRE / OpenJDK packages. + Install the default version available from your distribution. For example, on Ubuntu/Debian: + `sudo apt install default-jre`. +- OpenRefine does not support Internet Explorer. Please use [Firefox](https://www.mozilla.org/firefox/new/), + [Microsoft Edge](https://www.microsoft.com/edge), + [Chrome](https://www.google.com/chrome/) or [Safari](https://www.apple.com/safari/) instead. + +### OpenRefine cloud services + +If you are unable to install OpenRefine (due to IT restrictions, for example), please try +[openrefineder using MyBinder](https://github.com/betatim/openrefineder/). +It's free to use without registration, but it's the older OpenRefine 3.4.1, +[restricted to 1-2 GB RAM](https://mybinder.readthedocs.io/en/latest/about/user-guidelines.html#resources-available), +and the server will be deleted after 10 minutes of inactivity. + +[![](https://mybinder.org/badge.svg){alt='Binder'}](https://mybinder.org/v2/gh/betatim/openrefineder/6ba108b?urlpath=%2Fopenrefine) + +### Downloading the data + +You can download [doaj-article-sample.csv](data/doaj-article-sample.csv), which is a csv file that will open in a new browser tab. Be sure to right click or control click in order to save the file (NOTE: In Safari, right click and select **download linked file**; in Chrome and Firefox, right click and select **save link as...**). Make a note of the location (i.e. the folder, your desktop) to which you save the file. + +### Exiting OpenRefine + +To exit OpenRefine, close all the browser tabs or windows, then navigate to the command line window. To close this window and ensure OpenRefine exits properly, hold down [control] and press [c] on your keyboard. This will save all changes to your projects. + +### Getting help + +If you encounter problems installing or running OpenRefine, a good source of support is the [OpenRefine mailing list and user forum](https://forum.openrefine.org). +Include your operating system when searching to find the most relevant answers for your issue, such as threads related to [Windows](https://forum.openrefine.org/search?q=windows), [macOS](https://forum.openrefine.org/search?q=macOS), or [Linux](https://forum.openrefine.org/search?q=linux). + +You may also want to check the [Stack Overflow OpenRefine tag](https://stackoverflow.com/questions/tagged/openrefine). + +There are also general and specialist tutorials about using OpenRefine available on the web, including: + +- Official wiki [List of OpenRefine External Resources](https://github.com/OpenRefine/OpenRefine/wiki/External-Resources) +- [Getting started with OpenRefine by Thomas Padilla](https://thomaspadilla.org/dataprep/) +- [Cleaning Data with OpenRefine by Seth van Hooland, Ruben Verborgh and Max De Wilde](https://programminghistorian.org/lessons/cleaning-data-with-openrefine) +- [Blog posts on using OpenRefine from Owen Stephens](https://www.meanboyfriend.com/overdue_ideas/tag/openrefine/?orderby=date&order=ASC) +- [Identifying potential headings for Authority work using III Sierra, MS Excel and OpenRefine](https://epublications.marquette.edu/lib_fac/81/) +- [Free your metadata website](https://freeyourmetadata.org) +- [Data Munging Tools in Preparation for RDF: Catmandu and LODRefine by Christina Harlow](https://journal.code4lib.org/articles/11013) +- [Cleaning Data with OpenRefine by John Little](https://libjohn.github.io/openrefine/) +- [OpenRefine Blog](https://openrefine.org/category/blog.html) + +