Started SeekingAlphaScraper

This commit is contained in:
Rumps 2016-12-06 08:18:48 +00:00
parent 113951ba39
commit f0998ecd98
9 changed files with 258 additions and 11280 deletions

2
.gitignore vendored
View File

@ -18,3 +18,5 @@ nytprof.out
*.o
*.bs
/_eumm/
*.sh
sql/

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,183 @@
#!/usr/bin/env perl
use 5.010;
#use strict;
use warnings;
use XML::Simple;
use XML::Twig;
use Time::Piece;
=pod
=head1 NAME
PATENT_SLURPER - A program to process Google/USPTO data dumps
=head1 VERSION
0.8
=head1 DESCRIPTION
This program takes L<Google/USPTO data dumps|https://www.google.com/googlebooks/uspto-patents-grants-text.html>
and produces SQL commands to generate a database from them with a
number of selected fields.
=head1 AUTHOR
L<Ben Goldsworthy (rumperuu)|mailto:b.goldsworthy96@gmail.com>
=head1 LICENSE
=cut
# Trims the file extension from the filename argument
my $filename = $ARGV[0];
chomp $filename;
my $patentTwig = new XML::Twig(TwigRoots => {
'SDOBI/B100/B140/DATE/PDAT' => 1,
'SDOBI/B100/B110/DNUM/PDAT' => 2,
'SDOBI/B200/B220/DATE/PDAT' => 3,
'SDOBI/B200/B210/DNUM/PDAT' => 4
},
TwigHandlers => {
'SDOBI/B100/B140/DATE/PDAT' => sub { $_->set_tag( 'appdate') },
'SDOBI/B100/B110/DNUM/PDAT' => sub { $_->set_tag( 'appnum') },
'SDOBI/B200/B220/DATE/PDAT' => sub { $_->set_tag( 'pubdate') },
'SDOBI/B200/B210/DNUM/PDAT' => sub { $_->set_tag( 'pubnum') }
},
pretty_print => 'indented');
my $citationTwig = new XML::Twig(TwigRoots => {
'SDOBI/B200/B210/DNUM/PDAT' => 1,
'SDOBI/B500/B560/B561/PCIT/DOC/DNUM/PDAT' => 2
},
TwigHandlers => {
'SDOBI/B200/B210/DNUM/PDAT' => sub { $_->set_tag( 'pubnum') },
'SDOBI/B500/B560/B561/PCIT/DOC/DNUM/PDAT' => sub { $_->set_tag('citing') }
},
pretty_print => 'indented');
my $numLines = countFile($filename);
print "Processing $numLines lines...\n";
processFile($filename, $numLines);
print "File processing finished - press '1' to generate SQL statements, or '0' to quit.\n";
while (1) {
given (<STDIN>) {
when(1) {
generateSQL($filename);
print "SQL generation finished.\n";
exit 0;
} when(0) {
exit 0;
} default {
print "Press '1' to generate SQL statements, or '0' to quit.\n";
}
};
}
# Goes through the file serially to count the lines
sub countFile {
my $lineNum = 0;
open(INFILE, "data/".$_[0].".xml") or die "Can't open ".$_[0].": $!";
foreach(<INFILE>) {
++$lineNum;
}
close(INFILE);
return $lineNum;
}
# Processes the file line-by-line, removing duplicate <?xml> and
# <!DOCTYPE> tags and extracting the fields listed above. It has to be
# done line-by-line (hence the use of XML::Twig rather than XML:Simple)
# rather than loading the entire .xml file into memory because the files
# are far too big to fit.
sub processFile {
my $buffer = "", my $firstItem = 1, my $currentLine = 1;
open(INFILE, "data/".$_[0].".xml") or die "Can't open ".$_[0].": $!";
unlink("details/".$_[0].".xml");
unlink("citations/".$_[0].".xml");
open(my $detailsFile, ">>details/".$_[0].".xml") or die "Can't output ".$_[0].": $!";
open(my $citationsFile, ">>citations/".$_[0].".xml") or die "Can't output ".$_[0].": $!";
# Prints the root node to the files for XML::Simple in generateSQL()
#print $detailsFile "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<PATDOC>";
#print $citationsFile "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<PATDOC>\n";
# For each line, build up a buffer (excluding the <?xml> and
# <!DOCTYPE> tags). When the next <us-patent-grant> item is reached
# (a.k.a. when the next <?xml> tag after the initial one is reached),
# run the buffer through the details and citations twigs and print
# the results to the relevant files. Then clear the buffer for the next
# <us-patent-grant>
foreach(<INFILE>) {
print "Processing line ".($currentLine++)."/".$_[1]."...\n";
#if ($_ !~ /^\<\?xml/ && $firstItem == 0) {
#if ($_ !~ /^\<\!DOCTYPE/) {
#}
#} elsif ($firstItem == 1) {
# $firstItem = 0;
#} else {
if ($_ =~ /^\<\?xml/ && $firstItem == 0) {
#print "\n----\n".$buffer."\n----\n";
$patentTwig->parse($buffer);
$patentTwig->print($detailsFile);
$citationTwig->parse($buffer);
$citationTwig->print($citationsFile);
$buffer = "";
} elsif ($_ !~ /^\<\!/ && $_ !~ /^\]\>/) {
if ($firstItem == 0) {
$string = $_;
$string =~ s/\&[a-zA-Z0-9]*;/zonk/g;
$buffer = $buffer.$string;
} else {
print $detailsFile "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<patents>";
print $citationsFile "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<patents>\n";
$firstItem = 0;
}
}
}
print $detailsFile "</patents>";
print $citationsFile "</patents>";
close($detailsFile);
close($citationsFile);
close(INFILE);
}
# Generates an SQL dump of the database formed from analysing the .xml
# files.
sub generateSQL {
my $xml = new XML::Simple (KeyAttr=>[]);
my $details = $xml->XMLin("details/".$_[0].".xml");
unlink("sql/".$_[0].".sql");
open(my $sqlFile, ">>sql/".$_[0].".sql") or die "Can't output SQL ".$_[0].": $!";
print $sqlFile "CREATE TABLE IF NOT EXISTS `patent`\n(\n\t`pid` INT NOT NULL AUTO_INCREMENT,\n\t`pubNum` VARCHAR(32),\n\t`pubDate` DATETIME,\n\t`appNum` VARCHAR(32),\n\t`appDate` DATETIME,\n\tPRIMARY KEY(`pid`)\n);\n\nCREATE TABLE IF NOT EXISTS `patent_cite`\n(\n\t`citing_id` VARCHAR(32) NOT NULL,\n\t`cited_id` VARCHAR(32) NOT NULL,\n\tPRIMARY KEY (`citing_id`, `cited_id`)\n);\n\n";
print $sqlFile "INSERT INTO `patent` (`pubNum`, `pubDate`, `appNum`, `appDate`) VALUES";
foreach my $e (@{$details->{'PATDOC'}}) {
print $sqlFile "\n\t('".$e->{'pubnum'}."', '".$e->{'pubdate'}."', '".$e->{'appnum'}."', '".$e->{'appdate'}."'),";
}
print $sqlFile "\n\t('0', '0', '0', '0');\n\n-- This line and the above (0,0,0,0) tuple are needed due to the nature\n-- of the loop that builds the INSERT query, and the resultant SQL file\n-- being too long to edit from the end easily.\nDELETE FROM `patent` WHERE `pid` = '0';";
my $citations = $xml->XMLin("citations/".$_[0].".xml");
print $sqlFile "\n\nINSERT INTO `patent_cite` (`citing_id`, `cited_id`) VALUES";
foreach my $f (@{$citations->{'PATDOC'}}) {
my $pubNum = $f->{'pubnum'};
foreach (@{$f->{'citing'}}) {
print $sqlFile "\n\t('".$pubNum."', '".$_."'),";
}
}
print $sqlFile "\n\t('0', '0', '0', '0');\n\n-- This line and the above (0,0,0,0) tuple are needed due to the nature\n-- of the loop that builds the INSERT query, and the resultant SQL file\n-- being too long to edit from the end easily.\nDELETE FROM `patent_cite` WHERE `citing_id` = '0';";
close($sqlFile);
}

View File

@ -1,104 +0,0 @@
#!/usr/bin/perl
use 5.010;
use strict;
use warnings;
use XML::Simple;
use XML::Twig;
use Time::Piece;
my $filename = $ARGV[0];
# Reprints only the following values from each entry in the .xml file:
# - application date
# - application number
# - publication date
# - publication number
my $twig = new XML::Twig(TwigRoots => {'application-reference/document-id/date' => 1,
'application-reference/document-id/doc-number' => 2,
'publication-reference/document-id/date' => 3,
'publication-reference/document-id/doc-number' => 4},
TwigHandlers => {'application-reference/document-id/date' => sub { $_->set_tag( 'application-date') },
'application-reference/document-id/doc-number' => sub { $_->set_tag( 'application-number') },
'publication-reference/document-id/date' => sub { $_->set_tag( 'publication-date') },
'publication-reference/document-id/doc-number' => sub { $_->set_tag( 'publication-number') }},
pretty_print => 'indented');
my $numLines = countFile($filename);
print "Processing $numLines lines...\n";
processFile($filename, $numLines);
print "File processing finished - press '1' to generate SQL statements, or '0' to quit.\n";
while (1) {
given (<STDIN>) {
when(1) {
generateSQL($filename);
print "SQL generation finished.\n";
exit 0;
}
when(0) { exit 0; }
default { print "Press '1' to generate SQL statements, or '0' to quit.\n"; }
};
}
sub countFile {
my $lineNum = 0;
open(INFILE, $_[0].".xml") or die "Can't open ".$_[0].": $!";
foreach(<INFILE>) {
++$lineNum;
}
close(INFILE);
return $lineNum;
}
sub processFile {
my $buffer = "";
my $firstItem = 1;
my $currentLine = 1;
open(INFILE, $_[0].".xml") or die "Can't open ".$_[0].": $!";
open(my $finalFile, ">".$_[0]."FINAL.xml") or die "Can't clear FINAL ".$_[0].": $!";
print $finalFile "";
close($finalFile);
open(my $finalFile, ">>".$_[0]."FINAL.xml") or die "Can't output FINAL ".$_[0].": $!";
print$finalFile "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<patents>\n";
foreach(<INFILE>) {
print "Processing line ".$currentLine."/".$_[1]."...\n";
++$currentLine;
my($line) = $_;
if ($line !~ /^\<\?xml/ && $firstItem == 0) {
if ($line !~ /^\<\!DOCTYPE/) {
$buffer = $buffer.$line;
}
} else {
if ($firstItem == 1) {
$firstItem = 0;
} else {
$twig->parse($buffer);
$twig->print($finalFile);
$buffer = "";
}
}
}
print $finalFile "</patents>";
close($finalFile);
close(INFILE);
}
sub generateSQL {
my $xml = new XML::Simple (KeyAttr=>[]);
# read XML file
my $data = $xml->XMLin($_[0]."FINAL.xml");
open(my $sqlFile, ">".$_[0]."SQL.xml") or die "Can't output SQL ".$_[0].": $!";
print $sqlFile "";
close($sqlFile);
open(my $sqlFile, ">>".$_[0]."SQL.xml") or die "Can't output SQL ".$_[0].": $!";
print $sqlFile "CREATE TABLE IF NOT EXISTS `patents`\n(\n\t`pid` INT NOT NULL AUTO_INCREMENT,\n\tPRIMARY KEY(`pid`),\n\t`pubNum` VARCHAR(32),\n\t`pubDate` DATETIME,\n\t`appNum` VARCHAR(32),\n\t`appDate` DATETIME\n);\n\n";
foreach my $e (@{$data->{'us-patent-grant'}}) {
print $sqlFile "INSERT INTO `patents`(`pubNum`, `pubDate`, `appNum`, `appDate`) VALUES ('".$e->{'publication-number'}."', '".$e->{'publication-date'}."', '".$e->{'application-number'}."', '".$e->{'application-date'}."');\n";
}
close($sqlFile);
}

View File

@ -1,723 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE us-patent-grant SYSTEM "us-patent-grant-v45-2014-04-03.dtd" [ ]>
<us-patent-grant lang="EN" dtd-version="v4.5 2014-04-03" file="US08984661-20150317.XML" status="PRODUCTION" id="us-patent-grant" country="US" date-produced="20150303" date-publ="20150317">
<us-bibliographic-data-grant>
<publication-reference>
<document-id>
<country>US</country>
<doc-number>08984661</doc-number>
<kind>B2</kind>
<date>20150317</date>
</document-id>
</publication-reference>
<application-reference appl-type="utility">
<document-id>
<country>US</country>
<doc-number>14033070</doc-number>
<date>20130920</date>
</document-id>
</application-reference>
<us-application-series-code>14</us-application-series-code>
<classifications-ipcr>
<classification-ipcr>
<ipc-version-indicator><date>20100101</date></ipc-version-indicator>
<classification-level>A</classification-level>
<section>G</section>
<class>01</class>
<subclass>Q</subclass>
<main-group>70</main-group>
<subgroup>16</subgroup>
<symbol-position>F</symbol-position>
<classification-value>I</classification-value>
<action-date><date>20150317</date></action-date>
<generating-office><country>US</country></generating-office>
<classification-status>B</classification-status>
<classification-data-source>H</classification-data-source>
</classification-ipcr>
<classification-ipcr>
<ipc-version-indicator><date>20100101</date></ipc-version-indicator>
<classification-level>A</classification-level>
<section>G</section>
<class>01</class>
<subclass>Q</subclass>
<main-group>60</main-group>
<subgroup>22</subgroup>
<symbol-position>L</symbol-position>
<classification-value>I</classification-value>
<action-date><date>20150317</date></action-date>
<generating-office><country>US</country></generating-office>
<classification-status>B</classification-status>
<classification-data-source>H</classification-data-source>
</classification-ipcr>
<classification-ipcr>
<ipc-version-indicator><date>20110101</date></ipc-version-indicator>
<classification-level>A</classification-level>
<section>B</section>
<class>82</class>
<subclass>Y</subclass>
<main-group>20</main-group>
<subgroup>00</subgroup>
<symbol-position>L</symbol-position>
<classification-value>N</classification-value>
<action-date><date>20150317</date></action-date>
<generating-office><country>US</country></generating-office>
<classification-status>B</classification-status>
<classification-data-source>H</classification-data-source>
</classification-ipcr>
<classification-ipcr>
<ipc-version-indicator><date>20110101</date></ipc-version-indicator>
<classification-level>A</classification-level>
<section>B</section>
<class>82</class>
<subclass>Y</subclass>
<main-group>35</main-group>
<subgroup>00</subgroup>
<symbol-position>L</symbol-position>
<classification-value>N</classification-value>
<action-date><date>20150317</date></action-date>
<generating-office><country>US</country></generating-office>
<classification-status>B</classification-status>
<classification-data-source>H</classification-data-source>
</classification-ipcr>
</classifications-ipcr>
<classifications-cpc>
<main-cpc>
<classification-cpc>
<cpc-version-indicator><date>20130101</date></cpc-version-indicator>
<section>G</section>
<class>01</class>
<subclass>Q</subclass>
<main-group>60</main-group>
<subgroup>22</subgroup>
<symbol-position>F</symbol-position>
<classification-value>I</classification-value>
<action-date><date>20150317</date></action-date>
<generating-office><country>US</country></generating-office>
<classification-status>B</classification-status>
<classification-data-source>H</classification-data-source>
<scheme-origination-code>C</scheme-origination-code>
</classification-cpc>
</main-cpc>
<further-cpc>
<classification-cpc>
<cpc-version-indicator><date>20130101</date></cpc-version-indicator>
<section>B</section>
<class>82</class>
<subclass>Y</subclass>
<main-group>20</main-group>
<subgroup>00</subgroup>
<symbol-position>L</symbol-position>
<classification-value>A</classification-value>
<action-date><date>20150317</date></action-date>
<generating-office><country>US</country></generating-office>
<classification-status>B</classification-status>
<classification-data-source>H</classification-data-source>
<scheme-origination-code>C</scheme-origination-code>
</classification-cpc>
<classification-cpc>
<cpc-version-indicator><date>20130101</date></cpc-version-indicator>
<section>B</section>
<class>82</class>
<subclass>Y</subclass>
<main-group>35</main-group>
<subgroup>00</subgroup>
<symbol-position>L</symbol-position>
<classification-value>A</classification-value>
<action-date><date>20150317</date></action-date>
<generating-office><country>US</country></generating-office>
<classification-status>B</classification-status>
<classification-data-source>H</classification-data-source>
<scheme-origination-code>C</scheme-origination-code>
</classification-cpc>
</further-cpc>
</classifications-cpc>
<classification-national>
<country>US</country>
<main-classification>850 60</main-classification>
<further-classification>850 52</further-classification>
<further-classification>850 61</further-classification>
</classification-national>
<invention-title id="d2e43">Probes for multidimensional nanospectroscopic imaging and methods of fabrication thereof</invention-title>
<us-references-cited>
<us-citation>
<patcit num="00001">
<document-id>
<country>US</country>
<doc-number>2007/0151989</doc-number>
<kind>A1</kind>
<name>Espinosa et al.</name>
<date>20070700</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification>222462</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00002">
<document-id>
<country>US</country>
<doc-number>2008/0098805</doc-number>
<kind>A1</kind>
<name>Jin et al.</name>
<date>20080500</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification> 73105</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00003">
<document-id>
<country>US</country>
<doc-number>2008/0272299</doc-number>
<kind>A1</kind>
<name>Jin et al.</name>
<date>20081100</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification>250310</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00004">
<document-id>
<country>US</country>
<doc-number>2009/0133171</doc-number>
<kind>A1</kind>
<name>Jin</name>
<date>20090500</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification>850 60</main-classification></classification-national>
</us-citation>
<us-citation>
<nplcit num="00005">
<othercit>Monika Fleischer, &#x201c;Near-field scanning optical microscopy nanoprobes,&#x201d; Nanotechnology Reviews. vol. 1, Issue 4, pp. 313-338.</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00006">
<othercit>Wei Bao et al., &#x201c;Mapping Local Charge Recombination Heterogeneity by Multidimensional Nanospectroscopic Imaging,&#x201d; Science Dec. 7, 2012: 338 (6112), 1317-1321.</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00007">
<othercit>J. Stadler, T. Schmid, R. Zenobi, &#x201c;Developments in and practical guidelines for tip-enhanced Raman spectroscopy&#x201d; Nanoscale 4, 1856 (2012).</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00008">
<othercit>Y. Wang, W. Srituravanich, C. Sun, X. Zhang, &#x201c;Plasmonic Nearfield Scanning Probe with High Transmission,&#x201d; Nano Lett. 8, 3041 (2008).</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00009">
<othercit>J. N. Farahani, D. W. Pohl, H. J. Eisler, B. Hecht, &#x201c;Single Quantum Dot Coupled to a Scanning Optical Antenna: A Tunable Superemitter,&#x201d; Phys. Rev. Lett. 95, 017402 (2005).</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00010">
<othercit>A. Weber-Bargioni et al., &#x201c;Hyperspectral Nanoscale Imaging on Dielectric Substrates with Coaxial Optical Antenna Scan Probes&#x201d; Nano Lett. 11, 1201 (2011).</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00011">
<othercit>M. Staffaroni, J. Conway, S. Vedantam, J. Tang, E. Yablonovitch, &#x201c;Circuit analysis in metal-optics&#x201d; Photonics Nanostructures Fundam. Appl. 10, 166 (2012).</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00012">
<othercit>M. I. Stockman, &#x201c;Nanofocusing of Optical Energy in Tapered Plasmonic Waveguides&#x201d; Phys. Rev. Lett. 93, 137404 (2004).</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00013">
<othercit>P. Ginzburg, D. Arbel, M. Orenstein, &#x201c;Gap plasmon polariton structure for very efficient microscale-to-nanoscale interfacing&#x201d; Opt. Lett. 31, 3288 (2006).</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00014">
<othercit>S. Vedantam et al., &#x201c;A Plasmonic Dimple Lens for Nanoscale Focusing of Light&#x201d; Nano Lett. 9, 3447 (2009).</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
</us-references-cited>
<number-of-claims>20</number-of-claims>
<us-exemplary-claim>1</us-exemplary-claim>
<us-field-of-classification-search>
<classification-national>
<country>US</country>
<main-classification>850 52</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>850 56</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>850 57</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>850 58</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>850 59</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>850 60</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>850 61</main-classification>
</classification-national>
<classification-cpc-text>G01Q 70/02</classification-cpc-text>
<classification-cpc-text>G01Q 70/08</classification-cpc-text>
<classification-cpc-text>G01Q 70/10</classification-cpc-text>
<classification-cpc-text>G01Q 70/14</classification-cpc-text>
<classification-cpc-text>G01Q 70/16</classification-cpc-text>
</us-field-of-classification-search>
<figures>
<number-of-drawing-sheets>8</number-of-drawing-sheets>
<number-of-figures>9</number-of-figures>
</figures>
<us-related-documents>
<us-provisional-application>
<document-id>
<country>US</country>
<doc-number>61704270</doc-number>
<date>20120921</date>
</document-id>
</us-provisional-application>
<related-publication>
<document-id>
<country>US</country>
<doc-number>20140090118</doc-number>
<kind>A1</kind>
<date>20140327</date>
</document-id>
</related-publication>
</us-related-documents>
<us-parties>
<us-applicants>
<us-applicant sequence="001" app-type="applicant" designation="us-only">
<addressbook>
<last-name>Weber-Bargioni</last-name>
<first-name>Alexander</first-name>
<address>
<city>Albany</city>
<state>CA</state>
<country>US</country>
</address>
</addressbook>
<residence>
<country>US</country>
</residence>
</us-applicant>
<us-applicant sequence="002" app-type="applicant" designation="us-only">
<addressbook>
<last-name>Cabrini</last-name>
<first-name>Stefano</first-name>
<address>
<city>Albany</city>
<state>CA</state>
<country>US</country>
</address>
</addressbook>
<residence>
<country>US</country>
</residence>
</us-applicant>
<us-applicant sequence="003" app-type="applicant" designation="us-only">
<addressbook>
<last-name>Bao</last-name>
<first-name>Wei</first-name>
<address>
<city>Albany</city>
<state>CA</state>
<country>US</country>
</address>
</addressbook>
<residence>
<country>US</country>
</residence>
</us-applicant>
<us-applicant sequence="004" app-type="applicant" designation="us-only">
<addressbook>
<last-name>Melli</last-name>
<first-name>Mauro</first-name>
<address>
<city>Albany</city>
<state>CA</state>
<country>US</country>
</address>
</addressbook>
<residence>
<country>US</country>
</residence>
</us-applicant>
<us-applicant sequence="005" app-type="applicant" designation="us-only">
<addressbook>
<last-name>Yablonovitch</last-name>
<first-name>Eli</first-name>
<address>
<city>Oakland</city>
<state>CA</state>
<country>US</country>
</address>
</addressbook>
<residence>
<country>US</country>
</residence>
</us-applicant>
<us-applicant sequence="006" app-type="applicant" designation="us-only">
<addressbook>
<last-name>Schuck</last-name>
<first-name>Peter J.</first-name>
<address>
<city>Oakland</city>
<state>CA</state>
<country>US</country>
</address>
</addressbook>
<residence>
<country>US</country>
</residence>
</us-applicant>
</us-applicants>
<inventors>
<inventor sequence="001" designation="us-only">
<addressbook>
<last-name>Weber-Bargioni</last-name>
<first-name>Alexander</first-name>
<address>
<city>Albany</city>
<state>CA</state>
<country>US</country>
</address>
</addressbook>
</inventor>
<inventor sequence="002" designation="us-only">
<addressbook>
<last-name>Cabrini</last-name>
<first-name>Stefano</first-name>
<address>
<city>Albany</city>
<state>CA</state>
<country>US</country>
</address>
</addressbook>
</inventor>
<inventor sequence="003" designation="us-only">
<addressbook>
<last-name>Bao</last-name>
<first-name>Wei</first-name>
<address>
<city>Albany</city>
<state>CA</state>
<country>US</country>
</address>
</addressbook>
</inventor>
<inventor sequence="004" designation="us-only">
<addressbook>
<last-name>Melli</last-name>
<first-name>Mauro</first-name>
<address>
<city>Albany</city>
<state>CA</state>
<country>US</country>
</address>
</addressbook>
</inventor>
<inventor sequence="005" designation="us-only">
<addressbook>
<last-name>Yablonovitch</last-name>
<first-name>Eli</first-name>
<address>
<city>Oakland</city>
<state>CA</state>
<country>US</country>
</address>
</addressbook>
</inventor>
<inventor sequence="006" designation="us-only">
<addressbook>
<last-name>Schuck</last-name>
<first-name>Peter J.</first-name>
<address>
<city>Oakland</city>
<state>CA</state>
<country>US</country>
</address>
</addressbook>
</inventor>
</inventors>
<agents>
<agent sequence="01" rep-type="attorney">
<addressbook>
<orgname>Lawrence Berkeley National Laboratory</orgname>
<address>
<country>unknown</country>
</address>
</addressbook>
</agent>
</agents>
</us-parties>
<assignees>
<assignee>
<addressbook>
<orgname>The Regents of the University of California</orgname>
<role>02</role>
<address>
<city>Oakland</city>
<state>CA</state>
<country>US</country>
</address>
</addressbook>
</assignee>
</assignees>
<examiners>
<primary-examiner>
<last-name>Ippolito</last-name>
<first-name>Nicole</first-name>
<department>2881</department>
</primary-examiner>
</examiners>
</us-bibliographic-data-grant>
<abstract id="abstract">
<p id="p-0001" num="0000">This disclosure provides systems, methods, and apparatus related to probes for multidimensional nanospectroscopic imaging. In one aspect, a method includes providing a transparent tip comprising a dielectric material. A four-sided pyramidal-shaped structure is formed at an apex of the transparent tip using a focused ion beam. Metal layers are deposited over two opposing sides of the four-sided pyramidal-shaped structure.</p>
</abstract>
<drawings id="DRAWINGS">
<figure id="Fig-EMI-D00000" num="00000">
<img id="EMI-D00000" he="215.90mm" wi="158.50mm" file="US08984661-20150317-D00000.TIF" alt="embedded image" img-content="drawing" img-format="tif"/>
</figure>
<figure id="Fig-EMI-D00001" num="00001">
<img id="EMI-D00001" he="236.98mm" wi="176.02mm" file="US08984661-20150317-D00001.TIF" alt="embedded image" img-content="drawing" img-format="tif"/>
</figure>
<figure id="Fig-EMI-D00002" num="00002">
<img id="EMI-D00002" he="235.03mm" wi="166.29mm" file="US08984661-20150317-D00002.TIF" alt="embedded image" img-content="drawing" img-format="tif"/>
</figure>
<figure id="Fig-EMI-D00003" num="00003">
<img id="EMI-D00003" he="231.90mm" wi="167.22mm" file="US08984661-20150317-D00003.TIF" alt="embedded image" img-content="drawing" img-format="tif"/>
</figure>
<figure id="Fig-EMI-D00004" num="00004">
<img id="EMI-D00004" he="233.51mm" wi="166.88mm" file="US08984661-20150317-D00004.TIF" alt="embedded image" img-content="drawing" img-format="tif"/>
</figure>
<figure id="Fig-EMI-D00005" num="00005">
<img id="EMI-D00005" he="231.65mm" wi="189.48mm" file="US08984661-20150317-D00005.TIF" alt="embedded image" img-content="drawing" img-format="tif"/>
</figure>
<figure id="Fig-EMI-D00006" num="00006">
<img id="EMI-D00006" he="237.57mm" wi="189.15mm" file="US08984661-20150317-D00006.TIF" alt="embedded image" img-content="drawing" img-format="tif"/>
</figure>
<figure id="Fig-EMI-D00007" num="00007">
<img id="EMI-D00007" he="237.57mm" wi="164.08mm" file="US08984661-20150317-D00007.TIF" alt="embedded image" img-content="drawing" img-format="tif"/>
</figure>
<figure id="Fig-EMI-D00008" num="00008">
<img id="EMI-D00008" he="234.10mm" wi="156.21mm" file="US08984661-20150317-D00008.TIF" alt="embedded image" img-content="drawing" img-format="tif"/>
</figure>
</drawings>
<description id="description">
<?RELAPP description="Other Patent Relations" end="lead"?>
<heading id="h-0001" level="1">RELATED APPLICATIONS</heading>
<p id="p-0002" num="0001">This application claims priority to U.S. Provisional Patent Application No. 61/704,270, filed Sep. 21, 2012. This application is related to U.S. patent application Ser. No. 13/083,228, filed Apr. 8, 2011, which is herein incorporated by reference.</p>
<?RELAPP description="Other Patent Relations" end="tail"?>
<?GOVINT description="Government Interest" end="lead"?>
<heading id="h-0002" level="1">STATEMENT OF GOVERNMENT SUPPORT</heading>
<p id="p-0003" num="0002">This invention was made with government support under Contract No. DE-AC02-05CH11231 awarded by the U.S. Department of Energy. The government has certain rights in this invention.</p>
<?GOVINT description="Government Interest" end="tail"?>
<?BRFSUM description="Brief Summary" end="lead"?>
<heading id="h-0003" level="1">TECHNICAL FIELD</heading>
<p id="p-0004" num="0003">This disclosure relates generally to optical spectroscopy and more particularly to devices operable to generate a focused optical beam spot and methods of fabrication thereof.</p>
<heading id="h-0004" level="1">BACKGROUND</heading>
<p id="p-0005" num="0004">An ongoing challenge to understanding matter at the nanoscale is the difficulty in carrying out local optical spectroscopy. On a fundamental level, this should be possible by squeezing light beyond the diffraction limit. Optical-antenna-based geometries have been designed to address this nanospectroscopy imaging problem by transforming light from the far-field to the near-field, but unfortunately with serious limitations on sensitivity, bandwidth, resolution, and/or sample types.</p>
<heading id="h-0005" level="1">SUMMARY</heading>
<p id="p-0006" num="0005">A strategy that overcomes the limitations of optical-antenna-based geometries (e.g., sensitivity, bandwidth, resolution, and/or sample types), based on a unique geometry capable of efficiently coupling far-field light to the near-field and vice-versa without background illumination, and over a wide range of wavelengths, is described herein. In some embodiments, the geometry includes a campanile probe, a three-dimensional tapered structure terminating in a nanometer sized gap, with a shape resembling that of a &#x201c;campanile&#x201d; bell tower.</p>
<p id="p-0007" num="0006">One innovative aspect of the subject matter described in this disclosure can be implemented a method including: (a) providing a transparent tip comprising a dielectric material; (b) forming a four-sided pyramidal-shaped structure at an apex of the transparent tip using a focused ion beam; and (c) depositing metal layers over two opposing sides of the four-sided pyramidal-shaped structure.</p>
<p id="p-0008" num="0007">In some embodiments, the method further includes after operation (c), forming a gap between the metal layers at an apex of the four-sided pyramidal-shaped structure. In some embodiments, the method further includes, before operation (c), depositing adhesion layers on the two opposing sides of the four-sided pyramidal-shaped structure, with the metal layers being deposited on the adhesion layers. In some embodiments, depositing the adhesion layers is performed with a shadow evaporation process, with the adhesion layers comprising a metal.</p>
<p id="p-0009" num="0008">In some embodiments, the method further comprises after operation (c), depositing a dielectric layer over the four-sided pyramidal-shaped structure, including the metal layers. In some embodiments, the dielectric layer is about 2 nanometers to 5 nanometers thick. In some embodiments, the dielectric layer is selected from a group consisting of silicon oxide, aluminum oxide, hafnium oxide, and silicon nitride.</p>
<p id="p-0010" num="0009">In some embodiments, operation (c) is performed with a shadow evaporation process. In some embodiments, the metal layers are selected from a group consisting of gold, silver, copper, and aluminum. In some embodiments, the metal layers are about 25 nanometers to 75 nanometers thick.</p>
<p id="p-0011" num="0010">In some embodiments, the gap is about 1 nanometer to 100 nanometers wide between the metals layers deposited on the two opposing sides of the four-sided pyramidal-shaped structure. In some embodiments, the gap is about 25 nanometers to 75 nanometers deep in the dielectric material. In some embodiments, the dielectric material is selected from a group consisting of an optically transparent polymer, diamond, silicon oxide, silicon nitride, aluminum oxide, indium tin oxide, and hafnium oxide.</p>
<p id="p-0012" num="0011">Another innovative aspect of the subject matter described in this disclosure can be implemented a method including: (a) providing an transparent tip comprising a dielectric material; (b) forming a four-sided pyramidal-shaped structure at an apex of the transparent tip using a focused ion beam; and (c) depositing doped semiconductor layers over two opposing sides of the four-sided pyramidal-shaped structure.</p>
<p id="p-0013" num="0012">In some embodiments, the method further includes after operation (c), forming a gap between the doped semiconductor layers at an apex of the four-sided pyramidal-shaped structure. In some embodiments, the doped semiconductor layers are selected from a group consisting of doped-titanium oxide, doped-zirconium oxide, doped-zinc oxide, and tin-doped indium oxide (ITO).</p>
<p id="p-0014" num="0013">Another innovative aspect of the subject matter described in this disclosure can be implemented a device including a transparent tip, metal layers, and a dielectric layer. The transparent tip comprises a dielectric material, with an apex of the transparent tip including a four-sided pyramidal-shaped structure. The metal layers are disposed over two opposing sides of the four-sided pyramidal-shaped structure, with an apex of the four-sided pyramidal-shaped structure including a gap between the metal layers. The dielectric layer is disposed on the four-sided pyramidal-shaped structure, including the metal layers.</p>
<p id="p-0015" num="0014">In some embodiments, the device further includes adhesion layers disposed on the two opposing sides of the four-sided pyramidal-shaped structure, with the metal layers being disposed on the adhesion layers. In some embodiments, the adhesion layers are selected from a group consisting of titanium and chromium.</p>
<p id="p-0016" num="0015">In some embodiments, the dielectric layer is selected from a group consisting of silicon oxide, aluminum oxide, hafnium oxide, and silicon nitride. In some embodiments, the dielectric layer is about 2 nanometers to 5 nanometers thick.</p>
<p id="p-0017" num="0016">Details of one or more embodiments of the subject matter described in this specification are set forth in the accompanying drawings and the description below. Other features, aspects, and advantages will become apparent from the description, the drawings, and the claims. Note that the relative dimensions of the following figures may not be drawn to scale.</p>
<?BRFSUM description="Brief Summary" end="tail"?>
<?brief-description-of-drawings description="Brief Description of Drawings" end="lead"?>
<description-of-drawings>
<heading id="h-0006" level="1">BRIEF DESCRIPTION OF THE DRAWINGS</heading>
<p id="p-0018" num="0017"><figref idref="DRAWINGS">FIG. 1</figref> shows an example of an isometric illustration of a campanile probe.</p>
<p id="p-0019" num="0018"><figref idref="DRAWINGS">FIGS. 2A</figref>, <b>2</b>B, and <b>3</b> show examples of cross-sectional schematic illustrations of the apex of a four-sided pyramidal-shaped structure of a campanile probe.</p>
<p id="p-0020" num="0019"><figref idref="DRAWINGS">FIGS. 4 and 5</figref> show examples of scanning electron microscope (SEM) photographs of a campanile probe.</p>
<p id="p-0021" num="0020"><figref idref="DRAWINGS">FIG. 6A</figref> shows an example of a top-down schematic illustration of an end or apex of a MIM probe.</p>
<p id="p-0022" num="0021"><figref idref="DRAWINGS">FIG. 6B</figref> shows an example of a cross-sectional schematic illustration of a MIM probe including a tapered cylindrical coaxial structure.</p>
<p id="p-0023" num="0022"><figref idref="DRAWINGS">FIG. 7</figref> shows an example of a flow diagram illustrating a manufacturing process for a campanile probe.</p>
</description-of-drawings>
<?brief-description-of-drawings description="Brief Description of Drawings" end="tail"?>
<?DETDESC description="Detailed Description" end="lead"?>
<heading id="h-0007" level="1">DETAILED DESCRIPTION</heading>
<p id="p-0024" num="0023">Reference will now be made in detail to some specific examples of the invention including the best modes contemplated by the inventors for carrying out the invention. Examples of these specific embodiments are illustrated in the accompanying drawings. While the invention is described in conjunction with these specific embodiments, it will be understood that it is not intended to limit the invention to the described embodiments. On the contrary, it is intended to cover alternatives, modifications, and equivalents as may be included within the spirit and scope of the invention as defined by the appended claims.</p>
<p id="p-0025" num="0024">In the following description, numerous specific details are set forth in order to provide a thorough understanding of the present invention. Particular example embodiments of the present invention may be implemented without some or all of these specific details. In other instances, well known process operations have not been described in detail in order not to unnecessarily obscure the present invention.</p>
<p id="p-0026" num="0025">Various techniques and mechanisms of the present invention will sometimes be described in singular form for clarity. However, it should be noted that some embodiments include multiple iterations of a technique or multiple instantiations of a mechanism unless noted otherwise.</p>
<heading id="h-0008" level="1">INTRODUCTION</heading>
<p id="p-0027" num="0026">Various near-field probe geometries have been engineered with extraordinary optical transmission or with coupled optical antenna structures directly on the scan-probe apex, greatly improving coupling efficiencies. However, these generally rely on resonant structures with limited spectral bandwidth and have often used excitation modalities that are not background-free. Of note are recent approaches combining elements of apertureless near-field scanning microscopy (a-NSOM) tips with efficient photon-to-plasmon coupling structures that can be illuminated far from the sample. When designed correctly, these types of probes can be broadband since they exploit adiabatic plasmonic compression.</p>
<p id="p-0028" num="0027">There is, however, one drawback to these probes: maximum enhancement is only achieved in the tip-substrate gap mode. The tip-substrate gap mode can yield large near-field signals, but requires both a metallic substrate and a very small tip-substrate gap. Therefore, only very thin samples (e.g., molecular monolayers) can be studied.</p>
<p id="p-0029" num="0028">Embodiments described herein can overcome all these problems, offering a different concept that unites broadband field enhancement and confinement with efficient bi-directional coupling between far-field and near-field electromagnetic energy, thereby enabling the translation of the wide spectrum of optical measurement modalities to the nanometer scale.</p>
<p id="h-0009" num="0000">Device and Methods</p>
<p id="p-0030" num="0029">Embodiments of a campanile probe disclosed herein are based on a three-dimensional tapered metal-insulator-metal (MIM) structure ending in a nanogap. Simulations have shown that this geometry can provide efficient coupling between far- and near-fields since the fundamental mode in an MIM structure is supported without any cut-off frequency, no matter how thin the insulating layer. In the optical regime, where plasmonic effects become important at small length scales, it has been shown that efficient delivery of far-field light to an ultra-small region is possible in two dimensions using a tapered planar MIM structure (&#x3e;70% conversion efficiency), and in three dimensions with a dimple lens structure. Equally important is the fact that the bi-directional coupling of the campanile probe is efficient over a large bandwidth, taking advantage of an adiabatically-tapered geometry utilized at longer wavelengths (e.g., the microwave and terahertz regimes) to provide a simple broadband method for effectively overcoming the diffraction limit. The bandwidth may be limited by metal absorption at short wavelengths, and can be extended well into the infrared region (and beyond). Other metals can be used to access the blue or ultraviolet (UV) regions.</p>
<p id="p-0031" num="0030"><figref idref="DRAWINGS">FIG. 1</figref> shows an example of an isometric illustration of a campanile probe. A campanile probe <b>100</b> comprises a transparent tip comprising a dielectric material <b>105</b>. An apex of the transparent tip includes a four-sided pyramidal-shaped structure. Metal layers <b>110</b> and <b>115</b> are disposed over two opposing sides of the four-sided pyramidal-shaped structure. An apex <b>120</b> of the four-sided pyramidal-shaped structure includes a gap between the metal layers <b>110</b> and <b>115</b>.</p>
<p id="p-0032" num="0031">In some embodiments, the dielectric material <b>105</b> of the transparent tip may comprise an optically transparent material; an optically transparent material is a material that allows light (e.g., visible light, infrared light, or ultraviolet light) to pass through the material without being scattered. In some embodiments, the dielectric material <b>105</b> of the transparent tip may comprise an optically transparent polymer, diamond, silicon oxide (SiO<sub>2</sub>, SiO, SiO<sub>x</sub>, where x is a non-integer number), silicon nitride (Si<sub>3</sub>N<sub>4</sub>), aluminum oxide (Al<sub>2</sub>O<sub>3</sub>), indium tin oxide (ITO, a solid solution of indium oxide (In<sub>2</sub>O<sub>3</sub>) and tin oxide (SnO<sub>2</sub>)), and hafnium oxide (HfO<sub>2</sub>).</p>
<p id="p-0033" num="0032">In some embodiments, the metal layers <b>110</b> and <b>115</b> may comprise gold, silver, copper, or aluminum. In some embodiments, the metal layers may be about 25 nanometers (nm) to 75 nm thick, or about 50 nm thick. In some embodiments, the metal layer may be greater than about 75 nm thick. Such a campanile probe having metal layers may be used with visible light.</p>
<p id="p-0034" num="0033">In some embodiments, the campanile probe <b>100</b> may include adhesion layers (now shown) disposed on the two opposing sides of the four-sided pyramidal-shaped structure. The metal layers <b>110</b> and <b>115</b> are disposed on the adhesion layers. The adhesion layers may aid in adhering the metal layers <b>110</b> and <b>115</b> to the dielectric material <b>105</b>.</p>
<p id="p-0035" num="0034">In some embodiments, the adhesion layers may comprise a metal. For example, in some embodiments, the adhesion layers may comprise titanium or chromium. In some embodiments, the adhesion layers may be about 1 nm to 5 nm thick, or about 2 nm thick.</p>
<p id="p-0036" num="0035">In some embodiments, the campanile probe <b>100</b> may include a dielectric layer (not shown) disposed on the four-sided pyramidal-shaped structure, including the metal layers. In some embodiments, the dielectric layer comprises silicon oxide, aluminum oxide, hafnium oxide, or silicon nitride. In some embodiments, the dielectric layer may be about 2 nm to 5 nm thick.</p>
<p id="p-0037" num="0036">In some embodiments, the dielectric layer may protect the metal layers <b>110</b> and <b>115</b> from oxidation and from mechanical damage when the campanile probe <b>100</b> is in use. Such a dielectric layer also may aid in keeping the metal layers <b>110</b> and <b>115</b> disposed on or over the four-sided pyramidal-shaped structure. For example, the metal layers of a campanile probe that does not include the dielectric layer may peel away from or flake off of the four-sided pyramidal-shaped structure when the campanile probe is in operation. Further, the dielectric layer may reduce or prevent atomic migration of the metal layers <b>110</b> and <b>115</b> (e.g., due to thermal effects), which may also aid in keeping the metal layers <b>110</b> and <b>115</b> disposed on or over the four-sided pyramidal-shaped structure. In some embodiments, the dielectric layer may prevent electrical contact between a sample being studied and the campanile probe.</p>
<p id="p-0038" num="0037">In some embodiments, a substantially square or a rectangular base <b>125</b> of the dielectric material <b>105</b> comprising the four-sided pyramidal-shaped structure may have dimensions of about 50 nm to 20 microns by about 50 nm to 20 microns, about 50 nm to 5 microns by about 50 nm to 5 microns, or about 100 nm to 200 nm by about 100 nm to 200 nm. In some embodiments, at least one dimension of the substantially square or a rectangular base <b>125</b> (i.e., a length or a width) may have a dimension that is that is larger than the wavelength of the electromagnetic radiation to be used with the campanile probe <b>100</b>.</p>
<p id="p-0039" num="0038">In some embodiments, the substantially square or a rectangular base <b>125</b> may have a height of about 1 nm to 5 microns or about 1 nm to 1 micron. In some embodiments, the substantially square or a rectangular base <b>125</b> may have a specific height to aid in the fabrication process. In some embodiments, the four-sided pyramidal-shaped structure may have a square or a rectangular base, but the base may have no height or a height of zero.</p>
<p id="p-0040" num="0039">In some embodiments, an angle <b>130</b> at which a side of the four-sided pyramidal-shaped structure slopes compared to a vertical axis of the campanile probe <b>100</b> may be about 15 degrees to 45 degrees, about 20 degrees to 40 degrees, or about 30 degrees.</p>
<p id="p-0041" num="0040"><figref idref="DRAWINGS">FIGS. 2A</figref>, <b>2</b>B, and <b>3</b> show examples of cross-sectional schematic illustrations of the apex of a four-sided pyramidal-shaped structure of a campanile probe. As shown in <figref idref="DRAWINGS">FIG. 2A</figref>, the apex <b>120</b> of the four-sided pyramidal-shaped structure includes a gap between the metal layers <b>110</b> and <b>115</b>. In some embodiments, the gap may be about 1 nm to 100 nm wide, about 2 nm to 50 nm wide, or less about 10 nm wide, between the metal layers <b>110</b> and <b>115</b>. In some embodiments, the gap may define a substantially flat surface of the dielectric material <b>105</b> of the transparent tip, and separate the metal layers <b>110</b> and <b>115</b> by about 1 nm to 100 nm or about 2 nm to 50 nm. In some embodiments, a length of the gap (i.e., into the paper of the cross sectional schematic illustration shown in <figref idref="DRAWINGS">FIG. 2A</figref>) may be about 1 nm to 15 nm, about 15 nm to 45 nm, or about 30 nm.</p>
<p id="p-0042" num="0041">In some embodiments, the apex of the four-sided pyramidal-shaped structure may include a substantially flat surface comprising the dielectric material <b>105</b>. In some embodiments, the edges of the metal layers <b>110</b> and <b>115</b> may be tapered, as shown by the dashed lines at that apex of the four-sided pyramidal-shaped structure shown in <figref idref="DRAWINGS">FIG. 2B</figref>.</p>
<p id="p-0043" num="0042">In some embodiments, some or all of the dielectric material may be removed from the gap between the two metal layers. An example of such an apex of a four-sided pyramidal-shaped structure is shown in <figref idref="DRAWINGS">FIG. 3</figref>. The apex <b>300</b> of the four-sided pyramidal-shaped structure shown in <figref idref="DRAWINGS">FIG. 3</figref> includes a gap between the metal layers <b>110</b> and <b>115</b>. In some embodiments, the gap may be about 1 nm to 100 nm wide, about 2 nm to 50 nm wide, or less than about 10 nm wide, between the metal layers <b>110</b> and <b>115</b>. The gap also may have a depth of about 25 nm to 75 nm; i.e., the gap may define an open region that does not include any material (i.e., the dielectric material or the metal layers). In some embodiments, a length of the gap (i.e., into the paper of the cross sectional schematic illustration shown in <figref idref="DRAWINGS">FIG. 2B</figref>) may be about 1 nm to 15 nm, about 15 nm to 45 nm, or about 30 nm. In some embodiments, an open gap as shown in <figref idref="DRAWINGS">FIG. 3</figref> may push the near field spot generated by a campanile probe from the apex of the four-sided pyramidal-shaped structure, which may enable the campanile probe to couple with a sample being studied more efficiently.</p>
<p id="p-0044" num="0043">A campanile probe including metal layers is operable with visible light. In some embodiments, instead of the four-sided pyramidal structure of the transparent tip having metal layers disposed over two opposing sides of the four-sided pyramidal structure, doped semiconductor layers or layers of other ceramic materials are disposed over two opposing sides of the four-sided pyramidal structure. Such a campanile probe including doped semiconductor layers or layers of other ceramic materials may be operable with infrared light. In some embodiments, the doped semiconductor layers may include conductive oxide layers or doped metal oxide layers. For example, in some embodiments, the doped metal oxide layers include layers of doped-titanium oxide, doped-zirconium oxide, doped-zinc oxide, and tin-doped indium oxide (ITO). In some embodiments, the layers of ceramic material may include titanium nitride.</p>
<p id="p-0045" num="0044">Using nanofabrication techniques, the campanile probe <b>100</b> can be incorporated into many different transparent tips associated with scanning probe tips, including atomic force microscopy (AFM) cantilevers and optical fibers such as those used in conventional aperture-based NSOM.</p>
<p id="p-0046" num="0045"><figref idref="DRAWINGS">FIGS. 4 and 5</figref> show examples of scanning electron microscope (SEM) micrographs of a campanile probe. As shown in the SEM micrograph of <figref idref="DRAWINGS">FIG. 4</figref>, a campanile probe <b>400</b> includes a four-sided pyramidal-shaped structure <b>405</b> with a square or rectangular base <b>410</b>. The dimension bar shown in <figref idref="DRAWINGS">FIG. 4</figref> indicates that the thickness or width of the base of the four-sided pyramidal-shaped structure of the campanile probe <b>400</b> is 1.07 microns.</p>
<p id="p-0047" num="0046">As shown in the SEM micrograph of <figref idref="DRAWINGS">FIG. 5</figref>, an apex <b>500</b> of a campanile probe includes a first metal layer <b>505</b>, a second metal layer <b>510</b>, and a dielectric material <b>515</b>; white dotted lines are included in <figref idref="DRAWINGS">FIG. 5</figref> to more clearly define the dielectric material and the metal layers. A gap <b>520</b> is defined between the first metal layer <b>505</b> and the second metal layer <b>510</b>. The gap <b>520</b> does not include any of the first or second metal layers <b>505</b> and <b>510</b>, and the dielectric material <b>515</b> has been removed from the gap. In <figref idref="DRAWINGS">FIG. 5</figref>, the dimension bar indicates that the width of the gap at the apex of the campanile probe is 39 nm.</p>
<p id="p-0048" num="0047">In some embodiments, a metal-insulator-metal (MIM) probe may include a tapered cylindrical coaxial structure at an apex of a transparent tip, instead of a four-sided pyramidal-shaped structure as in a campanile probe. Light from a tapered cylindrical coaxial structure may be of a different polarization compared to light from a campanile probe including a four-sided pyramidal-shaped structure. Further, a MIM probe including a tapered cylindrical coaxial structure may have a sharper apex or end than the four-sided pyramidal-shaped structure of a campanile probe, which may improve the topographical mapping capabilities of a MIM probe.</p>
<p id="p-0049" num="0048"><figref idref="DRAWINGS">FIG. 6A</figref> shows an example of a top-down schematic illustration of a tip or apex of a MIM probe. <figref idref="DRAWINGS">FIG. 6B</figref> shows an example of a cross-sectional schematic illustration of a MIM probe including a tapered cylindrical coaxial structure. The cross-sectional schematic illustration shown in <b>6</b>B is through line <b>1</b>-<b>1</b> of <figref idref="DRAWINGS">FIG. 6A</figref>.</p>
<p id="p-0050" num="0049">As shown in <figref idref="DRAWINGS">FIGS. 6A and 6B</figref>, a MIM probe <b>600</b> includes a metal probe <b>605</b>, a dielectric material <b>610</b>, and a metal layer <b>615</b> disposed over the dielectric material. In some embodiments, the metal probe <b>605</b> and the metal layer <b>615</b> are not in electrical contact.</p>
<p id="p-0051" num="0050">In some embodiments, the dielectric material <b>610</b> forms a cone-shaped structure. In some embodiments, the dielectric material <b>610</b> substantially forms a right circular cone. In some embodiments, the metal probe <b>605</b> extends along an axis of the cone-shaped structure formed by the dielectric material <b>610</b>; the axis of a cone is the straight line, passing through the apex of the cone, about which the base of the cone has a rotational symmetry. In some embodiments, an end of the MIM probe <b>600</b> includes an exposed tip of the metal probe <b>605</b>, with the dielectric material <b>610</b> surrounding the metal probe <b>605</b> except at the end or apex and at a base of the metal probe <b>605</b>. In some embodiments, the metal layer <b>615</b> is disposed over the dielectric material <b>610</b>, with a portion of the dielectric material <b>610</b> not including the metal layer <b>615</b>. In some embodiments, the portion of the dielectric material <b>610</b> proximate the end or apex of the MIM probe <b>600</b> not including the metal layer <b>615</b> serves to electrically insulate the metal probe <b>605</b> from the metal layer <b>615</b>.</p>
<p id="p-0052" num="0051">In some embodiments, a gap between metal probe <b>605</b> and metal layer <b>615</b> at the apex of the MIM probe <b>600</b> may be about 1 nm to 100 nm, about 2 nm to 50 nm, or less about 10 nm. With the MIM probe <b>600</b> as shown in <figref idref="DRAWINGS">FIGS. 6A and 6B</figref>, the gap may be considered the shortest distance between the metal probe <b>605</b> and metal layer <b>615</b>. In some embodiments, sides or edges of the metal probe <b>605</b> may be spaced equidistantly apart from the metal layer <b>615</b>; that is, the MIM probe <b>600</b> may be substantially circularly symmetric when viewed from the top-down, as shown in <figref idref="DRAWINGS">FIG. 6A</figref>.</p>
<p id="p-0053" num="0052">In some embodiments, the metal probe <b>605</b> may comprise gold, silver, copper, or aluminum. In some embodiments, the metal probe <b>605</b> may have a diameter of about 1 nm to 3 nm, or about 2 nm, at the end or apex of the MIM probe <b>600</b> (i.e., at the top of the MIM probe <b>600</b> as shown in <figref idref="DRAWINGS">FIG. 6B</figref>). In some embodiments, the metal probe <b>605</b> may have a diameter of about 10 nm to 100 nm a base of the MIM probe <b>600</b> (i.e., at the bottom of the MIM probe <b>600</b> as shown in <figref idref="DRAWINGS">FIG. 6B</figref>).</p>
<p id="p-0054" num="0053">In some embodiments, the dielectric material <b>610</b> may comprise an optically transparent polymer, diamond, silicon oxide, silicon nitride, aluminum oxide, indium tin oxide, and hafnium oxide. In some embodiments, the dielectric material <b>610</b> may be disposed on the metal probe <b>605</b>.</p>
<p id="p-0055" num="0054">In some embodiments, the metal layer <b>615</b> may comprise gold, silver, copper, or aluminum. In some embodiments, the metal layer <b>615</b> may be about may be about 25 nm to 75 nm thick, or about 50 nm thick. In some embodiments, the metal layer <b>615</b> may be greater than about 75 nm thick.</p>
<p id="p-0056" num="0055">Similar to the campanile probe <b>100</b> described with respect to <figref idref="DRAWINGS">FIGS. 1-3</figref>, in some embodiments, the MIM probe <b>600</b> may include an adhesion layer (now shown) disposed on the dielectric material <b>610</b>. The metal layer <b>615</b> is disposed on the adhesion layer. The adhesion layer may aid in adhering the metal layer <b>615</b> to the dielectric material <b>610</b>. In some embodiments, the adhesion layer may comprise a metal. For example, in some embodiments, the adhesion layer may comprise titanium or chromium. In some embodiments, the adhesion layer may be about 1 nm to 5 nm thick, or about 2 nm thick.</p>
<p id="p-0057" num="0056">Again, similar to the campanile probe <b>100</b> described with respect to <figref idref="DRAWINGS">FIGS. 1-3</figref>, in some embodiments, the MIM probe <b>600</b> may include a dielectric layer (not shown) disposed on the exterior surfaces of the MIM probe <b>600</b>, including metal probe <b>605</b>, the dielectric layer <b>610</b>, and the metal layer <b>615</b>. In some embodiments, the dielectric layer comprises silicon oxide, aluminum oxide, hafnium oxide, or silicon nitride. In some embodiments, the dielectric layer may be about 2 nm to 5 nm thick.</p>
<p id="p-0058" num="0057"><figref idref="DRAWINGS">FIG. 7</figref> shows an example of a flow diagram illustrating a manufacturing process for a campanile probe. The methods disclosed herein may be used to fabricate any of the campanile probes described herein. Starting at block <b>705</b> of a process <b>700</b>, a transparent tip comprising a dielectric material is provided. In some embodiments, the dielectric material of the transparent tip may comprise an optically transparent material. In some embodiments, the dielectric material may comprise an optically transparent polymer, diamond, silicon oxide, silicon nitride, aluminum oxide, indium tin oxide, and hafnium oxide.</p>
<p id="p-0059" num="0058">In some embodiments, the transparent tip may be fabricated by etching an end of an optical fiber to form a cone-shaped structure. In some embodiments, the etching process may comprise a wet-etching process using, for example, hydrofluoric acid (HF). In some embodiments, the optical fiber may have a diameter of about 1.2 microns to 3.8 microns, or about 2.5 microns. In some embodiments, the cone-shaped structure may have a tip radius of about 50 nm to 150 nm, or about 100 nm. In some embodiments, the transparent tip may be a scanning probe tip, such as an atomic force microscopy tip, for example.</p>
<p id="p-0060" num="0059">Returning to <figref idref="DRAWINGS">FIG. 7</figref>, at block <b>710</b> of the process <b>700</b> a four-sided pyramidal-shaped structure is formed at an apex of the transparent tip. In some embodiments, the four-sided pyramidal-shaped structure is formed using a focused ion beam. For example, a focused ion beam may be used to remove material from the transparent tip in such a manner that the four-sided pyramidal-shaped structure remains at the apex of the transparent tip. In some embodiments, the focused ion beam may use gallium ions or argon ions. In some embodiments, the focused ion beam may use helium ions, which may improve the resolution of the focused ion beam compared to other ions.</p>
<p id="p-0061" num="0060">At block <b>715</b> of the process <b>700</b>, metal layers are deposited over two opposing sides of the four-sided pyramidal-shaped structure. In some embodiments, the metal layers may be deposited using a shadow evaporation process or an angle-resolved evaporation process. In some embodiments, the metal layers may be deposited using an atomic layer deposition (ALD) process. In some embodiments, the metal layers may comprise gold, silver, copper, or aluminum. In some embodiments, the metal layers may be about 25 nm to 75 nm thick, or about 50 nm thick. In some embodiments, the metal layers may be greater than about 75 nm thick.</p>
<p id="p-0062" num="0061">In some embodiments, the metal layers may not be in electrical contact at the apex of the four-sided pyramidal-shaped structure or a well-defined gap between the metal layers may be present at the apex of the four-sided pyramidal-shaped structure after block <b>715</b>. For example, in some embodiments, the metal deposition process at block <b>715</b> may produce a well-defined gap or space between the two metal layers.</p>
<p id="p-0063" num="0062">In some embodiments, the metal layers may be in electrical contact at the apex of the four-sided pyramidal-shaped structure or a well-defined gap between the metal layers may not be present at the apex of the four-sided pyramidal-shaped structure after block <b>715</b>. For example, in some embodiments, the metal deposition process at block <b>715</b> may not produce a well-defined gap or space between the two metal layers. When the metal layers are in electrical contact or there is not a well-defined gap at the apex of the four-sided pyramidal-shaped structure, a gap between the metal layer may be formed with an additional operation at block <b>720</b>.</p>
<p id="p-0064" num="0063">For example, at block <b>720</b> of the process <b>700</b>, a gap is formed between the metal layers at an apex of the four-sided pyramidal-shaped structure. Forming a gap at block <b>720</b> helps to ensure that there is a well-defined gap or space between the metal layers and that there in not electrical contact between the metal layers. Many different processes may be used to form a gap between the metal layers at block <b>720</b>.</p>
<p id="p-0065" num="0064">In some embodiments, the gap may be formed using a focused ion beam. In some embodiments, the focused ion beam may use gallium ions or argon ions. In some embodiments, the focused ion beam may use helium ions, which may improve the resolution of the focused ion beam compared to other ions.</p>
<p id="p-0066" num="0065">In some embodiments, forming the gap may include forming a gap between the metal layers and removing the dielectric material of the transparent tip between the metal layers, resulting in a gap as shown in <figref idref="DRAWINGS">FIG. 3</figref>. In some embodiments, forming the gap may include directing a focused ion beam along the z-direction of a campanile probe (as shown in <figref idref="DRAWINGS">FIG. 1</figref>). In some embodiments, the gap may be about 1 nm to 100 nm wide, about 2 nm to 50 nm wide, or less than about 10 nm wide, between the two metal layers, and about 25 nm to 75 nm deep; i.e., the gap may define an open region not including any material (i.e., the dielectric material or the metal layers). In some embodiments, a length of the gap (i.e., into the paper of the cross sectional schematic illustration shown in <figref idref="DRAWINGS">FIG. 3</figref>) may be about 1 nm to 15 nm, about 15 nm to 45 nm, or about 30 nm.</p>
<p id="p-0067" num="0066">In some embodiments, forming the gap may include forming a gap between the metal layers, with the dielectric material of the transparent tip remaining between the metal layers, resulting in a gap as shown in <figref idref="DRAWINGS">FIG. 2A</figref>. In some embodiments, forming the gap may include an ion milling process in which x-y planes (as shown in <figref idref="DRAWINGS">FIG. 1</figref>) of material are removed from the apex of a four-sided pyramidal-shaped structure. In some embodiments, the gap may be about 1 nm to 100 nm wide, about 2 nm to 50 nm wide, or less than about 10 nm wide, between the two meal layers. In some embodiments, the gap may define a substantially flat surface of the dielectric material of the transparent tip, and separate the metal layers by about 1 nm to 100 nm, about 2 nm to 50 nm, or by less than about 10 nm. In some embodiments, a length of the gap (i.e., into the paper of the cross sectional schematic illustration shown in <figref idref="DRAWINGS">FIG. 2A</figref>) may be about 1 nm to 15 nm, about 15 nm to 45 nm, or about 30 nm.</p>
<p id="p-0068" num="0067">In some embodiments, forming the gap may include applying a current and a voltage to the two metal layers of a sufficient strength to melt any metal connection between the two metal layers at the apex of the four-sided pyramidal-shaped structure. When the metal at the apex melts, the metal may form small spheres (i.e., due to surface tension), and this may sever the electrical contact between the two metal layers.</p>
<p id="p-0069" num="0068">In some embodiments, forming the gap may include inducing mechanical stresses at the apex of the four-sided pyramidal-shaped structure that cause the end of the apex to break off or fracture. For example, due to thermal expansion mismatches between the transparent tip and the metal layers, mechanical stresses may be induced in the in the four-sided pyramidal-shaped structure by heating it up and then cooling it down. As another example, when the material of the transparent tip is a piezoelectric material, a voltage may be applied across the transparent tip which may induce mechanical stresses.</p>
<p id="p-0070" num="0069">In some embodiments of the process <b>700</b>, before block <b>715</b>, adhesion layers may be deposited on the two opposing sides of the four-sided pyramidal-shaped structure. The metal layers may be deposited on the adhesion layers at block <b>715</b>.</p>
<p id="p-0071" num="0070">In some embodiments, the adhesion layers may comprise a metal. For example, in some embodiments, the adhesion layers may comprise titanium or chromium. In some embodiments, the adhesion layers may be about 1 nm to 5 nm thick, or about 2 nm thick. In some embodiments, the adhesion layers may be deposited using a shadow evaporation process or an ALD process.</p>
<p id="p-0072" num="0071">In some embodiments of the process <b>700</b>, before block <b>715</b>, surfaces of the four-sided pyramidal-shaped structure may be functionalized with thiol groups (e.g., sulfhydryl groups). In some embodiments, the thiol groups may improve the adhesion of the metal layers to the dielectric material of the four-sided pyramidal-shaped structure while absorbing little or no light. Further details regarding adhesion layers and functionalization with thiol groups can be found in Terefe G. Habteyes, Scott Dhuey, Erin Wood, Daniel Gargas, Stefano Cabrini, P. James Schuck, A. Paul Alivisatos, and Stephen R. Leone, Metallic Adhesion Layer Induced Plasmon Damping and Molecular Linker as a Nondamping Alternative, ACS Nano, 2012, 6 (6), pp 5702-5709, which is herein incorporated by reference.</p>
<p id="p-0073" num="0072">In some embodiments, the process <b>700</b> may further include depositing a dielectric layer over the four-sided pyramidal-shaped structure after block <b>715</b> or block <b>720</b>. In some embodiments, the dielectric layer may be deposited on the entire four-sided pyramidal-shaped structure, including the metal layers. In some embodiments, the dielectric layer may be deposited with an ALD process or a chemical vapor deposition process. In some embodiments, the dielectric layer comprises silicon oxide, aluminum oxide, hafnium oxide, or silicon nitride. In some embodiments, the dielectric layer may be about 2 nm to 5 nm thick.</p>
<p id="p-0074" num="0073">In some embodiments, a process similar to the process <b>700</b> may be performed, but instead of depositing metal layers at block <b>715</b>, doped semiconductor layers may be deposited. Such a process may be used to fabricate a campanile probe configured to operate with infrared light, as described with respect to the campanile probe <b>100</b> shown in <figref idref="DRAWINGS">FIG. 1</figref>.</p>
<heading id="h-0010" level="1">EXAMPLE</heading>
<p id="p-0075" num="0074">The following example of experiments performed with a campanile probe as disclosed herein is intended to be an example of methods of use of the embodiments disclosed herein, and is not intended to be limiting.</p>
<p id="p-0076" num="0075">To demonstrate the utility of campanile probes, campanile probes with about 40 nm wide gaps were used to map out the inhomogeneous radiative recombination in individual indium phosphide (InP) nanowires (NWs), chosen because of their photoluminescence emission properties and their potential as a nanomaterial for light harvesting due to the 1.4 eV band gap and assumed low surface recombination rates. Trap states are believed to be responsible for many optical phenomena in nanocrystals and wires, including surface-state-mediated luminescence modification in InP NWs, but are not well-understood due to optical resolution limitations. Gaining this insight requires both local optical excitation and local luminescence collection.</p>
<p id="p-0077" num="0076">A glass fiber with a campanile probe was mounted in a shear-force scanner and coupled to a 633 nm laser. The near-field spot was scanned over the sample to locally excite and collect the photoluminescence from the InP NWs. Because of the broadband enhancement, only 100 &#x3bc;W of pre-fiber-coupled laser excitation power was needed to collect and disperse a full emission spectrum with a high resolution grating between 760 nm and 900 nm. With a 100 ms integration time, a signal-to-noise ratio &#x3e;60/1 was achieved.</p>
<p id="p-0078" num="0077">Topography and a full spectrum were recorded at each image pixel, and photoluminescence maps were built by taking slices from the hyperspectral data. The confocal excitation power used for a far-field confocal microscope was equivalent to that used for the campanile probe to achieve a comparable signal to noise ratio. The campanile probe provided resolution approximately equal to the gap size and much higher than the confocal resolution.</p>
<p id="p-0079" num="0078">It has previously been observed that strong photoluminescence enhancements and photoluminescence blue shifts result from passivated InP NW surfaces. This was attributed to Coulombic interactions between excitons and positively-charged trap states on the NW surfaces. These studies substantiated the hypothesis that trap states influence the optoelectronic properties of nanocrystals and nanowires much more strongly than commonly assumed. The exciton diffusion length in these materials is hundreds of nanometers, and therefore individual trap states within the diffusion volume should strongly influence the local absorption energy and charge recombination rate. However, this has not been directly observed due to the lack of resolution.</p>
<p id="p-0080" num="0079">It is believed that the observed heterogeneity along the wires on length scales well below the exciton diffusion length are direct maps of trap-state modifications of the local exciton properties. The observed photoluminescence intensity hot spots are likely due to an increase of trap state densities (and changes in the native oxide layer) at the wire ends resulting from the NW broken-end morphology. Their spectral characteristics are consistent with a trap-induced Stark shift, predicted to be &#x2dc;60 meV to 70 meV above the band edge for positive trap states, in accordance with these experiments. Additionally, local trap states are known to cause Fermi level pinning and local band bending in some cases, which would also affect local recombination rates. In contrast, the absence of spectral variations in confocal measurements can be attributed to (a) the lack of spatial resolution and (b) the far-field photoluminescence measurement probing the entire NW thickness; i.e., surface-specific effects are obscured by bulk behavior. Catholuminesence measurements on InP NWs achieve a comparable resolution and provide complementary information. However, the large number of incident electrons fill the trap states and do not detect any spatial variation in emission from InP NWs.</p>
<p id="p-0081" num="0080">It should be noted that the increased density of optical states at the tip apex (i.e., the apex of the four-sided pyramidal-shaped structure) will change the balance between various recombination pathways and may enable otherwise dark states to radiatively recombine. It should also be noted that measurements on NWs, and any sample thicker than about 2 nm, are not possible with a-NSOM in tip-substrate gap mode, and therefore all other near-field/tip-enhanced techniques previously demonstrated lack the signal strength and sensitivity shown here, which is critical for investigating the majority of samples.</p>
<p id="p-0082" num="0081">Campanile probe far- to near-field transformers provide a pathway for understanding energy conversion processes at their critical length scales, which, for example, yielded new insights into the role of local trap states on radiative charge recombination in InP NWs. More generally, this example demonstrates the potential impact of the campanile probe geometry on a wide range of nano-optical measurements, since virtually all possible categories of optical imaging and spectroscopy can now be brought to the nanoscale, including Raman and IR/FTIR hyperspectral imaging, as well as white-light nanoellipsometry/interferometric mapping of dielectric functions. Additionally, it is expected that the combination of large bandwidth and enhancement will make campanile probes useful for ultrafast, pump-probe and/or nonlinear experiments down to molecular length scales, where they would be used for ultrasensitive medical detection, (photo)catalysis and quantum-optics investigations, as plasmonic optomechanics and circuitry elements, and as the cornerstone of tabletop high-harmonic/X-ray and photoemission sources.</p>
<heading id="h-0011" level="1">CONCLUSION</heading>
<p id="p-0083" num="0082">Further details regarding the above-disclosed embodiments can be found in &#x201c;Mapping Local Charge Recombination Heterogeneity by Multidimensional Nanospectroscopic Imaging,&#x201d; Wei Bao, M. Melli, N. Caselli, F. Riboli, D. S. Wiersma, M. Staffaroni, H. Choo, D. F. Ogletree, S. Aloni, J. Bokor, S. Cabrini, F. Intonti, M. B. Salmeron, E. Yablonovitch, P. J. Schuck, and A. Weber-Bargioni, Science 7 Dec. 2012: 338 (6112), 1317-1321, which is herein incorporated by reference.</p>
<p id="p-0084" num="0083">In the foregoing specification, the invention has been described with reference to specific embodiments. However, one of ordinary skill in the art appreciates that various modifications and changes can be made without departing from the scope of the invention as set forth in the claims below. Accordingly, the specification and figures are to be regarded in an illustrative rather than a restrictive sense, and all such modifications are intended to be included within the scope of invention.</p>
<?DETDESC description="Detailed Description" end="tail"?>
</description>
<us-claim-statement>What is claimed is:</us-claim-statement>
<claims id="claims">
<claim id="CLM-00001" num="00001">
<claim-text>1. A method comprising:
<claim-text>(a) providing a transparent tip comprising a dielectric material;</claim-text>
<claim-text>(b) forming a four-sided pyramidal-shaped structure at an apex of the transparent tip using a focused ion beam; and</claim-text>
<claim-text>(c) depositing a first layer of a material over a first side of the four-sided pyramidal-shaped structure and depositing a second layer of the material over a second side of the four-sided pyramidal-shaped structure, the first side and the second side being two opposing sides of the four-sided pyramidal-shaped structure, the material comprising a metal or a doped semiconductor, an apex of the four-sided pyramidal-shaped structure including a gap between the first layer of the material and the second layer of the material, the gap comprising a substantially flat surface of the dielectric material of the transparent tip.</claim-text>
</claim-text>
</claim>
<claim id="CLM-00002" num="00002">
<claim-text>2. The method of <claim-ref idref="CLM-00001">claim 1</claim-ref>, further comprising:
<claim-text>forming the gap between the first layer of the material and the second layer of the material at the apex of the four-sided pyramidal-shaped structure.</claim-text>
</claim-text>
</claim>
<claim id="CLM-00003" num="00003">
<claim-text>3. The method of <claim-ref idref="CLM-00001">claim 1</claim-ref>, wherein the material comprises a metal, further comprising:
<claim-text>before operation (c), depositing a first adhesion layer on the first side and a second adhesion layer on the second side of the four-sided pyramidal-shaped structure, wherein the first layer of the material and the second layer of the material are deposited on the first adhesion layer and the second adhesion layer, respectively.</claim-text>
</claim-text>
</claim>
<claim id="CLM-00004" num="00004">
<claim-text>4. The method of <claim-ref idref="CLM-00003">claim 3</claim-ref>, wherein depositing the first adhesion layer and the second adhesion layer is performed with a shadow evaporation process, and wherein the first adhesion layer and the second adhesion layer comprise a metal.</claim-text>
</claim>
<claim id="CLM-00005" num="00005">
<claim-text>5. The method of <claim-ref idref="CLM-00001">claim 1</claim-ref>, wherein the material comprises a metal, further comprising:
<claim-text>after operation (c), depositing a dielectric layer over the four-sided pyramidal-shaped structure, including the first layer of the material and the second layer of the material.</claim-text>
</claim-text>
</claim>
<claim id="CLM-00006" num="00006">
<claim-text>6. The method of <claim-ref idref="CLM-00005">claim 5</claim-ref>, wherein the dielectric layer is about 2 nanometers to 5 nanometers thick.</claim-text>
</claim>
<claim id="CLM-00007" num="00007">
<claim-text>7. The method of <claim-ref idref="CLM-00005">claim 5</claim-ref>, wherein the dielectric layer is selected from a group consisting of silicon oxide, aluminum oxide, hafnium oxide, and silicon nitride.</claim-text>
</claim>
<claim id="CLM-00008" num="00008">
<claim-text>8. The method of <claim-ref idref="CLM-00001">claim 1</claim-ref>, wherein operation (c) is performed with a shadow evaporation process.</claim-text>
</claim>
<claim id="CLM-00009" num="00009">
<claim-text>9. The method of <claim-ref idref="CLM-00001">claim 1</claim-ref>, wherein the material comprises a metal selected from a group consisting of gold, silver, copper, and aluminum.</claim-text>
</claim>
<claim id="CLM-00010" num="00010">
<claim-text>10. The method of <claim-ref idref="CLM-00001">claim 1</claim-ref>, wherein the first layer of the material and the second layer of the material are about 25 nanometers to 75 nanometers thick.</claim-text>
</claim>
<claim id="CLM-00011" num="00011">
<claim-text>11. The method of <claim-ref idref="CLM-00001">claim 1</claim-ref>, wherein the gap is about 1 nanometer to 100 nanometers wide between the first layer of the material and the second layer of the material.</claim-text>
</claim>
<claim id="CLM-00012" num="00012">
<claim-text>12. The method of <claim-ref idref="CLM-00001">claim 1</claim-ref>, wherein the dielectric material is selected from a group consisting of an optically transparent polymer, diamond, silicon oxide, silicon nitride, aluminum oxide, indium tin oxide, and hafnium oxide.</claim-text>
</claim>
<claim id="CLM-00013" num="00013">
<claim-text>13. The method of <claim-ref idref="CLM-00001">claim 1</claim-ref>, wherein the material comprises a doped semiconductor selected from a group consisting of doped-titanium oxide, doped-zirconium oxide, doped-zinc oxide, and tin-doped indium oxide (ITO).</claim-text>
</claim>
<claim id="CLM-00014" num="00014">
<claim-text>14. A device comprising:
<claim-text>a transparent tip comprising a dielectric material, an apex of the transparent tip including a four-sided pyramidal-shaped structure;</claim-text>
<claim-text>a first metal layer disposed over a first side of the four-sided pyramidal-shaped structure and a second metal layer disposed over a second side of the four-sided pyramidal-shaped structure, the first side and the second side being two opposing sides of the four-sided pyramidal-shaped structure, an apex of the four-sided pyramidal-shaped structure including a gap between the first metal layer and the second metal layer, the gap comprising a substantially flat surface of the dielectric material of the transparent tip.</claim-text>
</claim-text>
</claim>
<claim id="CLM-00015" num="00015">
<claim-text>15. The device of <claim-ref idref="CLM-00014">claim 14</claim-ref>, further comprising:
<claim-text>a first adhesion layer disposed on the first side and a second adhesion layer disposed on a second side of the four-sided pyramidal-shaped structure, wherein the first metal layer and the second metal layer are disposed on the first adhesion layer and the second adhesion layer, respectively.</claim-text>
</claim-text>
</claim>
<claim id="CLM-00016" num="00016">
<claim-text>16. The device of <claim-ref idref="CLM-00015">claim 15</claim-ref>, wherein the first adhesion layer and the second adhesion layer are selected from a group consisting of titanium and chromium.</claim-text>
</claim>
<claim id="CLM-00017" num="00017">
<claim-text>17. The device of <claim-ref idref="CLM-00014">claim 14</claim-ref>, a dielectric layer disposed on the four-sided pyramidal-shaped structure, including the first metal layer and the second metal layer, wherein the dielectric layer is selected from a group consisting of silicon oxide, aluminum oxide, hafnium oxide, and silicon nitride.</claim-text>
</claim>
<claim id="CLM-00018" num="00018">
<claim-text>18. The device of <claim-ref idref="CLM-00017">claim 17</claim-ref>, wherein the dielectric layer is about 2 nanometers to 5 nanometers thick.</claim-text>
</claim>
<claim id="CLM-00019" num="00019">
<claim-text>19. A device comprising:
<claim-text>a transparent tip comprising a dielectric material, an apex of the transparent tip including a four-sided pyramidal-shaped structure;</claim-text>
<claim-text>a first metal layer disposed over a first side of the four-sided pyramidal-shaped structure and a second metal layer disposed over a second side of the four-sided pyramidal-shaped structure, the first side and the second side being two opposing sides of the four-sided pyramidal-shaped structure, an apex of the four-sided pyramidal-shaped structure including a gap between the first metal layer and the second metal layer, the gap defining an open volume between the first metal layer and the second metal layer.</claim-text>
</claim-text>
</claim>
<claim id="CLM-00020" num="00020">
<claim-text>20. The method of <claim-ref idref="CLM-00001">claim 1</claim-ref>, further comprising:
<claim-text>removing a portion of the dielectric material at the apex of the four-sided pyramidal-shaped structure to form an open volume between the first layer of the material and the second layer of the material.</claim-text>
</claim-text>
</claim>
</claims>
</us-patent-grant>

View File

@ -1,771 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE us-patent-grant SYSTEM "us-patent-grant-v45-2014-04-03.dtd" [ ]>
<us-patent-grant lang="EN" dtd-version="v4.5 2014-04-03" file="USD0724291-20150317.XML" status="PRODUCTION" id="us-patent-grant" country="US" date-produced="20150302" date-publ="20150317">
<us-bibliographic-data-grant>
<publication-reference>
<document-id>
<country>US</country>
<doc-number>D0724291</doc-number>
<kind>S1</kind>
<date>20150317</date>
</document-id>
</publication-reference>
<application-reference appl-type="design">
<document-id>
<country>US</country>
<doc-number>29454067</doc-number>
<date>20130506</date>
</document-id>
</application-reference>
<us-application-series-code>29</us-application-series-code>
<us-term-of-grant>
<length-of-grant>14</length-of-grant>
</us-term-of-grant>
<classification-locarno>
<edition>10</edition>
<main-classification>0201</main-classification>
</classification-locarno>
<classification-national>
<country>US</country>
<main-classification>D 2713</main-classification>
<further-classification> D2947</further-classification>
<further-classification> D2980</further-classification>
</classification-national>
<invention-title id="d2e53">Non-slip hosiery</invention-title>
<us-references-cited>
<us-citation>
<patcit num="00001">
<document-id>
<country>US</country>
<doc-number>1210066</doc-number>
<kind>A</kind>
<name>Hara</name>
<date>19161200</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification> 36176</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00002">
<document-id>
<country>US</country>
<doc-number>2860416</doc-number>
<kind>A</kind>
<name>Pfund</name>
<date>19581100</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification> 33 3 A</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00003">
<document-id>
<country>US</country>
<doc-number>4149274</doc-number>
<kind>A</kind>
<name>Garrou et al.</name>
<date>19790400</date>
</document-id>
</patcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<patcit num="00004">
<document-id>
<country>US</country>
<doc-number>4651354</doc-number>
<kind>A</kind>
<name>Petrey</name>
<date>19870300</date>
</document-id>
</patcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<patcit num="00005">
<document-id>
<country>US</country>
<doc-number>4728538</doc-number>
<kind>A</kind>
<name>Kaspar et al.</name>
<date>19880300</date>
</document-id>
</patcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<patcit num="00006">
<document-id>
<country>US</country>
<doc-number>5412957</doc-number>
<kind>A</kind>
<name>Bradberry et al.</name>
<date>19950500</date>
</document-id>
</patcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<patcit num="00007">
<document-id>
<country>US</country>
<doc-number>D380593</doc-number>
<kind>S</kind>
<name>Lauzon</name>
<date>19970700</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification>D 2920</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00008">
<document-id>
<country>US</country>
<doc-number>5737776</doc-number>
<kind>A</kind>
<name>Jennings</name>
<date>19980400</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification> 2409</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00009">
<document-id>
<country>US</country>
<doc-number>5768713</doc-number>
<kind>A</kind>
<name>Crick</name>
<date>19980600</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification> 2409</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00010">
<document-id>
<country>US</country>
<doc-number>D428689</doc-number>
<kind>S</kind>
<name>Guiotto et al.</name>
<date>20000800</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification>D 2961</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00011">
<document-id>
<country>US</country>
<doc-number>D437990</doc-number>
<kind>S</kind>
<name>Hooper</name>
<date>20010200</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification>D 2961</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00012">
<document-id>
<country>US</country>
<doc-number>D513662</doc-number>
<kind>S</kind>
<name>Bayly et al.</name>
<date>20060100</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification>D 2961</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00013">
<document-id>
<country>US</country>
<doc-number>D545532</doc-number>
<kind>S</kind>
<name>Sawtelle et al.</name>
<date>20070700</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification>D 2947</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00014">
<document-id>
<country>US</country>
<doc-number>D554836</doc-number>
<kind>S</kind>
<name>Shaffer</name>
<date>20071100</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification>D 2951</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00015">
<document-id>
<country>US</country>
<doc-number>D555889</doc-number>
<kind>S</kind>
<name>Anders et al.</name>
<date>20071100</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification>D 2961</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00016">
<document-id>
<country>US</country>
<doc-number>D577884</doc-number>
<kind>S</kind>
<name>Swilley, Sr.</name>
<date>20081000</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification>D 2961</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00017">
<document-id>
<country>US</country>
<doc-number>D578734</doc-number>
<kind>S</kind>
<name>Lewis</name>
<date>20081000</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification>D 2732</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00018">
<document-id>
<country>US</country>
<doc-number>D583137</doc-number>
<kind>S</kind>
<name>Ringholz</name>
<date>20081200</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification>D 2953</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00019">
<document-id>
<country>US</country>
<doc-number>D625501</doc-number>
<kind>S</kind>
<name>Lidtke</name>
<date>20101000</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification>D 2961</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00020">
<document-id>
<country>US</country>
<doc-number>D656303</doc-number>
<kind>S</kind>
<name>Muller et al.</name>
<date>20120300</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification>D 2947</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00021">
<document-id>
<country>US</country>
<doc-number>D710629</doc-number>
<kind>S</kind>
<name>Franco</name>
<date>20140800</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification>D 6608</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00022">
<document-id>
<country>US</country>
<doc-number>2004/0009302</doc-number>
<kind>A1</kind>
<name>Patterson</name>
<date>20040100</date>
</document-id>
</patcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<patcit num="00023">
<document-id>
<country>US</country>
<doc-number>2008/0189829</doc-number>
<kind>A1</kind>
<name>Fusco</name>
<date>20080800</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification> 2239</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00024">
<document-id>
<country>US</country>
<doc-number>2011/0119809</doc-number>
<kind>A1</kind>
<name>Huckemeyer</name>
<date>20110500</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification> 2239</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00025">
<document-id>
<country>US</country>
<doc-number>2011/0225847</doc-number>
<kind>A1</kind>
<name>Buchanan</name>
<date>20110900</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification> 36 96</main-classification></classification-national>
</us-citation>
<us-citation>
<patcit num="00026">
<document-id>
<country>US</country>
<doc-number>2014/0250568</doc-number>
<kind>A1</kind>
<name>MacDonald et al.</name>
<date>20140900</date>
</document-id>
</patcit>
<category>cited by examiner</category>
<classification-national><country>US</country><main-classification> 2239</main-classification></classification-national>
</us-citation>
<us-citation>
<nplcit num="00027">
<othercit>Professional Fishnet Tights with Cotton Sole, announced Mar. 22, 2013 [online], [site visited Dec. 22, 2014]. Available from Internet, URL: &#x3c;http://www.sockdreams.com/products/professional-fishnet-tights-with-cotton-sole:11749&#x3e;.</othercit>
</nplcit>
<category>cited by examiner</category>
</us-citation>
<us-citation>
<nplcit num="00028">
<othercit>Kushyfoot Tights and Flats-To-Go, announced Jan. 4, 2012 [online], [site visited Dec. 22, 2014]. Available from Internet, URL: &#x3c;http://www.thanksmailcarrier.com/2012/01/kushyfoot-tights-and-flats-to-go-review.html&#x3e;.</othercit>
</nplcit>
<category>cited by examiner</category>
</us-citation>
<us-citation>
<nplcit num="00029">
<othercit>HUE Women's 3-Pack Micro Net Liner, announced Jun. 25, 2011 [online], [site visited Dec. 22, 2014]. Available from Internet, URL: &#x3c;http://www.amazon.com/HUE-Womens-3-Pack-Micro-Liner/dp/B002JM0S5O&#x3e;.</othercit>
</nplcit>
<category>cited by examiner</category>
</us-citation>
<us-citation>
<nplcit num="00030">
<othercit>Sure-Grip Terrycloth Slippers, announced Nov. 18, 2011 [online], [site visited Dec. 22, 2014]. Available from Internet, URL: &#x3c;http://www.medline.com/jump/product/x/Z05-PF02319&#x3e;.</othercit>
</nplcit>
<category>cited by examiner</category>
</us-citation>
<us-citation>
<nplcit num="00031">
<othercit>Springer Link; A study of the distribution of load under the normal foot during walking; Article; Oct. 1979; Three Pages; International Orthopaedics, vol. 3, Issue 2, pp. 153-157; http://link.springer.com/article/10.1007/BF00266887.</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00032">
<othercit>D. Rosenbaum and H.P. Becker; Plantar pressure distribution measurements. Technical background and clinical applications; Oct. 30, 2003; Two Pages; 1997 Blackwell Science Ltd., Foot and Ankle Surgery, vol. 3, Issue 1, pp. 1-24, Mar. 1997; http://onlinelibrary.wiley.com/doi/10.1046/j.1460-9584.1997.00043.x/abstract.</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00033">
<othercit>Amit Gefen, PhD; Pressure-Sensing Devices for Assessment of Soft Tissue Loading Under Bony Prominences: Technological Concepts and Clinical U; Dec. 12, 2007; Twelve Pages; vol. 19&#x2014;Issue 12&#x2014;Dec. 2007 (/issue/78); http://www.woundsresearch.com/article/8106.</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00034">
<othercit>Martinus Richter, Michael Frink, Stefan Zech, Jens Geerling, Patrizia Droste, Karsten Knobloch, Christian Krettek; Technique for Intraoperative Use of Pedography; Journal; Jun. 2006; One Page; Techniques in Foot &#x26; Ankle Surgery: Jun. 2006&#x2014;vol. 5&#x2014;Issue 2&#x2014;pp. 88-100; http://journals.lww.com/techfootankle/Abstract/2006/06000/Technique<sub>&#x2014;</sub>for<sub>&#x2014;</sub>Intraoperative<sub>&#x2014;</sub>Use<sub>&#x2014;</sub>of<sub>&#x2014;</sub>Pedography.6.aspx.</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00035">
<othercit>Leslie Klenerman, Bernard Wood, N.L. Griffin; The Human Foot: A Companion to Clinical Studies; Book; Jan. 31, 2006; Three Pages; Springer 2006 edition; http://www.amazon.com/The-Human-Foot-Companion-Clinical/dp/185233925X.</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00036">
<othercit>J. Alexander, EY Chao, KA Johnson; The assessment of dynamic foot-to-ground contact forces and plantar pressure distribution: a review of the evolution of current techniques and clinical applications; Abstract; Dec. 1990; Two Pages; Foot Ankle. Dec. 1990, 11(3):152-67; http://www.ncbi.nlm.nih.gov/pubmed/2074083.</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00037">
<othercit>Bijan Najafi, Elizabeth Barnica, James S. Wrobel, Joshua Burns; Dynamic plantar loading index: Understanding the benefit of custom foot orthoses for painful pes cavus; Journal; Jun. 1, 2012; Two Pages; Journal of Biomechanics, vol. 45, Issue 9, pp. 1705-1711; http://www.sciencedirect.com/science/article/pii/S0021929012001728.</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00038">
<othercit>Cedric Morio, Mark J. Lake, Nils Gueguen, Guillaume Rao, Laurent Baly; The influence of footwear on foot motion during walking and running; Journal; Sep. 18, 2009; Two Pages; Journal of Biomechanics, vol. 42, Issue 13, pp. 2081-2088; http://www.sciencedirect.com/science/article/pii/S0021929009003376.</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00039">
<othercit>Yan Cong, Jason Tak-Man Cheung, Aaron KL Leung, Ming Zhang; Effect of heel height on in-shoe localized triaxial stresses; Journal; Aug. 11, 2011; Two Pages; Journal of Biomechanics, vol. 44, Issue 12, pp. 2267-2272; http://www.sciencedirect.com/science/article/pii/S0021929011004301.</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00040">
<othercit>Herbert Elftman; A cinematic study of the distribution of pressure in the human foot; Article; Feb. 3, 2005; Four Pages; The Anatomical Record, vol. 59, Issue 4, pp. 481-491, Jul. 1934; Copyright 1934 Wiley-Liss, Inc.; http://onlinelibrary.wiley.com/doi/10.1002/ar.1090590409/abstract.</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00041">
<othercit>Margo N Orlin and Thomas G McPoil; Plantar Pressure Assessment; Article; Jul. 30, 2014; Thirteen Pages; Physical Therapy, Journal of the American Physical Therapy Association and de Fysiotherapeut Royal Dutch Society for Physical Therapy, Phys Ther.2000, 80:399-409; http://ptjournal.apta.org/content/80/4/399.full.pdf.</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00042">
<othercit>Daniel Tik-Pui Fong, De-Wei Mao, Jing-Xian Li, Youlian Hong; Greater toe grip and gentler heel strike are the strategies to adapt to slippery surface; Journal; 2008; Two Pages; Journal of Biomechanics, vol. 41, Issue 4, pp. 838-844; http://www.sciencedirect.com/science/article/pii/S0021929007004708.</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
<us-citation>
<nplcit num="00043">
<othercit>Marilyn Lord; Foot pressure measurement: A review of methodology; Journal; Apr. 1981; Two Pages; Journal of Biomedical Engineering, vol. 3, Issue 2, pp. 91-99; http://www.sciencedirect.com/science/article/pii/0141542581900017.</othercit>
</nplcit>
<category>cited by applicant</category>
</us-citation>
</us-references-cited>
<number-of-claims>1</number-of-claims>
<us-exemplary-claim>1</us-exemplary-claim>
<us-field-of-classification-search>
<classification-national>
<country>US</country>
<main-classification>D 2611</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2627</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2731</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2732</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2738</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2742</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2744</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2858</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2901</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2909-915</main-classification>
<additional-info>unstructured</additional-info>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2919</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2920</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2947</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2961</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2964</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2965</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2967</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2968</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2969-971</main-classification>
<additional-info>unstructured</additional-info>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2977</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2978</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2980</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2983-985</main-classification>
<additional-info>unstructured</additional-info>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D 2994</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification>D24192</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification> 2 60</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification> 2 61</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification> 2 66</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification> 2 67</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification> 2 80</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification> 2170</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification> 2228</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification> 2237</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification> 2239-242</main-classification>
<additional-info>unstructured</additional-info>
</classification-national>
<classification-national>
<country>US</country>
<main-classification> 2272</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification> 2407</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification> 24713</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification> 36 37</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification> 36 43</main-classification>
</classification-national>
<classification-national>
<country>US</country>
<main-classification> 36 44</main-classification>
</classification-national>
<classification-cpc-text>A41B 11/00</classification-cpc-text>
<classification-cpc-text>A41D 1/08</classification-cpc-text>
<classification-cpc-text>A41D 7/00</classification-cpc-text>
<classification-cpc-text>A43B 13/00</classification-cpc-text>
<classification-cpc-text>A43B 17/00</classification-cpc-text>
<classification-cpc-text>A43B 17/003</classification-cpc-text>
<classification-cpc-text>A43B 17/02</classification-cpc-text>
<classification-cpc-text>A43B 17/10</classification-cpc-text>
<classification-cpc-text>A43B 19/00</classification-cpc-text>
<classification-cpc-text>A43C 1/00</classification-cpc-text>
<classification-cpc-text>A43C 9/00</classification-cpc-text>
</us-field-of-classification-search>
<figures>
<number-of-drawing-sheets>4</number-of-drawing-sheets>
<number-of-figures>7</number-of-figures>
</figures>
<us-parties>
<us-applicants>
<us-applicant sequence="001" app-type="applicant" designation="us-only">
<addressbook>
<last-name>Psomas</last-name>
<first-name>George</first-name>
<address>
<city>New York</city>
<state>NY</state>
<country>US</country>
</address>
</addressbook>
<residence>
<country>US</country>
</residence>
</us-applicant>
<us-applicant sequence="002" app-type="applicant" designation="us-only">
<addressbook>
<last-name>Psomas</last-name>
<first-name>Nicole</first-name>
<address>
<city>Wyckoff</city>
<state>NJ</state>
<country>US</country>
</address>
</addressbook>
<residence>
<country>US</country>
</residence>
</us-applicant>
</us-applicants>
<inventors>
<inventor sequence="001" designation="us-only">
<addressbook>
<last-name>Psomas</last-name>
<first-name>George</first-name>
<address>
<city>New York</city>
<state>NY</state>
<country>US</country>
</address>
</addressbook>
</inventor>
<inventor sequence="002" designation="us-only">
<addressbook>
<last-name>Psomas</last-name>
<first-name>Nicole</first-name>
<address>
<city>Wyckoff</city>
<state>NJ</state>
<country>US</country>
</address>
</addressbook>
</inventor>
</inventors>
<agents>
<agent sequence="01" rep-type="attorney">
<addressbook>
<orgname>Goldstein Law Offices, P.C.</orgname>
<address>
<country>unknown</country>
</address>
</addressbook>
</agent>
</agents>
</us-parties>
<examiners>
<primary-examiner>
<last-name>Asch</last-name>
<first-name>Jeffrey D</first-name>
<department>2919</department>
</primary-examiner>
<assistant-examiner>
<last-name>Weiland</last-name>
<first-name>Dana K</first-name>
</assistant-examiner>
</examiners>
</us-bibliographic-data-grant>
<drawings id="DRAWINGS">
<figure id="Fig-EMI-D00000" num="00000">
<img id="EMI-D00000" he="254.76mm" wi="307.68mm" file="USD0724291-20150317-D00000.TIF" alt="embedded image" img-content="drawing" img-format="tif"/>
</figure>
<figure id="Fig-EMI-D00001" num="00001">
<img id="EMI-D00001" he="258.66mm" wi="201.76mm" file="USD0724291-20150317-D00001.TIF" alt="embedded image" img-content="drawing" img-format="tif"/>
</figure>
<figure id="Fig-EMI-D00002" num="00002">
<img id="EMI-D00002" he="247.31mm" wi="192.96mm" file="USD0724291-20150317-D00002.TIF" alt="embedded image" img-content="drawing" img-format="tif"/>
</figure>
<figure id="Fig-EMI-D00003" num="00003">
<img id="EMI-D00003" he="203.62mm" wi="190.75mm" file="USD0724291-20150317-D00003.TIF" alt="embedded image" img-content="drawing" img-format="tif"/>
</figure>
<figure id="Fig-EMI-D00004" num="00004">
<img id="EMI-D00004" he="225.30mm" wi="193.89mm" file="USD0724291-20150317-D00004.TIF" alt="embedded image" img-content="drawing" img-format="tif"/>
</figure>
</drawings>
<description id="description">
<?brief-description-of-drawings description="Brief Description of Drawings" end="lead"?>
<description-of-drawings>
<p id="p-0001" num="0001"><figref idref="DRAWINGS">FIG. 1</figref> is a perspective view of a non-slip hosiery showing the upper portion of the hosiery in a worn position;</p>
<p id="p-0002" num="0002"><figref idref="DRAWINGS">FIG. 2</figref> is a top plan view of a non-slip hosiery shown separately from the upper portion of the hosiery for ease of illustration;</p>
<p id="p-0003" num="0003"><figref idref="DRAWINGS">FIG. 3</figref> is a bottom plan view thereof.</p>
<p id="p-0004" num="0004"><figref idref="DRAWINGS">FIG. 4</figref> is a front elevational view thereof.</p>
<p id="p-0005" num="0005"><figref idref="DRAWINGS">FIG. 5</figref> is a rear elevational view thereof.</p>
<p id="p-0006" num="0006"><figref idref="DRAWINGS">FIG. 6</figref> is a right side elevational view thereof; and,</p>
<p id="p-0007" num="0007"><figref idref="DRAWINGS">FIG. 7</figref> is a left side elevational view thereof.</p>
<p id="p-0008" num="0008">The broken lines shown in <figref idref="DRAWINGS">FIG. 1</figref> represent the upper portion of the non-slip hosiery as environment and form no part of the claimed design.</p>
<p id="p-0009" num="0009">The double line around the outer edges in <figref idref="DRAWINGS">FIG. 2</figref> represent the thickness of material. The interior contours shown in <figref idref="DRAWINGS">FIG. 2</figref> follow the exterior contours shown throughout the views.</p>
</description-of-drawings>
<?brief-description-of-drawings description="Brief Description of Drawings" end="tail"?>
</description>
<us-claim-statement>CLAIM</us-claim-statement>
<claims id="claims">
<claim id="CLM-00001" num="00001">
<claim-text>The ornamental design for a non-slip hosiery, as shown and described.</claim-text>
</claim>
</claims>
</us-patent-grant>

View File

@ -0,0 +1,73 @@
import scrapy
import re
class TranscriptSpider(scrapy.Spider):
name = 'transcripts'
start_urls = ['http://seekingalpha.com/earnings/earnings-call-transcripts/1']
def cleanhtml(raw_html):
cleanr = re.compile('<.*?>')
cleantext = re.sub(cleanr, '', raw_html)
return cleantext
def parse(self, response):
# follow links to transcript pages
for href in response.css('.dashboard-article-link::attr(href)').extract():
yield scrapy.Request(response.urljoin(href),
callback=self.parse_transcript)
# follow pagination links
#next_page = response.css('li.next a::attr(href)').extract_first()
#if next_page is not None:
# next_page = response.urljoin(next_page)
# yield scrapy.Request(next_page, callback=self.parse)
def parse_transcript(self, response):
i = 4
def extract_with_css(query):
return response.css(query).extract_first().strip()
body = response.css('div#a-body p.p1')
chunks = body.css('p.p1')
firstline = chunks[0].css('p::text').extract()
ticker = chunks.css('a::text').extract_first()
if ":" in ticker:
ticker = ticker.split(':')[1]
name = re.compile('([A-z -]* - [A-z ,&-]*)')
execs = []
analysts = []
nextLine = chunks[i].css('p::text').extract_first()
while re.match(name, nextLine) is not None:
execs.append(nextLine)
i += i
nextLine = chunks[i].css('p::text').extract_first()
print "DONE EXECS"
print i
print "Next line: "+nextLine
while re.match(name, nextLine) is not None:
analysts.append(nextLine)
i += i
nextLine = chunks[i].css('p::text').extract_first()
print "DONE ANALYSTS"
print execs
print "-----------"
print analysts
print "^^^^^^^^^"
#### PLACEHOLDER
i = 0
while True:
print i ,": " , chunks[i].css('p::text').extract_first()
print i ,": " , chunks[i].css('strong::text').extract_first()
i += 1
#yield {
# 'company': firstline[0].split(" (", 1)[0],
# 'stockmarket': firstline[0].split(" (", 1)[1],
# 'ticker': ticker,
# 'title': chunks[1].css('p::text').extract_first(),
# 'date': chunks[2].css('p::text').extract_first()
#}