-* GraphViz gv = new GraphViz();
-* gv.addln(gv.start_graph());
-* gv.addln("A -> B;");
-* gv.addln("A -> C;");
-* gv.addln(gv.end_graph());
-* System.out.println(gv.getDotSource());
-*
-* String type = "gif";
-* File out = new File("out." + type); // out.gif in this example
-* gv.writeGraphToFile( gv.getGraph( gv.getDotSource(), type ), out );
-*
-* startWord Æðʼµ¥´Ê
+ */
+ public void randomWalk(Scanner cin) {
+ final List
+ *
+ *
+ * @version v0.5.1, 2013/03/18 (March) -- Patch of Juan Hoyos (Mac support)
+ * @version v0.5, 2012/04/24 (April) -- Patch of Abdur Rahman (OS detection + start subgraph + read
+ * config file)
+ * @version v0.4, 2011/02/05 (February) -- Patch of Keheliya Gallaba is added. Now you can specify
+ * the type of the output file: gif, dot, fig, pdf, ps, svg, png, etc.
+ * @version v0.3, 2010/11/29 (November) -- Windows support + ability to read the graph from a text
+ * file
+ * @version v0.2, 2010/07/22 (July) -- bug fix
+ * @version v0.1, 2003/12/04 (December) -- first release
+ * @author Laszlo Szathmary ( jabba.laci@gmail.com)
+ */
+public class GraphViz {
+ /**
+ * Detects the client's operating system.
+ */
+ private static final String osName = System.getProperty("os.name").replaceAll("\\s", "");
+
+ /**
+ * Load the config.properties file.
+ */
+ private static final String cfgProp = "config/config.properties";
+ private static final Properties configFile = new Properties() {
+ private static final long serialVersionUID = 1L;
+ {
+ try {
+ load(new FileInputStream(cfgProp));
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
+ };
+
+ /**
+ * The dir. where temporary files will be created.
+ */
+ private static String TEMP_DIR = configFile.getProperty("tempDirFor" + osName);
+
+ /**
+ * Where is your dot program located? It will be called externally.
+ */
+ private static String DOT = configFile.getProperty("dotFor" + osName);
+
+ /**
+ * The image size in dpi. 96 dpi is normal size. Higher values are 10% higher each. Lower values
+ * 10% lower each. dpi patch by Peter Mueller
+ */
+ private int[] dpiSizes =
+ {46, 51, 57, 63, 70, 78, 86, 96, 106, 116, 128, 141, 155, 170, 187, 206, 226, 249};
+
+ /**
+ * Define the index in the image size array.
+ */
+ private int currentDpiPos = 7;
+
+ /**
+ * Increase the image size (dpi).
+ */
+ public void increaseDpi() {
+ if (this.currentDpiPos < (this.dpiSizes.length - 1)) {
+ ++this.currentDpiPos;
+ }
+ }
+
+ /**
+ * Decrease the image size (dpi).
+ */
+ public void decreaseDpi() {
+ if (this.currentDpiPos > 0) {
+ --this.currentDpiPos;
+ }
+ }
+
+ public int getImageDpi() {
+ return this.dpiSizes[this.currentDpiPos];
+ }
+
+ /**
+ * The source of the graph written in dot language.
+ */
+ private StringBuilder graph = new StringBuilder();
+
+ /**
+ * Constructor: creates a new GraphViz object that will contain a graph.
+ */
+ public GraphViz() {
+ File file = new File(TEMP_DIR);
+ if (!file.exists()) {
+ file.mkdirs();
+ }
+ }
+
+ /**
+ * Returns the graph's source description in dot language.
+ *
+ * @return Source of the graph in dot language.
+ */
+ public String getDotSource() {
+ return this.graph.toString();
+ }
+
+ /**
+ * Adds a string to the graph's source (without newline).
+ */
+ public void add(String line) {
+ this.graph.append(line);
+ }
+
+ /**
+ * Adds a string to the graph's source (with newline).
+ */
+ public void addln(String line) {
+ this.graph.append(line + "\n");
+ }
+
+ /**
+ * Adds a newline to the graph's source.
+ */
+ public void addln() {
+ this.graph.append('\n');
+ }
+
+ public void clearGraph() {
+ this.graph = new StringBuilder();
+ }
+
+ /**
+ * Returns the graph as an image in binary format.
+ *
+ * @return A byte array containing the image of the graph.
+ */
+ public byte[] getGraph(String dotSource, String type) {
+ File dot;
+ byte[] imgStream = null;
+
+ try {
+ dot = writeDotSourceToFile(dotSource);
+ if (dot != null) {
+ imgStream = get_img_stream(dot, type);
+ if (dot.delete() == false) {
+ System.err.println("Warning: " + dot.getAbsolutePath() + " could not be deleted!");
+ }
+ return imgStream;
+ }
+ return null;
+ } catch (java.io.IOException ioe) {
+ return null;
+ }
+ }
+
+ /**
+ * Writes the graph's image in a file.
+ *
+ * @param img A byte array containing the image of the graph.
+ * @param file Name of the file to where we want to write.
+ * @return Success: 1, Failure: -1
+ */
+ public int writeGraphToFile(byte[] img, String file) {
+ File to = new File(file);
+ return writeGraphToFile(img, to);
+ }
+
+ /**
+ * Writes the graph's image in a file.
+ *
+ * @param img A byte array containing the image of the graph.
+ * @param to A File object to where we want to write.
+ * @return Success: 1, Failure: -1
+ */
+ public int writeGraphToFile(byte[] img, File to) {
+ try {
+ FileOutputStream fos = new FileOutputStream(to);
+ fos.write(img);
+ fos.close();
+ } catch (java.io.IOException ioe) {
+ return -1;
+ }
+ return 1;
+ }
+
+ /**
+ * It will call the external dot program, and return the image in binary format.
+ *
+ * @param dot Source of the graph (in dot language).
+ * @param type Type of the output image to be produced, e.g.: gif, dot, fig, pdf, ps, svg, png.
+ * @return The image of the graph in .gif format.
+ */
+ private byte[] get_img_stream(File dot, String type) {
+ File img;
+ byte[] imgStream = null;
+
+ try {
+ img = File.createTempFile("graph_", "." + type, new File(GraphViz.TEMP_DIR));
+ Runtime rt = Runtime.getRuntime();
+
+ // patch by Mike Chenault
+ String[] args = {DOT, "-T" + type, "-Gdpi=" + dpiSizes[this.currentDpiPos],
+ dot.getAbsolutePath(), "-o", img.getAbsolutePath()};
+ Process p = rt.exec(args);
+
+ p.waitFor();
+
+ FileInputStream in = new FileInputStream(img.getAbsolutePath());
+ imgStream = new byte[in.available()];
+ in.read(imgStream);
+ // Close it if we need to
+ if (in != null) {
+ in.close();
+ }
+
+ if (img.delete() == false) {
+ System.err.println("Warning: " + img.getAbsolutePath() + " could not be deleted!");
+ }
+
+ } catch (java.io.IOException ioe) {
+ System.err
+ .println("Error: in I/O processing of tempfile in dir " + GraphViz.TEMP_DIR + "\n");
+ System.err.println(" or in calling external command");
+ ioe.printStackTrace();
+ } catch (java.lang.InterruptedException ie) {
+ System.err.println("Error: the execution of the external program was interrupted");
+ ie.printStackTrace();
+ }
+
+ return imgStream;
+ }
+
+ /**
+ * Writes the source of the graph in a file, and returns the written file as a File object.
+ *
+ * @param str Source of the graph (in dot language).
+ * @return The file (as a File object) that contains the source of the graph.
+ */
+ private File writeDotSourceToFile(String str) throws java.io.IOException {
+ File temp;
+ try {
+ temp = File.createTempFile("dorrr", ".dot", new File(GraphViz.TEMP_DIR));
+ FileWriter fout = new FileWriter(temp);
+ fout.write(str);
+ BufferedWriter br = new BufferedWriter(new FileWriter("dotsource.dot"));
+ br.write(str);
+ br.flush();
+ br.close();
+ fout.close();
+ } catch (Exception e) {
+ System.err.println("Error: I/O error while writing the dot source to temp file!");
+ return null;
+ }
+ return temp;
+ }
+
+ /**
+ * Returns a string that is used to start a graph.
+ *
+ * @return A string to open a graph.
+ */
+ public String start_graph() {
+ return "digraph G {";
+ }
+
+ /**
+ * Returns a string that is used to end a graph.
+ *
+ * @return A string to close a graph.
+ */
+ public String end_graph() {
+ return "}";
+ }
+
+ /**
+ * Takes the cluster or subgraph id as input parameter and returns a string that is used to start
+ * a subgraph.
+ *
+ * @return A string to open a subgraph.
+ */
+ public String start_subgraph(int clusterid) {
+ return "subgraph cluster_" + clusterid + " {";
+ }
+
+ /**
+ * Returns a string that is used to end a graph.
+ *
+ * @return A string to close a graph.
+ */
+ public String end_subgraph() {
+ return "}";
+ }
+
+ /**
+ * Read a DOT graph from a text file.
+ *
+ * @param input Input text file containing the DOT graph source.
+ */
+ public void readSource(String input) {
+ StringBuilder sb = new StringBuilder();
+
+ try {
+ FileInputStream fis = new FileInputStream(input);
+ DataInputStream dis = new DataInputStream(fis);
+ BufferedReader br = new BufferedReader(new InputStreamReader(dis));
+ String line;
+ while ((line = br.readLine()) != null) {
+ sb.append(line);
+ }
+ dis.close();
+ } catch (Exception e) {
+ System.err.println("Error: " + e.getMessage());
+ }
+
+ this.graph = sb;
+ }
+}
diff --git a/Graph/src/mygraph/ShowImage.java b/Graph/src/mygraph/ShowImage.java
new file mode 100644
index 0000000..9bbffa8
--- /dev/null
+++ b/Graph/src/mygraph/ShowImage.java
@@ -0,0 +1,69 @@
+package mygraph;
+
+import java.awt.Image;
+import java.awt.image.BufferedImage;
+import java.io.FileInputStream;
+import java.io.FileNotFoundException;
+import java.io.IOException;
+import java.io.UnsupportedEncodingException;
+import javax.imageio.ImageIO;
+import javax.swing.ImageIcon;
+import javax.swing.JFrame;
+import javax.swing.JLabel;
+
+public class ShowImage extends JFrame {
+ public static final long serialVersionUID = 1L;
+ private JLabel jlb = new JLabel();
+ private ImageIcon image;
+ private int width;
+ private int height;
+
+ /**
+ * setImage.
+ *
+ * @param imgName imgName
+ */
+ public void setImage(String imgName) {
+ try {
+
+ BufferedImage sourceImage = ImageIO.read(new FileInputStream(imgName));
+ width = sourceImage.getWidth();
+ height = sourceImage.getHeight();
+ // System.out.println(width);
+ // System.out.println(height);
+ } catch (FileNotFoundException e) {
+ return;
+ } catch (UnsupportedEncodingException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ return;
+ } catch (IOException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ return;
+ }
+ this.setSize(width, height);
+ this.setLayout(null);
+
+ image = new ImageIcon(imgName);
+ Image img = image.getImage();
+ img = img.getScaledInstance(width, height, Image.SCALE_DEFAULT);
+ image.setImage(img);
+ jlb.setIcon(image);
+
+ this.add(jlb);
+ jlb.setSize(width, height);
+ this.setVisible(false);
+ this.repaint();
+ this.setVisible(true);
+ }
+ /**
+ * setImage.
+ *
+ * @param imgName imgName
+ */
+
+ public ShowImage(String imgName) {
+ this.setImage(imgName);
+ }
+}
diff --git a/Graph/src/showImage.java b/Graph/src/showImage.java
deleted file mode 100644
index a10effa..0000000
--- a/Graph/src/showImage.java
+++ /dev/null
@@ -1,44 +0,0 @@
-import javax.imageio.ImageIO;
-import javax.swing.*;
-import java.awt.Image;
-import java.awt.image.BufferedImage;
-import java.io.*;
-
-public class showImage extends JFrame {
- public static final long serialVersionUID = 1L;
- private JLabel jlb = new JLabel();
- private ImageIcon image;
- private int width, height;
-
- public showImage(String imgName) {
- try {
- BufferedImage sourceImage = ImageIO.read(new FileInputStream(imgName));
- width = sourceImage.getWidth() / 3;
- height = sourceImage.getHeight() / 3;
-// System.out.println(width);
-// System.out.println(height);
- }catch (FileNotFoundException e) {
- return;
- } catch (UnsupportedEncodingException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- return;
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- return;
- }
- this.setSize(width, height);
- this.setLayout(null);
-
- image = new ImageIcon("DotGraph.jpg");
- Image img = image.getImage();
- img = img.getScaledInstance(width, height, Image.SCALE_DEFAULT);
- image.setImage(img);
- jlb.setIcon(image);
-
- this.add(jlb);
- jlb.setSize(width, height);
- this.setVisible(true);
- }
-}
\ No newline at end of file
diff --git a/Graph/sun.nio.ch.FileChannelImpl$Unmapper.class b/Graph/sun.nio.ch.FileChannelImpl$Unmapper.class
new file mode 100644
index 0000000..39987ad
Binary files /dev/null and b/Graph/sun.nio.ch.FileChannelImpl$Unmapper.class differ
diff --git a/Graph/sun.nio.fs.NativeBuffer$Deallocator.class b/Graph/sun.nio.fs.NativeBuffer$Deallocator.class
new file mode 100644
index 0000000..6ca0797
Binary files /dev/null and b/Graph/sun.nio.fs.NativeBuffer$Deallocator.class differ
diff --git a/Graph/sun.rmi.transport.DGCAckHandler$1.class b/Graph/sun.rmi.transport.DGCAckHandler$1.class
new file mode 100644
index 0000000..4852590
Binary files /dev/null and b/Graph/sun.rmi.transport.DGCAckHandler$1.class differ
diff --git a/Graph/sun.rmi.transport.DGCImpl$1.class b/Graph/sun.rmi.transport.DGCImpl$1.class
new file mode 100644
index 0000000..0235650
Binary files /dev/null and b/Graph/sun.rmi.transport.DGCImpl$1.class differ
diff --git a/Graph/sun.rmi.transport.tcp.TCPTransport$AcceptLoop.class b/Graph/sun.rmi.transport.tcp.TCPTransport$AcceptLoop.class
new file mode 100644
index 0000000..aed1725
Binary files /dev/null and b/Graph/sun.rmi.transport.tcp.TCPTransport$AcceptLoop.class differ
diff --git a/Graph/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.class b/Graph/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.class
new file mode 100644
index 0000000..d0abf0d
Binary files /dev/null and b/Graph/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.class differ
diff --git a/Graph/test/tmpDir/dorrr3544868620007998562.dot b/Graph/test/tmpDir/dorrr3544868620007998562.dot
new file mode 100644
index 0000000..5c16e6b
--- /dev/null
+++ b/Graph/test/tmpDir/dorrr3544868620007998562.dot
@@ -0,0 +1,2 @@
+digraph G {
+i->am[label="2"];i->go[label="1"];i->still[label="1"];i->have[label="8"];i->must[label="1"];i->say[label="1"];i->sing[label="1"];am->happy[label="1"];am->not[label="1"];happy->to[label="1"];to->join[label="3"];to->you[label="1"];to->go[label="1"];to->the[label="5"];to->our[label="2"];to->a[label="2"];to->stand[label="1"];to->this[label="1"];to->millions[label="1"];to->end[label="1"];to->dramatize[label="1"];to->cash[label="2"];to->which[label="1"];to->fall[label="1"];to->be[label="2"];to->believe[label="2"];to->remind[label="1"];to->engage[label="1"];to->take[label="1"];to->make[label="2"];to->rise[label="1"];to->lift[label="1"];to->overlook[label="1"];to->blow[label="1"];to->business[label="1"];to->shake[label="1"];to->my[label="1"];to->satisfy[label="1"];to->struggle[label="1"];to->degenerate[label="1"];to->realize[label="2"];to->mississippi[label="1"];to->vote[label="1"];to->jail[label="1"];to->work[label="2"];to->alabama[label="1"];to->south[label="1"];to->georgia[label="1"];to->louisiana[label="1"];to->sit[label="1"];to->hew[label="1"];to->transform[label="1"];to->pray[label="1"];to->sing[label="1"];to->speed[label="1"];join->with[label="1"];join->hands[label="2"];with->with[label="1"];with->you[label="1"];with->the[label="5"];with->our[label="1"];with->this[label="3"];with->soul[label="1"];with->new[label="1"];with->its[label="2"];with->little[label="1"];you->today[label="2"];you->be[label="1"];you->have[label="4"];you->battered[label="1"];today->i[label="2"];today->to[label="1"];today->in[label="1"];today->signed[label="1"];today->and[label="1"];today->that[label="1"];today->have[label="1"];today->my[label="1"];in->what[label="1"];in->history[label="1"];in->the[label="11"];in->a[label="2"];in->whose[label="1"];in->his[label="1"];in->america[label="1"];in->new[label="1"];in->mississippi[label="1"];in->alabama[label="2"];what->will[label="1"];will->you[label="1"];will->go[label="1"];will->one[label="1"];will->not[label="3"];will->be[label="16"];will->give[label="1"];will->have[label="1"];will->now[label="1"];will->rise[label="1"];will->continue[label="1"];go->to[label="1"];go->down[label="1"];go->back[label="7"];down->in[label="2"];down->like[label="1"];down->together[label="1"];history->as[label="1"];history->of[label="1"];as->the[label="3"];as->our[label="2"];as->a[label="3"];as->we[label="1"];as->long[label="5"];as->well[label="1"];as->white[label="1"];as->her[label="1"];as->usual[label="1"];as->evidenced[label="1"];as->sisters[label="1"];the->history[label="1"];the->greatest[label="1"];the->nation[label="2"];the->great[label="1"];the->american[label="1"];the->emancipation[label="1"];the->negro[label="9"];the->flames[label="1"];the->long[label="1"];the->life[label="1"];the->manacles[label="1"];the->chains[label="1"];the->midst[label="1"];the->corners[label="1"];the->architects[label="1"];the->magnificent[label="1"];the->words[label="2"];the->constitution[label="1"];the->declaration[label="1"];the->unalienable[label="1"];the->pursuit[label="1"];the->color[label="1"];the->bank[label="1"];the->riches[label="1"];the->security[label="1"];the->fierce[label="1"];the->urgency[label="1"];the->time[label="4"];the->luxury[label="1"];the->tranquilizing[label="1"];the->promises[label="1"];the->dark[label="1"];the->valley[label="1"];the->sunlit[label="1"];the->quicksands[label="1"];the->solid[label="1"];the->moment[label="1"];the->negros[label="2"];the->content[label="1"];the->whirlwinds[label="1"];the->foundations[label="1"];the->bright[label="1"];the->day[label="2"];the->warm[label="1"];the->palace[label="1"];the->process[label="1"];the->cup[label="1"];the->high[label="1"];the->majestic[label="1"];the->marvelous[label="1"];the->pledge[label="1"];the->devotees[label="1"];the->victim[label="1"];the->unspeakable[label="1"];the->fatigue[label="1"];the->motels[label="1"];the->highways[label="1"];the->hotels[label="1"];the->cities[label="1"];the->mighty[label="1"];the->storms[label="1"];the->winds[label="1"];the->veterans[label="1"];the->faith[label="2"];the->south[label="1"];the->slums[label="1"];the->difficulties[label="1"];the->true[label="1"];the->red[label="1"];the->sons[label="2"];the->table[label="1"];the->state[label="1"];the->heat[label="2"];the->mountain[label="1"];the->rough[label="1"];the->crooked[label="1"];the->glory[label="1"];the->lord[label="1"];the->jangling[label="1"];the->pilgrims[label="1"];the->prodigious[label="1"];the->heightening[label="1"];the->snowcapped[label="1"];the->curvaceous[label="1"];the->old[label="1"];greatest->demonstration[label="1"];demonstration->for[label="1"];for->the[label="1"];for->freedom[label="4"];for->which[label="1"];for->all[label="1"];for->many[label="1"];for->whites[label="1"];freedom->in[label="1"];freedom->we[label="1"];freedom->is[label="1"];freedom->by[label="1"];freedom->and[label="3"];freedom->left[label="1"];freedom->together[label="1"];freedom->ring[label="11"];of->you[label="3"];of->today[label="1"];of->the[label="12"];of->freedom[label="3"];of->our[label="6"];of->a[label="1"];of->great[label="1"];of->american[label="1"];of->this[label="1"];of->hope[label="2"];of->negro[label="1"];of->withering[label="1"];of->injustice[label="1"];of->their[label="5"];of->life[label="1"];of->segregation[label="2"];of->discrimination[label="1"];of->poverty[label="1"];of->material[label="1"];of->independence[label="1"];of->all[label="1"];of->liberty[label="1"];of->happiness[label="1"];of->color[label="1"];of->honoring[label="1"];of->justice[label="4"];of->opportunity[label="1"];of->now[label="1"];of->cooling[label="1"];of->gradualism[label="1"];of->democracy[label="1"];of->racial[label="2"];of->brotherhood[label="3"];of->gods[label="3"];of->revolt[label="1"];of->gaining[label="1"];of->wrongful[label="1"];of->bitterness[label="1"];of->dignity[label="1"];of->creative[label="1"];of->meeting[label="1"];of->new[label="2"];of->civil[label="1"];of->police[label="2"];of->travel[label="1"];of->mississippi[label="2"];of->persecution[label="1"];of->georgia[label="2"];of->despair[label="2"];of->its[label="1"];of->former[label="2"];of->oppression[label="1"];of->interposition[label="1"];of->thee[label="2"];of->pennsylvania[label="1"];of->colorado[label="1"];of->california[label="1"];of->tennessee[label="1"];our->freedom[label="1"];our->nation[label="4"];our->hope[label="1"];our->nations[label="1"];our->republic[label="1"];our->white[label="1"];our->children[label="1"];our->rightful[label="1"];our->thirst[label="1"];our->struggle[label="1"];our->creative[label="1"];our->destiny[label="1"];our->bodies[label="1"];our->northern[label="1"];nation->to[label="1"];nation->will[label="1"];nation->five[label="1"];nation->this[label="1"];nation->and[label="1"];nation->from[label="1"];nation->until[label="1"];nation->returns[label="1"];nation->into[label="1"];nation->where[label="1"];five->score[label="1"];score->years[label="1"];years->ago[label="1"];years->later[label="4"];ago->a[label="1"];a->nation[label="1"];a->great[label="3"];a->negro[label="2"];a->joyous[label="1"];a->lonely[label="1"];a->vast[label="1"];a->shameful[label="1"];a->sense[label="1"];a->check[label="3"];a->promissory[label="1"];a->promise[label="1"];a->bad[label="1"];a->reality[label="1"];a->beginning[label="1"];a->rude[label="1"];a->distrust[label="1"];a->smaller[label="1"];a->larger[label="1"];a->mighty[label="1"];a->dream[label="10"];a->state[label="1"];a->stone[label="1"];a->beautiful[label="1"];great->nation[label="1"];great->american[label="1"];great->beacon[label="1"];great->vaults[label="1"];great->trials[label="1"];american->in[label="1"];american->society[label="1"];american->was[label="1"];american->dream[label="1"];whose->symbolic[label="1"];symbolic->shadow[label="1"];shadow->we[label="1"];we->will[label="6"];we->stand[label="1"];we->are[label="2"];we->refuse[label="2"];we->have[label="1"];we->must[label="5"];we->let[label="1"];we->allow[label="1"];we->cannot[label="4"];we->walk[label="1"];we->shall[label="1"];we->can[label="3"];we->face[label="1"];we->hold[label="1"];stand->today[label="1"];stand->on[label="1"];stand->up[label="1"];signed->the[label="1"];emancipation->proclamation[label="1"];proclamation->this[label="1"];this->will[label="2"];this->nation[label="2"];this->momentous[label="1"];this->is[label="3"];this->check[label="1"];this->promissory[label="1"];this->note[label="1"];this->sacred[label="1"];this->hallowed[label="1"];this->sweltering[label="1"];this->must[label="1"];this->faith[label="3"];this->situation[label="1"];this->happens[label="1"];momentous->decree[label="1"];decree->came[label="1"];came->as[label="2"];beacon->light[label="1"];light->of[label="1"];hope->to[label="1"];hope->with[label="1"];hope->and[label="1"];hope->that[label="1"];millions->of[label="1"];negro->in[label="2"];negro->slaves[label="1"];negro->still[label="1"];negro->is[label="4"];negro->lives[label="1"];negro->people[label="1"];negro->needed[label="1"];negro->community[label="1"];negro->spiritual[label="1"];slaves->who[label="1"];slaves->and[label="1"];who->stand[label="1"];who->hope[label="1"];who->had[label="1"];who->are[label="1"];had->been[label="1"];been->the[label="1"];been->seared[label="1"];seared->in[label="1"];flames->of[label="1"];withering->injustice[label="1"];injustice->to[label="1"];injustice->it[label="1"];injustice->sweltering[label="1"];it->came[label="1"];it->is[label="2"];it->would[label="1"];it->together[label="1"];it->ring[label="1"];joyous->daybreak[label="1"];daybreak->to[label="1"];end->the[label="1"];end->but[label="1"];long->as[label="5"];long->night[label="1"];night->of[label="1"];their->freedom[label="1"];their->captivity[label="1"];their->dignity[label="1"];their->presence[label="1"];their->destiny[label="1"];their->selfhood[label="1"];their->skin[label="1"];their->character[label="1"];captivity->but[label="1"];but->a[label="1"];but->we[label="1"];but->one[label="1"];but->not[label="1"];but->by[label="1"];but->there[label="1"];one->we[label="1"];one->hundred[label="4"];one->day[label="8"];hundred->years[label="4"];later->the[label="4"];still->is[label="1"];still->sadly[label="1"];still->languished[label="1"];still->have[label="1"];is->to[label="1"];is->the[label="6"];is->our[label="1"];is->a[label="1"];is->still[label="2"];is->not[label="2"];is->an[label="1"];is->obvious[label="1"];is->bankrupt[label="1"];is->no[label="1"];is->from[label="1"];is->granted[label="1"];is->something[label="1"];is->tied[label="1"];is->inextricably[label="1"];is->redemptive[label="1"];not->free[label="1"];not->an[label="1"];not->be[label="3"];not->pass[label="1"];not->seek[label="1"];not->allow[label="1"];not->lead[label="1"];not->satisfied[label="1"];not->only[label="1"];not->unmindful[label="1"];not->wallow[label="1"];free->one[label="2"];free->at[label="3"];life->of[label="1"];life->liberty[label="1"];sadly->crippled[label="1"];crippled->by[label="1"];by->the[label="5"];by->their[label="1"];by->drinking[label="1"];by->signs[label="1"];manacles->of[label="1"];segregation->to[label="1"];segregation->and[label="1"];and->will[label="2"];and->as[label="1"];and->the[label="8"];and->a[label="1"];and->we[label="1"];and->this[label="2"];and->finds[label="1"];and->so[label="4"];and->when[label="1"];and->they[label="1"];and->every[label="3"];and->all[label="1"];and->black[label="1"];and->white[label="2"];and->justice[label="1"];and->there[label="1"];and->desolate[label="1"];and->equality[label="1"];and->those[label="1"];and->if[label="1"];and->hatred[label="1"];and->discipline[label="1"];and->again[label="1"];and->brothers[label="1"];and->robbed[label="1"];and->righteousness[label="1"];and->some[label="1"];and->tribulations[label="1"];and->staggered[label="1"];and->ghettos[label="1"];and->tomorrow[label="1"];and->live[label="1"];and->nullification[label="1"];and->mountain[label="1"];and->sing[label="1"];and->molehill[label="1"];and->gentiles[label="1"];and->catholics[label="1"];chains->of[label="1"];discrimination->one[label="1"];lives->on[label="1"];on->the[label="3"];on->a[label="1"];on->this[label="1"];lonely->island[label="1"];island->of[label="1"];poverty->in[label="1"];midst->of[label="1"];vast->ocean[label="1"];ocean->of[label="1"];material->prosperity[label="1"];prosperity->one[label="1"];languished->in[label="1"];corners->of[label="1"];society->and[label="1"];finds->himself[label="1"];himself->an[label="1"];an->end[label="1"];an->exile[label="1"];an->invigorating[label="1"];an->oasis[label="1"];exile->in[label="1"];his->own[label="1"];his->citizenship[label="1"];his->lips[label="1"];own->land[label="1"];land->of[label="2"];land->and[label="1"];land->where[label="1"];so->weve[label="2"];so->let[label="1"];so->even[label="1"];weve->come[label="3"];come->to[label="5"];come->here[label="2"];come->back[label="1"];come->from[label="1"];come->fresh[label="1"];here->today[label="2"];here->out[label="1"];dramatize->a[label="1"];shameful->condition[label="1"];condition->in[label="1"];sense->weve[label="1"];nations->capital[label="1"];capital->to[label="1"];cash->a[label="1"];cash->this[label="1"];check->a[label="2"];check->when[label="1"];check->which[label="1"];check->that[label="1"];when->will[label="1"];when->the[label="1"];when->we[label="2"];when->this[label="1"];when->all[label="2"];architects->of[label="1"];republic->wrote[label="1"];wrote->the[label="1"];magnificent->words[label="1"];words->of[label="3"];constitution->and[label="1"];declaration->of[label="1"];independence->they[label="1"];they->will[label="1"];they->were[label="1"];they->have[label="1"];were->signing[label="1"];signing->a[label="1"];promissory->note[label="2"];note->to[label="1"];note->was[label="1"];note->insofar[label="1"];which->to[label="1"];which->every[label="1"];which->has[label="2"];which->leads[label="1"];every->american[label="1"];every->valley[label="1"];every->state[label="1"];every->hill[label="2"];every->mountainside[label="2"];every->village[label="1"];every->hamlet[label="1"];every->city[label="1"];was->to[label="1"];was->a[label="1"];fall->heir[label="1"];heir->this[label="1"];promise->that[label="1"];that->i[label="2"];that->will[label="1"];that->the[label="2"];that->we[label="2"];that->their[label="2"];that->one[label="5"];that->all[label="2"];that->america[label="1"];that->there[label="1"];that->day[label="1"];that->my[label="1"];that->let[label="1"];that->some[label="1"];that->unearned[label="1"];that->somehow[label="1"];all->of[label="3"];all->men[label="2"];all->white[label="1"];all->flesh[label="1"];men->as[label="1"];men->and[label="1"];men->yes[label="1"];men->would[label="1"];men->are[label="1"];men->jews[label="1"];yes->black[label="1"];black->men[label="2"];black->boys[label="1"];black->girls[label="1"];well->as[label="1"];white->men[label="2"];white->people[label="1"];white->brothers[label="1"];white->boys[label="1"];white->girls[label="1"];would->be[label="2"];be->the[label="2"];be->a[label="1"];be->free[label="1"];be->guaranteed[label="1"];be->fatal[label="1"];be->content[label="1"];be->neither[label="1"];be->guilty[label="1"];be->satisfied[label="7"];be->changed[label="1"];be->selfevident[label="1"];be->able[label="8"];be->transformed[label="1"];be->judged[label="1"];be->exalted[label="1"];be->made[label="3"];be->revealed[label="1"];guaranteed->the[label="1"];unalienable->rights[label="1"];rights->the[label="1"];rights->of[label="1"];rights->when[label="1"];liberty->of[label="1"];liberty->and[label="1"];pursuit->of[label="1"];happiness->it[label="1"];obvious->today[label="1"];america->of[label="1"];america->is[label="1"];america->has[label="2"];america->until[label="1"];has->come[label="1"];has->defaulted[label="1"];has->given[label="1"];has->engulfed[label="1"];has->nothing[label="1"];defaulted->on[label="1"];insofar->as[label="1"];her->citizens[label="1"];citizens->of[label="1"];color->of[label="1"];color->are[label="1"];are->not[label="1"];are->free[label="1"];are->concerned[label="1"];are->insufficient[label="1"];are->those[label="1"];are->asking[label="1"];are->stripped[label="1"];are->created[label="1"];concerned->instead[label="1"];instead->of[label="1"];honoring->this[label="1"];sacred->obligation[label="1"];obligation->america[label="1"];given->the[label="1"];people->for[label="1"];people->a[label="1"];people->who[label="1"];bad->check[label="1"];back->to[label="7"];back->marked[label="1"];back->there[label="1"];marked->insufficient[label="1"];insufficient->funds[label="2"];funds->in[label="1"];funds->but[label="1"];refuse->to[label="2"];believe->that[label="2"];bank->of[label="1"];justice->i[label="1"];justice->in[label="1"];justice->a[label="1"];justice->we[label="1"];justice->is[label="1"];justice->now[label="1"];justice->emerges[label="1"];justice->rolls[label="1"];bankrupt->we[label="1"];there->in[label="1"];there->will[label="1"];there->is[label="2"];there->are[label="2"];vaults->of[label="1"];opportunity->of[label="1"];give->us[label="1"];us->to[label="1"];us->not[label="2"];us->upon[label="1"];upon->demand[label="1"];demand->the[label="1"];riches->of[label="1"];security->of[label="1"];have->a[label="10"];have->been[label="1"];have->come[label="5"];have->also[label="1"];also->come[label="1"];hallowed->spot[label="1"];spot->to[label="1"];remind->america[label="1"];fierce->urgency[label="1"];urgency->of[label="2"];now->this[label="1"];now->is[label="4"];now->be[label="1"];no->we[label="1"];no->no[label="1"];no->time[label="1"];time->to[label="5"];engage->in[label="1"];luxury->of[label="1"];cooling->off[label="1"];off->or[label="1"];off->steam[label="1"];or->to[label="1"];take->the[label="1"];tranquilizing->drug[label="1"];drug->of[label="1"];gradualism->now[label="1"];make->the[label="1"];make->justice[label="1"];make->real[label="1"];real->the[label="1"];promises->of[label="1"];democracy->now[label="1"];rise->to[label="1"];rise->from[label="1"];rise->up[label="1"];from->the[label="8"];from->a[label="1"];from->every[label="5"];from->narrow[label="1"];from->areas[label="1"];from->stone[label="1"];from->lookout[label="1"];dark->and[label="1"];desolate->valley[label="1"];valley->of[label="2"];valley->shall[label="1"];sunlit->path[label="1"];path->of[label="1"];racial->injustice[label="1"];racial->justice[label="1"];lift->our[label="1"];quicksands->of[label="1"];solid->rock[label="1"];rock->of[label="1"];brotherhood->i[label="1"];brotherhood->with[label="1"];brotherhood->now[label="1"];reality->for[label="1"];gods->children[label="3"];children->will[label="2"];children->it[label="1"];children->black[label="1"];children->are[label="1"];fatal->for[label="1"];overlook->the[label="1"];moment->this[label="1"];sweltering->with[label="2"];sweltering->summer[label="1"];summer->of[label="1"];negros->legitimate[label="1"];negros->basic[label="1"];legitimate->discontent[label="1"];discontent->will[label="1"];pass->until[label="1"];until->the[label="2"];until->justice[label="1"];until->there[label="1"];invigorating->autumn[label="1"];autumn->of[label="1"];equality->nineteen[label="1"];nineteen->sixtythree[label="1"];sixtythree->is[label="1"];beginning->and[label="1"];those->who[label="2"];needed->to[label="1"];blow->off[label="1"];steam->and[label="1"];content->will[label="1"];content->of[label="1"];rude->awakening[label="1"];awakening->if[label="1"];if->the[label="1"];if->america[label="1"];returns->to[label="1"];business->as[label="1"];usual->and[label="1"];neither->rest[label="1"];rest->nor[label="1"];nor->tranquility[label="1"];tranquility->in[label="1"];granted->his[label="1"];citizenship->rights[label="1"];whirlwinds->of[label="1"];revolt->will[label="1"];continue->to[label="2"];shake->the[label="1"];foundations->of[label="1"];bright->day[label="1"];day->down[label="1"];day->of[label="1"];day->this[label="2"];day->and[label="1"];day->on[label="1"];day->when[label="2"];day->every[label="1"];day->even[label="1"];day->live[label="1"];day->right[label="1"];emerges->but[label="1"];something->that[label="1"];must->not[label="3"];must->make[label="1"];must->rise[label="1"];must->say[label="1"];must->forever[label="1"];must->become[label="1"];say->to[label="2"];my->people[label="1"];my->friends[label="1"];my->four[label="1"];my->country[label="1"];my->fathers[label="1"];warm->threshold[label="1"];threshold->which[label="1"];leads->into[label="1"];into->the[label="1"];into->a[label="1"];into->an[label="1"];into->physical[label="1"];palace->of[label="1"];process->of[label="1"];gaining->our[label="1"];rightful->place[label="1"];place->we[label="1"];guilty->of[label="1"];wrongful->deeds[label="1"];deeds->let[label="1"];let->freedom[label="10"];let->it[label="1"];let->us[label="2"];seek->to[label="1"];satisfy->our[label="1"];thirst->for[label="1"];drinking->from[label="1"];cup->of[label="1"];bitterness->and[label="1"];hatred->we[label="1"];forever->conduct[label="1"];conduct->our[label="1"];struggle->on[label="1"];struggle->together[label="1"];high->plane[label="1"];plane->of[label="1"];dignity->by[label="1"];dignity->and[label="1"];discipline->we[label="1"];allow->freedom[label="1"];allow->our[label="1"];creative->protest[label="1"];creative->suffering[label="1"];protest->to[label="1"];degenerate->into[label="1"];physical->violence[label="1"];physical->force[label="1"];violence->again[label="1"];again->we[label="1"];again->and[label="1"];majestic->heights[label="1"];heights->of[label="1"];meeting->physical[label="1"];force->with[label="1"];force->the[label="1"];soul->force[label="1"];marvelous->new[label="1"];new->militancy[label="1"];new->york[label="2"];new->meaning[label="1"];new->hampshire[label="1"];militancy->which[label="1"];engulfed->the[label="1"];community->must[label="1"];lead->us[label="1"];distrust->of[label="1"];many->of[label="1"];brothers->i[label="1"];brothers->as[label="1"];evidenced->by[label="1"];presence->here[label="1"];realize->that[label="2"];destiny->is[label="1"];destiny->and[label="1"];tied->up[label="1"];up->with[label="1"];up->for[label="1"];up->and[label="1"];up->that[label="1"];inextricably->bound[label="1"];bound->to[label="1"];cannot->be[label="2"];cannot->walk[label="1"];cannot->turn[label="1"];cannot->gain[label="1"];cannot->vote[label="1"];walk->we[label="1"];walk->alone[label="1"];alone->and[label="1"];pledge->that[label="1"];shall->be[label="3"];shall->always[label="1"];shall->see[label="1"];always->march[label="1"];march->ahead[label="1"];ahead->we[label="1"];turn->back[label="1"];asking->the[label="1"];devotees->of[label="1"];civil->rights[label="1"];satisfied->as[label="5"];satisfied->we[label="1"];satisfied->and[label="1"];satisfied->until[label="1"];can->and[label="1"];can->never[label="3"];never->be[label="3"];victim->of[label="1"];unspeakable->horrors[label="1"];horrors->of[label="1"];police->brutality[label="2"];brutality->you[label="1"];brutality->we[label="1"];bodies->heavy[label="1"];heavy->with[label="1"];fatigue->of[label="1"];travel->cannot[label="1"];gain->lodging[label="1"];lodging->in[label="1"];motels->of[label="1"];highways->and[label="1"];hotels->of[label="1"];cities->we[label="1"];cities->knowing[label="1"];basic->mobility[label="1"];mobility->is[label="1"];smaller->ghetto[label="1"];ghetto->to[label="1"];larger->one[label="1"];stripped->of[label="1"];selfhood->and[label="1"];robbed->of[label="1"];signs->stating[label="1"];stating->for[label="1"];whites->only[label="1"];only->we[label="1"];only->that[label="1"];mississippi->go[label="1"];mississippi->a[label="1"];mississippi->from[label="1"];mississippi->cannot[label="1"];vote->and[label="1"];vote->no[label="1"];york->let[label="1"];york->believes[label="1"];believes->he[label="1"];he->has[label="1"];nothing->for[label="1"];rolls->down[label="1"];like->a[label="1"];like->waters[label="1"];waters->and[label="1"];righteousness->like[label="1"];mighty->stream[label="1"];mighty->mountains[label="1"];stream->i[label="1"];unmindful->that[label="1"];some->of[label="3"];out->the[label="1"];out->of[label="2"];trials->and[label="1"];tribulations->some[label="1"];fresh->from[label="1"];narrow->jail[label="1"];jail->cells[label="1"];jail->together[label="1"];cells->and[label="1"];areas->where[label="1"];where->they[label="1"];where->my[label="1"];where->your[label="1"];your->quest[label="1"];quest->for[label="1"];quest->quest[label="1"];left->you[label="1"];battered->by[label="1"];storms->of[label="1"];persecution->and[label="1"];staggered->by[label="1"];winds->of[label="1"];veterans->of[label="1"];suffering->is[label="1"];suffering->continue[label="1"];work->with[label="1"];work->together[label="1"];faith->we[label="3"];faith->that[label="2"];unearned->suffering[label="1"];redemptive->go[label="1"];alabama->with[label="1"];alabama->go[label="1"];alabama->little[label="1"];south->with[label="1"];south->carolina[label="1"];carolina->go[label="1"];georgia->go[label="1"];georgia->the[label="1"];georgia->let[label="1"];louisiana->go[label="1"];slums->and[label="1"];ghettos->of[label="1"];northern->cities[label="1"];knowing->that[label="2"];somehow->this[label="1"];situation->can[label="1"];changed->let[label="1"];wallow->in[label="1"];despair->i[label="1"];despair->a[label="1"];friends->and[label="1"];even->the[label="1"];even->though[label="1"];though->we[label="1"];face->the[label="1"];difficulties->of[label="1"];tomorrow->i[label="1"];dream->i[label="1"];dream->today[label="2"];dream->it[label="1"];dream->that[label="6"];dream->deeply[label="1"];deeply->rooted[label="1"];rooted->in[label="1"];live->in[label="1"];live->out[label="1"];true->and[label="1"];true->meaning[label="1"];meaning->of[label="1"];meaning->my[label="1"];its->creed[label="1"];its->vicious[label="1"];its->governor[label="1"];creed->we[label="1"];hold->these[label="1"];these->truths[label="1"];truths->to[label="1"];selfevident->that[label="1"];created->equal[label="1"];equal->i[label="1"];red->hills[label="1"];hills->of[label="1"];sons->of[label="2"];former->slaves[label="1"];former->slave[label="1"];slave->owners[label="1"];owners->will[label="1"];able->to[label="8"];sit->down[label="1"];together->to[label="4"];together->this[label="1"];together->knowing[label="1"];together->at[label="1"];at->the[label="1"];at->last[label="3"];table->of[label="1"];state->of[label="1"];state->and[label="1"];state->sweltering[label="1"];heat->of[label="2"];oppression->will[label="1"];transformed->into[label="1"];oasis->of[label="1"];four->little[label="1"];little->black[label="1"];little->white[label="1"];little->children[label="1"];judged->by[label="1"];skin->but[label="1"];character->i[label="1"];vicious->racists[label="1"];racists->with[label="1"];governor->having[label="1"];having->his[label="1"];lips->dripping[label="1"];dripping->with[label="1"];interposition->and[label="1"];nullification->one[label="1"];right->there[label="1"];boys->and[label="2"];girls->will[label="1"];girls->as[label="1"];hands->with[label="1"];hands->and[label="1"];sisters->and[label="1"];exalted->and[label="1"];hill->and[label="2"];mountain->of[label="3"];mountain->shall[label="1"];made->low[label="1"];made->plain[label="1"];made->straight[label="1"];low->the[label="1"];rough->places[label="1"];places->will[label="2"];plain->and[label="1"];crooked->places[label="1"];straight->and[label="1"];glory->of[label="1"];lord->shall[label="1"];revealed->and[label="1"];flesh->shall[label="1"];see->it[label="1"];hew->out[label="1"];stone->of[label="1"];stone->mountain[label="1"];transform->the[label="1"];jangling->discords[label="1"];discords->of[label="1"];beautiful->symphony[label="1"];symphony->of[label="1"];pray->together[label="1"];sing->with[label="1"];sing->in[label="1"];sing->land[label="1"];country->tis[label="1"];tis->of[label="1"];thee->i[label="1"];thee->sweet[label="1"];sweet->land[label="1"];fathers->died[label="1"];died->land[label="1"];pilgrims->pride[label="1"];pride->from[label="1"];mountainside->let[label="2"];ring->and[label="2"];ring->when[label="1"];ring->from[label="9"];become->true[label="1"];prodigious->hilltops[label="1"];hilltops->of[label="1"];hampshire->let[label="1"];mountains->of[label="1"];heightening->alleghenies[label="1"];alleghenies->of[label="1"];pennsylvania->let[label="1"];snowcapped->rockies[label="1"];rockies->of[label="1"];colorado->let[label="1"];curvaceous->slopes[label="1"];slopes->of[label="1"];california->but[label="1"];lookout->mountain[label="1"];tennessee->let[label="1"];molehill->of[label="1"];happens->when[label="1"];village->and[label="1"];hamlet->from[label="1"];city->we[label="1"];speed->up[label="1"];jews->and[label="1"];gentiles->protestants[label="1"];protestants->and[label="1"];catholics->will[label="1"];old->negro[label="1"];spiritual->free[label="1"];last->free[label="1"];last->thank[label="1"];thank->god[label="1"];god->almighty[label="1"];almighty->we[label="1"];}
diff --git a/Graph/test/tmpDir/dorrr399088280593858595.dot b/Graph/test/tmpDir/dorrr399088280593858595.dot
new file mode 100644
index 0000000..4ec9c2f
--- /dev/null
+++ b/Graph/test/tmpDir/dorrr399088280593858595.dot
@@ -0,0 +1,2 @@
+digraph G {
+i->am[label="2", color="red"];i->go[label="1"];i->still[label="1"];i->have[label="8"];i->must[label="1"];i->say[label="1"];i->sing[label="1"];am->happy[label="1"];am->not[label="1"];happy->to[label="1"];to->join[label="3"];to->you[label="1"];to->go[label="1"];to->the[label="5"];to->our[label="2"];to->a[label="2"];to->stand[label="1"];to->this[label="1"];to->millions[label="1"];to->end[label="1"];to->dramatize[label="1"];to->cash[label="2"];to->which[label="1"];to->fall[label="1"];to->be[label="2"];to->believe[label="2"];to->remind[label="1"];to->engage[label="1"];to->take[label="1"];to->make[label="2"];to->rise[label="1"];to->lift[label="1"];to->overlook[label="1"];to->blow[label="1"];to->business[label="1"];to->shake[label="1"];to->my[label="1"];to->satisfy[label="1"];to->struggle[label="1"];to->degenerate[label="1"];to->realize[label="2"];to->mississippi[label="1"];to->vote[label="1"];to->jail[label="1"];to->work[label="2"];to->alabama[label="1"];to->south[label="1"];to->georgia[label="1"];to->louisiana[label="1"];to->sit[label="1"];to->hew[label="1"];to->transform[label="1"];to->pray[label="1"];to->sing[label="1"];to->speed[label="1"];join->with[label="1"];join->hands[label="2"];with->with[label="1"];with->you[label="1"];with->the[label="5"];with->our[label="1"];with->this[label="3"];with->soul[label="1"];with->new[label="1"];with->its[label="2"];with->little[label="1"];you->today[label="2"];you->be[label="1"];you->have[label="4"];you->battered[label="1"];today->i[label="2"];today->to[label="1"];today->in[label="1"];today->signed[label="1"];today->and[label="1"];today->that[label="1"];today->have[label="1"];today->my[label="1"];in->what[label="1"];in->history[label="1"];in->the[label="11"];in->a[label="2"];in->whose[label="1"];in->his[label="1"];in->america[label="1"];in->new[label="1"];in->mississippi[label="1"];in->alabama[label="2"];what->will[label="1"];will->you[label="1"];will->go[label="1"];will->one[label="1"];will->not[label="3"];will->be[label="16"];will->give[label="1"];will->have[label="1"];will->now[label="1"];will->rise[label="1"];will->continue[label="1"];go->to[label="1"];go->down[label="1"];go->back[label="7"];down->in[label="2"];down->like[label="1"];down->together[label="1"];history->as[label="1"];history->of[label="1"];as->the[label="3"];as->our[label="2"];as->a[label="3"];as->we[label="1"];as->long[label="5"];as->well[label="1"];as->white[label="1"];as->her[label="1"];as->usual[label="1"];as->evidenced[label="1"];as->sisters[label="1"];the->history[label="1"];the->greatest[label="1"];the->nation[label="2"];the->great[label="1"];the->american[label="1"];the->emancipation[label="1"];the->negro[label="9"];the->flames[label="1"];the->long[label="1"];the->life[label="1"];the->manacles[label="1"];the->chains[label="1"];the->midst[label="1"];the->corners[label="1"];the->architects[label="1"];the->magnificent[label="1"];the->words[label="2"];the->constitution[label="1"];the->declaration[label="1"];the->unalienable[label="1"];the->pursuit[label="1"];the->color[label="1"];the->bank[label="1"];the->riches[label="1"];the->security[label="1"];the->fierce[label="1"];the->urgency[label="1"];the->time[label="4"];the->luxury[label="1"];the->tranquilizing[label="1"];the->promises[label="1"];the->dark[label="1"];the->valley[label="1"];the->sunlit[label="1"];the->quicksands[label="1"];the->solid[label="1"];the->moment[label="1"];the->negros[label="2"];the->content[label="1"];the->whirlwinds[label="1"];the->foundations[label="1"];the->bright[label="1"];the->day[label="2"];the->warm[label="1"];the->palace[label="1"];the->process[label="1"];the->cup[label="1"];the->high[label="1"];the->majestic[label="1"];the->marvelous[label="1"];the->pledge[label="1"];the->devotees[label="1"];the->victim[label="1"];the->unspeakable[label="1"];the->fatigue[label="1"];the->motels[label="1"];the->highways[label="1"];the->hotels[label="1"];the->cities[label="1"];the->mighty[label="1"];the->storms[label="1"];the->winds[label="1"];the->veterans[label="1"];the->faith[label="2"];the->south[label="1"];the->slums[label="1"];the->difficulties[label="1"];the->true[label="1"];the->red[label="1"];the->sons[label="2"];the->table[label="1"];the->state[label="1"];the->heat[label="2"];the->mountain[label="1"];the->rough[label="1"];the->crooked[label="1"];the->glory[label="1"];the->lord[label="1"];the->jangling[label="1"];the->pilgrims[label="1"];the->prodigious[label="1"];the->heightening[label="1"];the->snowcapped[label="1"];the->curvaceous[label="1"];the->old[label="1"];greatest->demonstration[label="1"];demonstration->for[label="1"];for->the[label="1"];for->freedom[label="4"];for->which[label="1"];for->all[label="1"];for->many[label="1"];for->whites[label="1"];freedom->in[label="1"];freedom->we[label="1"];freedom->is[label="1"];freedom->by[label="1"];freedom->and[label="3"];freedom->left[label="1"];freedom->together[label="1"];freedom->ring[label="11"];of->you[label="3"];of->today[label="1"];of->the[label="12"];of->freedom[label="3"];of->our[label="6"];of->a[label="1"];of->great[label="1"];of->american[label="1"];of->this[label="1"];of->hope[label="2"];of->negro[label="1"];of->withering[label="1"];of->injustice[label="1"];of->their[label="5"];of->life[label="1"];of->segregation[label="2"];of->discrimination[label="1"];of->poverty[label="1"];of->material[label="1"];of->independence[label="1"];of->all[label="1"];of->liberty[label="1"];of->happiness[label="1"];of->color[label="1"];of->honoring[label="1"];of->justice[label="4"];of->opportunity[label="1"];of->now[label="1"];of->cooling[label="1"];of->gradualism[label="1"];of->democracy[label="1"];of->racial[label="2"];of->brotherhood[label="3"];of->gods[label="3"];of->revolt[label="1"];of->gaining[label="1"];of->wrongful[label="1"];of->bitterness[label="1"];of->dignity[label="1"];of->creative[label="1"];of->meeting[label="1"];of->new[label="2"];of->civil[label="1"];of->police[label="2"];of->travel[label="1"];of->mississippi[label="2"];of->persecution[label="1"];of->georgia[label="2"];of->despair[label="2"];of->its[label="1"];of->former[label="2"];of->oppression[label="1"];of->interposition[label="1"];of->thee[label="2"];of->pennsylvania[label="1"];of->colorado[label="1"];of->california[label="1"];of->tennessee[label="1"];our->freedom[label="1"];our->nation[label="4"];our->hope[label="1"];our->nations[label="1"];our->republic[label="1"];our->white[label="1"];our->children[label="1"];our->rightful[label="1"];our->thirst[label="1"];our->struggle[label="1"];our->creative[label="1"];our->destiny[label="1"];our->bodies[label="1"];our->northern[label="1"];nation->to[label="1"];nation->will[label="1"];nation->five[label="1"];nation->this[label="1"];nation->and[label="1"];nation->from[label="1"];nation->until[label="1"];nation->returns[label="1"];nation->into[label="1"];nation->where[label="1"];five->score[label="1"];score->years[label="1"];years->ago[label="1"];years->later[label="4"];ago->a[label="1"];a->nation[label="1"];a->great[label="3"];a->negro[label="2"];a->joyous[label="1"];a->lonely[label="1"];a->vast[label="1"];a->shameful[label="1"];a->sense[label="1"];a->check[label="3"];a->promissory[label="1"];a->promise[label="1"];a->bad[label="1"];a->reality[label="1"];a->beginning[label="1"];a->rude[label="1"];a->distrust[label="1"];a->smaller[label="1"];a->larger[label="1"];a->mighty[label="1"];a->dream[label="10"];a->state[label="1"];a->stone[label="1"];a->beautiful[label="1"];great->nation[label="1"];great->american[label="1"];great->beacon[label="1"];great->vaults[label="1"];great->trials[label="1"];american->in[label="1"];american->society[label="1"];american->was[label="1"];american->dream[label="1"];whose->symbolic[label="1"];symbolic->shadow[label="1"];shadow->we[label="1"];we->will[label="6"];we->stand[label="1"];we->are[label="2"];we->refuse[label="2"];we->have[label="1"];we->must[label="5"];we->let[label="1"];we->allow[label="1"];we->cannot[label="4"];we->walk[label="1"];we->shall[label="1"];we->can[label="3"];we->face[label="1"];we->hold[label="1"];stand->today[label="1"];stand->on[label="1"];stand->up[label="1"];signed->the[label="1"];emancipation->proclamation[label="1"];proclamation->this[label="1"];this->will[label="2"];this->nation[label="2"];this->momentous[label="1"];this->is[label="3"];this->check[label="1"];this->promissory[label="1"];this->note[label="1"];this->sacred[label="1"];this->hallowed[label="1"];this->sweltering[label="1"];this->must[label="1"];this->faith[label="3"];this->situation[label="1"];this->happens[label="1"];momentous->decree[label="1"];decree->came[label="1"];came->as[label="2"];beacon->light[label="1"];light->of[label="1"];hope->to[label="1"];hope->with[label="1"];hope->and[label="1"];hope->that[label="1"];millions->of[label="1"];negro->in[label="2"];negro->slaves[label="1"];negro->still[label="1"];negro->is[label="4"];negro->lives[label="1"];negro->people[label="1"];negro->needed[label="1"];negro->community[label="1"];negro->spiritual[label="1"];slaves->who[label="1"];slaves->and[label="1"];who->stand[label="1"];who->hope[label="1"];who->had[label="1"];who->are[label="1"];had->been[label="1"];been->the[label="1"];been->seared[label="1"];seared->in[label="1"];flames->of[label="1"];withering->injustice[label="1"];injustice->to[label="1"];injustice->it[label="1"];injustice->sweltering[label="1"];it->came[label="1"];it->is[label="2"];it->would[label="1"];it->together[label="1"];it->ring[label="1"];joyous->daybreak[label="1"];daybreak->to[label="1"];end->the[label="1"];end->but[label="1"];long->as[label="5"];long->night[label="1"];night->of[label="1"];their->freedom[label="1"];their->captivity[label="1"];their->dignity[label="1"];their->presence[label="1"];their->destiny[label="1"];their->selfhood[label="1"];their->skin[label="1"];their->character[label="1"];captivity->but[label="1"];but->a[label="1"];but->we[label="1"];but->one[label="1"];but->not[label="1"];but->by[label="1"];but->there[label="1"];one->we[label="1"];one->hundred[label="4"];one->day[label="8"];hundred->years[label="4"];later->the[label="4"];still->is[label="1"];still->sadly[label="1"];still->languished[label="1"];still->have[label="1"];is->to[label="1"];is->the[label="6"];is->our[label="1"];is->a[label="1"];is->still[label="2"];is->not[label="2"];is->an[label="1"];is->obvious[label="1"];is->bankrupt[label="1"];is->no[label="1"];is->from[label="1"];is->granted[label="1"];is->something[label="1"];is->tied[label="1"];is->inextricably[label="1"];is->redemptive[label="1"];not->free[label="1"];not->an[label="1"];not->be[label="3"];not->pass[label="1"];not->seek[label="1"];not->allow[label="1"];not->lead[label="1"];not->satisfied[label="1"];not->only[label="1"];not->unmindful[label="1"];not->wallow[label="1"];free->one[label="2"];free->at[label="3"];life->of[label="1"];life->liberty[label="1"];sadly->crippled[label="1"];crippled->by[label="1"];by->the[label="5"];by->their[label="1"];by->drinking[label="1"];by->signs[label="1"];manacles->of[label="1"];segregation->to[label="1"];segregation->and[label="1"];and->will[label="2"];and->as[label="1"];and->the[label="8"];and->a[label="1"];and->we[label="1"];and->this[label="2"];and->finds[label="1"];and->so[label="4"];and->when[label="1"];and->they[label="1"];and->every[label="3"];and->all[label="1"];and->black[label="1"];and->white[label="2"];and->justice[label="1"];and->there[label="1"];and->desolate[label="1"];and->equality[label="1"];and->those[label="1"];and->if[label="1"];and->hatred[label="1"];and->discipline[label="1"];and->again[label="1"];and->brothers[label="1"];and->robbed[label="1"];and->righteousness[label="1"];and->some[label="1"];and->tribulations[label="1"];and->staggered[label="1"];and->ghettos[label="1"];and->tomorrow[label="1"];and->live[label="1"];and->nullification[label="1"];and->mountain[label="1"];and->sing[label="1"];and->molehill[label="1"];and->gentiles[label="1"];and->catholics[label="1"];chains->of[label="1"];discrimination->one[label="1"];lives->on[label="1"];on->the[label="3"];on->a[label="1"];on->this[label="1"];lonely->island[label="1"];island->of[label="1"];poverty->in[label="1"];midst->of[label="1"];vast->ocean[label="1"];ocean->of[label="1"];material->prosperity[label="1"];prosperity->one[label="1"];languished->in[label="1"];corners->of[label="1"];society->and[label="1"];finds->himself[label="1"];himself->an[label="1"];an->end[label="1"];an->exile[label="1"];an->invigorating[label="1"];an->oasis[label="1"];exile->in[label="1"];his->own[label="1"];his->citizenship[label="1"];his->lips[label="1"];own->land[label="1"];land->of[label="2"];land->and[label="1"];land->where[label="1"];so->weve[label="2"];so->let[label="1"];so->even[label="1"];weve->come[label="3"];come->to[label="5"];come->here[label="2"];come->back[label="1"];come->from[label="1"];come->fresh[label="1"];here->today[label="2"];here->out[label="1"];dramatize->a[label="1"];shameful->condition[label="1"];condition->in[label="1"];sense->weve[label="1"];nations->capital[label="1"];capital->to[label="1"];cash->a[label="1"];cash->this[label="1"];check->a[label="2"];check->when[label="1"];check->which[label="1"];check->that[label="1"];when->will[label="1"];when->the[label="1"];when->we[label="2"];when->this[label="1"];when->all[label="2"];architects->of[label="1"];republic->wrote[label="1"];wrote->the[label="1"];magnificent->words[label="1"];words->of[label="3"];constitution->and[label="1"];declaration->of[label="1"];independence->they[label="1"];they->will[label="1"];they->were[label="1"];they->have[label="1"];were->signing[label="1"];signing->a[label="1"];promissory->note[label="2"];note->to[label="1"];note->was[label="1"];note->insofar[label="1"];which->to[label="1"];which->every[label="1"];which->has[label="2"];which->leads[label="1"];every->american[label="1"];every->valley[label="1"];every->state[label="1"];every->hill[label="2"];every->mountainside[label="2"];every->village[label="1"];every->hamlet[label="1"];every->city[label="1"];was->to[label="1"];was->a[label="1"];fall->heir[label="1"];heir->this[label="1"];promise->that[label="1"];that->i[label="2"];that->will[label="1"];that->the[label="2"];that->we[label="2"];that->their[label="2"];that->one[label="5"];that->all[label="2"];that->america[label="1"];that->there[label="1"];that->day[label="1"];that->my[label="1"];that->let[label="1"];that->some[label="1"];that->unearned[label="1"];that->somehow[label="1"];all->of[label="3"];all->men[label="2"];all->white[label="1"];all->flesh[label="1"];men->as[label="1"];men->and[label="1"];men->yes[label="1"];men->would[label="1"];men->are[label="1"];men->jews[label="1"];yes->black[label="1"];black->men[label="2"];black->boys[label="1"];black->girls[label="1"];well->as[label="1"];white->men[label="2"];white->people[label="1"];white->brothers[label="1"];white->boys[label="1"];white->girls[label="1"];would->be[label="2"];be->the[label="2"];be->a[label="1"];be->free[label="1"];be->guaranteed[label="1"];be->fatal[label="1"];be->content[label="1"];be->neither[label="1"];be->guilty[label="1"];be->satisfied[label="7"];be->changed[label="1"];be->selfevident[label="1"];be->able[label="8"];be->transformed[label="1"];be->judged[label="1"];be->exalted[label="1"];be->made[label="3"];be->revealed[label="1"];guaranteed->the[label="1"];unalienable->rights[label="1"];rights->the[label="1"];rights->of[label="1"];rights->when[label="1"];liberty->of[label="1"];liberty->and[label="1"];pursuit->of[label="1"];happiness->it[label="1"];obvious->today[label="1"];america->of[label="1"];america->is[label="1"];america->has[label="2"];america->until[label="1"];has->come[label="1"];has->defaulted[label="1"];has->given[label="1"];has->engulfed[label="1"];has->nothing[label="1"];defaulted->on[label="1"];insofar->as[label="1"];her->citizens[label="1"];citizens->of[label="1"];color->of[label="1"];color->are[label="1"];are->not[label="1"];are->free[label="1"];are->concerned[label="1"];are->insufficient[label="1"];are->those[label="1"];are->asking[label="1"];are->stripped[label="1"];are->created[label="1"];concerned->instead[label="1"];instead->of[label="1"];honoring->this[label="1"];sacred->obligation[label="1"];obligation->america[label="1"];given->the[label="1"];people->for[label="1"];people->a[label="1"];people->who[label="1"];bad->check[label="1"];back->to[label="7"];back->marked[label="1"];back->there[label="1"];marked->insufficient[label="1"];insufficient->funds[label="2"];funds->in[label="1"];funds->but[label="1"];refuse->to[label="2"];believe->that[label="2"];bank->of[label="1"];justice->i[label="1"];justice->in[label="1"];justice->a[label="1"];justice->we[label="1"];justice->is[label="1"];justice->now[label="1"];justice->emerges[label="1"];justice->rolls[label="1"];bankrupt->we[label="1"];there->in[label="1"];there->will[label="1"];there->is[label="2"];there->are[label="2"];vaults->of[label="1"];opportunity->of[label="1"];give->us[label="1"];us->to[label="1"];us->not[label="2"];us->upon[label="1"];upon->demand[label="1"];demand->the[label="1"];riches->of[label="1"];security->of[label="1"];have->a[label="10"];have->been[label="1"];have->come[label="5"];have->also[label="1"];also->come[label="1"];hallowed->spot[label="1"];spot->to[label="1"];remind->america[label="1"];fierce->urgency[label="1"];urgency->of[label="2"];now->this[label="1"];now->is[label="4"];now->be[label="1"];no->we[label="1"];no->no[label="1"];no->time[label="1"];time->to[label="5"];engage->in[label="1"];luxury->of[label="1"];cooling->off[label="1"];off->or[label="1"];off->steam[label="1"];or->to[label="1"];take->the[label="1"];tranquilizing->drug[label="1"];drug->of[label="1"];gradualism->now[label="1"];make->the[label="1"];make->justice[label="1"];make->real[label="1"];real->the[label="1"];promises->of[label="1"];democracy->now[label="1"];rise->to[label="1"];rise->from[label="1"];rise->up[label="1"];from->the[label="8"];from->a[label="1"];from->every[label="5"];from->narrow[label="1"];from->areas[label="1"];from->stone[label="1"];from->lookout[label="1"];dark->and[label="1"];desolate->valley[label="1"];valley->of[label="2"];valley->shall[label="1"];sunlit->path[label="1"];path->of[label="1"];racial->injustice[label="1"];racial->justice[label="1"];lift->our[label="1"];quicksands->of[label="1"];solid->rock[label="1"];rock->of[label="1"];brotherhood->i[label="1"];brotherhood->with[label="1"];brotherhood->now[label="1"];reality->for[label="1"];gods->children[label="3"];children->will[label="2"];children->it[label="1"];children->black[label="1"];children->are[label="1"];fatal->for[label="1"];overlook->the[label="1"];moment->this[label="1"];sweltering->with[label="2"];sweltering->summer[label="1"];summer->of[label="1"];negros->legitimate[label="1"];negros->basic[label="1"];legitimate->discontent[label="1"];discontent->will[label="1"];pass->until[label="1"];until->the[label="2"];until->justice[label="1"];until->there[label="1"];invigorating->autumn[label="1"];autumn->of[label="1"];equality->nineteen[label="1"];nineteen->sixtythree[label="1"];sixtythree->is[label="1"];beginning->and[label="1"];those->who[label="2"];needed->to[label="1"];blow->off[label="1"];steam->and[label="1"];content->will[label="1"];content->of[label="1"];rude->awakening[label="1"];awakening->if[label="1"];if->the[label="1"];if->america[label="1"];returns->to[label="1"];business->as[label="1"];usual->and[label="1"];neither->rest[label="1"];rest->nor[label="1"];nor->tranquility[label="1"];tranquility->in[label="1"];granted->his[label="1"];citizenship->rights[label="1"];whirlwinds->of[label="1"];revolt->will[label="1"];continue->to[label="2"];shake->the[label="1"];foundations->of[label="1"];bright->day[label="1"];day->down[label="1"];day->of[label="1"];day->this[label="2"];day->and[label="1"];day->on[label="1"];day->when[label="2"];day->every[label="1"];day->even[label="1"];day->live[label="1"];day->right[label="1"];emerges->but[label="1"];something->that[label="1"];must->not[label="3"];must->make[label="1"];must->rise[label="1"];must->say[label="1"];must->forever[label="1"];must->become[label="1"];say->to[label="2"];my->people[label="1"];my->friends[label="1"];my->four[label="1"];my->country[label="1"];my->fathers[label="1"];warm->threshold[label="1"];threshold->which[label="1"];leads->into[label="1"];into->the[label="1"];into->a[label="1"];into->an[label="1"];into->physical[label="1"];palace->of[label="1"];process->of[label="1"];gaining->our[label="1"];rightful->place[label="1"];place->we[label="1"];guilty->of[label="1"];wrongful->deeds[label="1"];deeds->let[label="1"];let->freedom[label="10"];let->it[label="1"];let->us[label="2"];seek->to[label="1"];satisfy->our[label="1"];thirst->for[label="1"];drinking->from[label="1"];cup->of[label="1"];bitterness->and[label="1"];hatred->we[label="1"];forever->conduct[label="1"];conduct->our[label="1"];struggle->on[label="1"];struggle->together[label="1"];high->plane[label="1"];plane->of[label="1"];dignity->by[label="1"];dignity->and[label="1"];discipline->we[label="1"];allow->freedom[label="1"];allow->our[label="1"];creative->protest[label="1"];creative->suffering[label="1"];protest->to[label="1"];degenerate->into[label="1"];physical->violence[label="1"];physical->force[label="1"];violence->again[label="1"];again->we[label="1"];again->and[label="1"];majestic->heights[label="1"];heights->of[label="1"];meeting->physical[label="1"];force->with[label="1"];force->the[label="1"];soul->force[label="1"];marvelous->new[label="1"];new->militancy[label="1"];new->york[label="2"];new->meaning[label="1"];new->hampshire[label="1"];militancy->which[label="1"];engulfed->the[label="1"];community->must[label="1"];lead->us[label="1"];distrust->of[label="1"];many->of[label="1"];brothers->i[label="1"];brothers->as[label="1"];evidenced->by[label="1"];presence->here[label="1"];realize->that[label="2"];destiny->is[label="1"];destiny->and[label="1"];tied->up[label="1"];up->with[label="1"];up->for[label="1"];up->and[label="1"];up->that[label="1"];inextricably->bound[label="1"];bound->to[label="1"];cannot->be[label="2"];cannot->walk[label="1"];cannot->turn[label="1"];cannot->gain[label="1"];cannot->vote[label="1"];walk->we[label="1"];walk->alone[label="1"];alone->and[label="1"];pledge->that[label="1"];shall->be[label="3"];shall->always[label="1"];shall->see[label="1"];always->march[label="1"];march->ahead[label="1"];ahead->we[label="1"];turn->back[label="1"];asking->the[label="1"];devotees->of[label="1"];civil->rights[label="1"];satisfied->as[label="5"];satisfied->we[label="1"];satisfied->and[label="1"];satisfied->until[label="1"];can->and[label="1"];can->never[label="3"];never->be[label="3"];victim->of[label="1"];unspeakable->horrors[label="1"];horrors->of[label="1"];police->brutality[label="2"];brutality->you[label="1"];brutality->we[label="1"];bodies->heavy[label="1"];heavy->with[label="1"];fatigue->of[label="1"];travel->cannot[label="1"];gain->lodging[label="1"];lodging->in[label="1"];motels->of[label="1"];highways->and[label="1"];hotels->of[label="1"];cities->we[label="1"];cities->knowing[label="1"];basic->mobility[label="1"];mobility->is[label="1"];smaller->ghetto[label="1"];ghetto->to[label="1"];larger->one[label="1"];stripped->of[label="1"];selfhood->and[label="1"];robbed->of[label="1"];signs->stating[label="1"];stating->for[label="1"];whites->only[label="1"];only->we[label="1"];only->that[label="1"];mississippi->go[label="1"];mississippi->a[label="1"];mississippi->from[label="1"];mississippi->cannot[label="1"];vote->and[label="1"];vote->no[label="1"];york->let[label="1"];york->believes[label="1"];believes->he[label="1"];he->has[label="1"];nothing->for[label="1"];rolls->down[label="1"];like->a[label="1"];like->waters[label="1"];waters->and[label="1"];righteousness->like[label="1"];mighty->stream[label="1"];mighty->mountains[label="1"];stream->i[label="1"];unmindful->that[label="1"];some->of[label="3"];out->the[label="1"];out->of[label="2"];trials->and[label="1"];tribulations->some[label="1"];fresh->from[label="1"];narrow->jail[label="1"];jail->cells[label="1"];jail->together[label="1"];cells->and[label="1"];areas->where[label="1"];where->they[label="1"];where->my[label="1"];where->your[label="1"];your->quest[label="1"];quest->for[label="1"];quest->quest[label="1"];left->you[label="1"];battered->by[label="1"];storms->of[label="1"];persecution->and[label="1"];staggered->by[label="1"];winds->of[label="1"];veterans->of[label="1"];suffering->is[label="1"];suffering->continue[label="1"];work->with[label="1"];work->together[label="1"];faith->we[label="3"];faith->that[label="2"];unearned->suffering[label="1"];redemptive->go[label="1"];alabama->with[label="1"];alabama->go[label="1"];alabama->little[label="1"];south->with[label="1"];south->carolina[label="1"];carolina->go[label="1"];georgia->go[label="1"];georgia->the[label="1"];georgia->let[label="1"];louisiana->go[label="1"];slums->and[label="1"];ghettos->of[label="1"];northern->cities[label="1"];knowing->that[label="2"];somehow->this[label="1"];situation->can[label="1"];changed->let[label="1"];wallow->in[label="1"];despair->i[label="1"];despair->a[label="1"];friends->and[label="1"];even->the[label="1"];even->though[label="1"];though->we[label="1"];face->the[label="1"];difficulties->of[label="1"];tomorrow->i[label="1"];dream->i[label="1"];dream->today[label="2"];dream->it[label="1"];dream->that[label="6"];dream->deeply[label="1"];deeply->rooted[label="1"];rooted->in[label="1"];live->in[label="1"];live->out[label="1"];true->and[label="1"];true->meaning[label="1"];meaning->of[label="1"];meaning->my[label="1"];its->creed[label="1"];its->vicious[label="1"];its->governor[label="1"];creed->we[label="1"];hold->these[label="1"];these->truths[label="1"];truths->to[label="1"];selfevident->that[label="1"];created->equal[label="1"];equal->i[label="1"];red->hills[label="1"];hills->of[label="1"];sons->of[label="2"];former->slaves[label="1"];former->slave[label="1"];slave->owners[label="1"];owners->will[label="1"];able->to[label="8"];sit->down[label="1"];together->to[label="4"];together->this[label="1"];together->knowing[label="1"];together->at[label="1"];at->the[label="1"];at->last[label="3"];table->of[label="1"];state->of[label="1"];state->and[label="1"];state->sweltering[label="1"];heat->of[label="2"];oppression->will[label="1"];transformed->into[label="1"];oasis->of[label="1"];four->little[label="1"];little->black[label="1"];little->white[label="1"];little->children[label="1"];judged->by[label="1"];skin->but[label="1"];character->i[label="1"];vicious->racists[label="1"];racists->with[label="1"];governor->having[label="1"];having->his[label="1"];lips->dripping[label="1"];dripping->with[label="1"];interposition->and[label="1"];nullification->one[label="1"];right->there[label="1"];boys->and[label="2"];girls->will[label="1"];girls->as[label="1"];hands->with[label="1"];hands->and[label="1"];sisters->and[label="1"];exalted->and[label="1"];hill->and[label="2"];mountain->of[label="3"];mountain->shall[label="1"];made->low[label="1"];made->plain[label="1"];made->straight[label="1"];low->the[label="1"];rough->places[label="1"];places->will[label="2"];plain->and[label="1"];crooked->places[label="1"];straight->and[label="1"];glory->of[label="1"];lord->shall[label="1"];revealed->and[label="1"];flesh->shall[label="1"];see->it[label="1"];hew->out[label="1"];stone->of[label="1"];stone->mountain[label="1"];transform->the[label="1"];jangling->discords[label="1"];discords->of[label="1"];beautiful->symphony[label="1"];symphony->of[label="1"];pray->together[label="1"];sing->with[label="1"];sing->in[label="1"];sing->land[label="1"];country->tis[label="1"];tis->of[label="1"];thee->i[label="1"];thee->sweet[label="1"];sweet->land[label="1"];fathers->died[label="1"];died->land[label="1"];pilgrims->pride[label="1"];pride->from[label="1"];mountainside->let[label="2"];ring->and[label="2"];ring->when[label="1"];ring->from[label="9"];become->true[label="1"];prodigious->hilltops[label="1"];hilltops->of[label="1"];hampshire->let[label="1"];mountains->of[label="1"];heightening->alleghenies[label="1"];alleghenies->of[label="1"];pennsylvania->let[label="1"];snowcapped->rockies[label="1"];rockies->of[label="1"];colorado->let[label="1"];curvaceous->slopes[label="1"];slopes->of[label="1"];california->but[label="1"];lookout->mountain[label="1"];tennessee->let[label="1"];molehill->of[label="1"];happens->when[label="1"];village->and[label="1"];hamlet->from[label="1"];city->we[label="1"];speed->up[label="1"];jews->and[label="1"];gentiles->protestants[label="1"];protestants->and[label="1"];catholics->will[label="1"];old->negro[label="1"];spiritual->free[label="1"];last->free[label="1"];last->thank[label="1"];thank->god[label="1"];god->almighty[label="1"];almighty->we[label="1"];}
diff --git a/Graph/test/tmpDir/dorrr4464980416921358198.dot b/Graph/test/tmpDir/dorrr4464980416921358198.dot
new file mode 100644
index 0000000..29311c7
--- /dev/null
+++ b/Graph/test/tmpDir/dorrr4464980416921358198.dot
@@ -0,0 +1,2 @@
+digraph G {
+i->am[label="2"];i->go[label="1"];i->still[label="1"];i->have[label="8"];i->must[label="1"];i->say[label="1"];i->sing[label="1", color="red"];am->happy[label="1"];am->not[label="1"];happy->to[label="1"];to->join[label="3"];to->you[label="1"];to->go[label="1"];to->the[label="5"];to->our[label="2"];to->a[label="2"];to->stand[label="1"];to->this[label="1"];to->millions[label="1"];to->end[label="1"];to->dramatize[label="1"];to->cash[label="2"];to->which[label="1"];to->fall[label="1"];to->be[label="2"];to->believe[label="2"];to->remind[label="1"];to->engage[label="1"];to->take[label="1"];to->make[label="2"];to->rise[label="1"];to->lift[label="1"];to->overlook[label="1"];to->blow[label="1"];to->business[label="1"];to->shake[label="1"];to->my[label="1"];to->satisfy[label="1"];to->struggle[label="1"];to->degenerate[label="1"];to->realize[label="2"];to->mississippi[label="1"];to->vote[label="1"];to->jail[label="1"];to->work[label="2"];to->alabama[label="1"];to->south[label="1"];to->georgia[label="1"];to->louisiana[label="1"];to->sit[label="1"];to->hew[label="1"];to->transform[label="1"];to->pray[label="1"];to->sing[label="1"];to->speed[label="1"];join->with[label="1"];join->hands[label="2"];with->with[label="1"];with->you[label="1"];with->the[label="5"];with->our[label="1"];with->this[label="3"];with->soul[label="1"];with->new[label="1"];with->its[label="2"];with->little[label="1"];you->today[label="2"];you->be[label="1"];you->have[label="4"];you->battered[label="1"];today->i[label="2"];today->to[label="1"];today->in[label="1"];today->signed[label="1"];today->and[label="1"];today->that[label="1"];today->have[label="1"];today->my[label="1"];in->what[label="1"];in->history[label="1"];in->the[label="11"];in->a[label="2"];in->whose[label="1"];in->his[label="1"];in->america[label="1"];in->new[label="1"];in->mississippi[label="1"];in->alabama[label="2"];what->will[label="1"];will->you[label="1"];will->go[label="1"];will->one[label="1"];will->not[label="3"];will->be[label="16"];will->give[label="1"];will->have[label="1"];will->now[label="1"];will->rise[label="1"];will->continue[label="1"];go->to[label="1"];go->down[label="1"];go->back[label="7"];down->in[label="2"];down->like[label="1"];down->together[label="1"];history->as[label="1"];history->of[label="1"];as->the[label="3"];as->our[label="2"];as->a[label="3"];as->we[label="1"];as->long[label="5"];as->well[label="1"];as->white[label="1"];as->her[label="1"];as->usual[label="1"];as->evidenced[label="1"];as->sisters[label="1"];the->history[label="1"];the->greatest[label="1"];the->nation[label="2"];the->great[label="1"];the->american[label="1"];the->emancipation[label="1"];the->negro[label="9"];the->flames[label="1"];the->long[label="1"];the->life[label="1"];the->manacles[label="1"];the->chains[label="1"];the->midst[label="1"];the->corners[label="1"];the->architects[label="1"];the->magnificent[label="1"];the->words[label="2"];the->constitution[label="1"];the->declaration[label="1"];the->unalienable[label="1"];the->pursuit[label="1"];the->color[label="1"];the->bank[label="1"];the->riches[label="1"];the->security[label="1"];the->fierce[label="1"];the->urgency[label="1"];the->time[label="4"];the->luxury[label="1"];the->tranquilizing[label="1"];the->promises[label="1"];the->dark[label="1"];the->valley[label="1"];the->sunlit[label="1"];the->quicksands[label="1"];the->solid[label="1"];the->moment[label="1"];the->negros[label="2"];the->content[label="1"];the->whirlwinds[label="1"];the->foundations[label="1"];the->bright[label="1"];the->day[label="2"];the->warm[label="1"];the->palace[label="1"];the->process[label="1"];the->cup[label="1"];the->high[label="1"];the->majestic[label="1"];the->marvelous[label="1"];the->pledge[label="1"];the->devotees[label="1"];the->victim[label="1"];the->unspeakable[label="1"];the->fatigue[label="1"];the->motels[label="1"];the->highways[label="1"];the->hotels[label="1"];the->cities[label="1"];the->mighty[label="1"];the->storms[label="1"];the->winds[label="1"];the->veterans[label="1"];the->faith[label="2"];the->south[label="1"];the->slums[label="1"];the->difficulties[label="1"];the->true[label="1"];the->red[label="1"];the->sons[label="2"];the->table[label="1"];the->state[label="1"];the->heat[label="2"];the->mountain[label="1"];the->rough[label="1"];the->crooked[label="1"];the->glory[label="1"];the->lord[label="1"];the->jangling[label="1"];the->pilgrims[label="1"];the->prodigious[label="1"];the->heightening[label="1"];the->snowcapped[label="1"];the->curvaceous[label="1"];the->old[label="1"];greatest->demonstration[label="1"];demonstration->for[label="1"];for->the[label="1"];for->freedom[label="4"];for->which[label="1"];for->all[label="1"];for->many[label="1"];for->whites[label="1"];freedom->in[label="1"];freedom->we[label="1"];freedom->is[label="1"];freedom->by[label="1"];freedom->and[label="3"];freedom->left[label="1"];freedom->together[label="1"];freedom->ring[label="11"];of->you[label="3"];of->today[label="1"];of->the[label="12"];of->freedom[label="3"];of->our[label="6"];of->a[label="1"];of->great[label="1"];of->american[label="1"];of->this[label="1"];of->hope[label="2"];of->negro[label="1"];of->withering[label="1"];of->injustice[label="1"];of->their[label="5"];of->life[label="1"];of->segregation[label="2"];of->discrimination[label="1"];of->poverty[label="1"];of->material[label="1"];of->independence[label="1"];of->all[label="1"];of->liberty[label="1"];of->happiness[label="1"];of->color[label="1"];of->honoring[label="1"];of->justice[label="4"];of->opportunity[label="1"];of->now[label="1"];of->cooling[label="1"];of->gradualism[label="1"];of->democracy[label="1"];of->racial[label="2"];of->brotherhood[label="3"];of->gods[label="3"];of->revolt[label="1"];of->gaining[label="1"];of->wrongful[label="1"];of->bitterness[label="1"];of->dignity[label="1"];of->creative[label="1"];of->meeting[label="1"];of->new[label="2"];of->civil[label="1"];of->police[label="2"];of->travel[label="1"];of->mississippi[label="2"];of->persecution[label="1"];of->georgia[label="2"];of->despair[label="2"];of->its[label="1"];of->former[label="2"];of->oppression[label="1"];of->interposition[label="1"];of->thee[label="2"];of->pennsylvania[label="1"];of->colorado[label="1"];of->california[label="1"];of->tennessee[label="1"];our->freedom[label="1"];our->nation[label="4"];our->hope[label="1"];our->nations[label="1"];our->republic[label="1"];our->white[label="1"];our->children[label="1"];our->rightful[label="1"];our->thirst[label="1"];our->struggle[label="1"];our->creative[label="1"];our->destiny[label="1"];our->bodies[label="1"];our->northern[label="1"];nation->to[label="1"];nation->will[label="1"];nation->five[label="1"];nation->this[label="1"];nation->and[label="1"];nation->from[label="1"];nation->until[label="1"];nation->returns[label="1"];nation->into[label="1"];nation->where[label="1"];five->score[label="1"];score->years[label="1"];years->ago[label="1"];years->later[label="4"];ago->a[label="1"];a->nation[label="1"];a->great[label="3"];a->negro[label="2"];a->joyous[label="1"];a->lonely[label="1"];a->vast[label="1"];a->shameful[label="1"];a->sense[label="1"];a->check[label="3"];a->promissory[label="1"];a->promise[label="1"];a->bad[label="1"];a->reality[label="1"];a->beginning[label="1"];a->rude[label="1"];a->distrust[label="1"];a->smaller[label="1"];a->larger[label="1"];a->mighty[label="1"];a->dream[label="10"];a->state[label="1"];a->stone[label="1"];a->beautiful[label="1"];great->nation[label="1"];great->american[label="1"];great->beacon[label="1"];great->vaults[label="1"];great->trials[label="1"];american->in[label="1"];american->society[label="1"];american->was[label="1"];american->dream[label="1"];whose->symbolic[label="1"];symbolic->shadow[label="1"];shadow->we[label="1"];we->will[label="6"];we->stand[label="1"];we->are[label="2"];we->refuse[label="2"];we->have[label="1"];we->must[label="5"];we->let[label="1"];we->allow[label="1"];we->cannot[label="4"];we->walk[label="1"];we->shall[label="1"];we->can[label="3"];we->face[label="1"];we->hold[label="1"];stand->today[label="1"];stand->on[label="1"];stand->up[label="1"];signed->the[label="1"];emancipation->proclamation[label="1"];proclamation->this[label="1"];this->will[label="2"];this->nation[label="2"];this->momentous[label="1"];this->is[label="3"];this->check[label="1"];this->promissory[label="1"];this->note[label="1"];this->sacred[label="1"];this->hallowed[label="1"];this->sweltering[label="1"];this->must[label="1"];this->faith[label="3"];this->situation[label="1"];this->happens[label="1"];momentous->decree[label="1"];decree->came[label="1"];came->as[label="2"];beacon->light[label="1"];light->of[label="1"];hope->to[label="1"];hope->with[label="1"];hope->and[label="1"];hope->that[label="1"];millions->of[label="1"];negro->in[label="2"];negro->slaves[label="1"];negro->still[label="1"];negro->is[label="4"];negro->lives[label="1"];negro->people[label="1"];negro->needed[label="1"];negro->community[label="1"];negro->spiritual[label="1"];slaves->who[label="1"];slaves->and[label="1"];who->stand[label="1"];who->hope[label="1"];who->had[label="1"];who->are[label="1"];had->been[label="1"];been->the[label="1"];been->seared[label="1"];seared->in[label="1"];flames->of[label="1"];withering->injustice[label="1"];injustice->to[label="1"];injustice->it[label="1"];injustice->sweltering[label="1"];it->came[label="1"];it->is[label="2"];it->would[label="1"];it->together[label="1"];it->ring[label="1"];joyous->daybreak[label="1"];daybreak->to[label="1"];end->the[label="1"];end->but[label="1"];long->as[label="5"];long->night[label="1"];night->of[label="1"];their->freedom[label="1"];their->captivity[label="1"];their->dignity[label="1"];their->presence[label="1"];their->destiny[label="1"];their->selfhood[label="1"];their->skin[label="1"];their->character[label="1"];captivity->but[label="1"];but->a[label="1"];but->we[label="1"];but->one[label="1"];but->not[label="1"];but->by[label="1"];but->there[label="1"];one->we[label="1"];one->hundred[label="4"];one->day[label="8"];hundred->years[label="4"];later->the[label="4"];still->is[label="1"];still->sadly[label="1"];still->languished[label="1"];still->have[label="1"];is->to[label="1"];is->the[label="6"];is->our[label="1"];is->a[label="1"];is->still[label="2"];is->not[label="2"];is->an[label="1"];is->obvious[label="1"];is->bankrupt[label="1"];is->no[label="1"];is->from[label="1"];is->granted[label="1"];is->something[label="1"];is->tied[label="1"];is->inextricably[label="1"];is->redemptive[label="1"];not->free[label="1"];not->an[label="1"];not->be[label="3"];not->pass[label="1"];not->seek[label="1"];not->allow[label="1"];not->lead[label="1"];not->satisfied[label="1"];not->only[label="1"];not->unmindful[label="1"];not->wallow[label="1"];free->one[label="2"];free->at[label="3"];life->of[label="1"];life->liberty[label="1"];sadly->crippled[label="1"];crippled->by[label="1"];by->the[label="5"];by->their[label="1"];by->drinking[label="1"];by->signs[label="1"];manacles->of[label="1"];segregation->to[label="1"];segregation->and[label="1"];and->will[label="2"];and->as[label="1"];and->the[label="8"];and->a[label="1"];and->we[label="1"];and->this[label="2"];and->finds[label="1"];and->so[label="4"];and->when[label="1"];and->they[label="1"];and->every[label="3"];and->all[label="1"];and->black[label="1"];and->white[label="2"];and->justice[label="1"];and->there[label="1"];and->desolate[label="1"];and->equality[label="1"];and->those[label="1"];and->if[label="1"];and->hatred[label="1"];and->discipline[label="1"];and->again[label="1"];and->brothers[label="1"];and->robbed[label="1"];and->righteousness[label="1"];and->some[label="1"];and->tribulations[label="1"];and->staggered[label="1"];and->ghettos[label="1"];and->tomorrow[label="1"];and->live[label="1"];and->nullification[label="1"];and->mountain[label="1"];and->sing[label="1"];and->molehill[label="1"];and->gentiles[label="1"];and->catholics[label="1"];chains->of[label="1"];discrimination->one[label="1"];lives->on[label="1"];on->the[label="3"];on->a[label="1"];on->this[label="1"];lonely->island[label="1"];island->of[label="1"];poverty->in[label="1"];midst->of[label="1"];vast->ocean[label="1"];ocean->of[label="1"];material->prosperity[label="1"];prosperity->one[label="1"];languished->in[label="1"];corners->of[label="1"];society->and[label="1"];finds->himself[label="1"];himself->an[label="1"];an->end[label="1"];an->exile[label="1"];an->invigorating[label="1"];an->oasis[label="1"];exile->in[label="1"];his->own[label="1"];his->citizenship[label="1"];his->lips[label="1"];own->land[label="1"];land->of[label="2", color="red"];land->and[label="1"];land->where[label="1"];so->weve[label="2"];so->let[label="1"];so->even[label="1"];weve->come[label="3"];come->to[label="5"];come->here[label="2"];come->back[label="1"];come->from[label="1"];come->fresh[label="1"];here->today[label="2"];here->out[label="1"];dramatize->a[label="1"];shameful->condition[label="1"];condition->in[label="1"];sense->weve[label="1"];nations->capital[label="1"];capital->to[label="1"];cash->a[label="1"];cash->this[label="1"];check->a[label="2"];check->when[label="1"];check->which[label="1"];check->that[label="1"];when->will[label="1"];when->the[label="1"];when->we[label="2"];when->this[label="1"];when->all[label="2"];architects->of[label="1"];republic->wrote[label="1"];wrote->the[label="1"];magnificent->words[label="1"];words->of[label="3"];constitution->and[label="1"];declaration->of[label="1"];independence->they[label="1"];they->will[label="1"];they->were[label="1"];they->have[label="1"];were->signing[label="1"];signing->a[label="1"];promissory->note[label="2"];note->to[label="1"];note->was[label="1"];note->insofar[label="1"];which->to[label="1"];which->every[label="1"];which->has[label="2"];which->leads[label="1"];every->american[label="1"];every->valley[label="1"];every->state[label="1"];every->hill[label="2"];every->mountainside[label="2"];every->village[label="1"];every->hamlet[label="1"];every->city[label="1"];was->to[label="1"];was->a[label="1"];fall->heir[label="1"];heir->this[label="1"];promise->that[label="1"];that->i[label="2"];that->will[label="1"];that->the[label="2"];that->we[label="2"];that->their[label="2"];that->one[label="5"];that->all[label="2"];that->america[label="1"];that->there[label="1"];that->day[label="1"];that->my[label="1"];that->let[label="1"];that->some[label="1"];that->unearned[label="1"];that->somehow[label="1"];all->of[label="3"];all->men[label="2"];all->white[label="1"];all->flesh[label="1"];men->as[label="1"];men->and[label="1"];men->yes[label="1"];men->would[label="1"];men->are[label="1"];men->jews[label="1"];yes->black[label="1"];black->men[label="2"];black->boys[label="1"];black->girls[label="1"];well->as[label="1"];white->men[label="2"];white->people[label="1"];white->brothers[label="1"];white->boys[label="1"];white->girls[label="1"];would->be[label="2"];be->the[label="2"];be->a[label="1"];be->free[label="1"];be->guaranteed[label="1"];be->fatal[label="1"];be->content[label="1"];be->neither[label="1"];be->guilty[label="1"];be->satisfied[label="7"];be->changed[label="1"];be->selfevident[label="1"];be->able[label="8"];be->transformed[label="1"];be->judged[label="1"];be->exalted[label="1"];be->made[label="3"];be->revealed[label="1"];guaranteed->the[label="1"];unalienable->rights[label="1"];rights->the[label="1"];rights->of[label="1"];rights->when[label="1"];liberty->of[label="1"];liberty->and[label="1"];pursuit->of[label="1"];happiness->it[label="1"];obvious->today[label="1"];america->of[label="1"];america->is[label="1"];america->has[label="2"];america->until[label="1"];has->come[label="1"];has->defaulted[label="1"];has->given[label="1"];has->engulfed[label="1"];has->nothing[label="1"];defaulted->on[label="1"];insofar->as[label="1"];her->citizens[label="1"];citizens->of[label="1"];color->of[label="1"];color->are[label="1"];are->not[label="1"];are->free[label="1"];are->concerned[label="1"];are->insufficient[label="1"];are->those[label="1"];are->asking[label="1"];are->stripped[label="1"];are->created[label="1"];concerned->instead[label="1"];instead->of[label="1"];honoring->this[label="1"];sacred->obligation[label="1"];obligation->america[label="1"];given->the[label="1"];people->for[label="1"];people->a[label="1"];people->who[label="1"];bad->check[label="1"];back->to[label="7"];back->marked[label="1"];back->there[label="1"];marked->insufficient[label="1"];insufficient->funds[label="2"];funds->in[label="1"];funds->but[label="1"];refuse->to[label="2"];believe->that[label="2"];bank->of[label="1"];justice->i[label="1"];justice->in[label="1"];justice->a[label="1"];justice->we[label="1"];justice->is[label="1"];justice->now[label="1"];justice->emerges[label="1"];justice->rolls[label="1"];bankrupt->we[label="1"];there->in[label="1"];there->will[label="1"];there->is[label="2"];there->are[label="2"];vaults->of[label="1"];opportunity->of[label="1"];give->us[label="1"];us->to[label="1"];us->not[label="2"];us->upon[label="1"];upon->demand[label="1"];demand->the[label="1"];riches->of[label="1"];security->of[label="1"];have->a[label="10"];have->been[label="1"];have->come[label="5"];have->also[label="1"];also->come[label="1"];hallowed->spot[label="1"];spot->to[label="1"];remind->america[label="1"];fierce->urgency[label="1"];urgency->of[label="2"];now->this[label="1"];now->is[label="4"];now->be[label="1"];no->we[label="1"];no->no[label="1"];no->time[label="1"];time->to[label="5"];engage->in[label="1"];luxury->of[label="1"];cooling->off[label="1"];off->or[label="1"];off->steam[label="1"];or->to[label="1"];take->the[label="1"];tranquilizing->drug[label="1"];drug->of[label="1"];gradualism->now[label="1"];make->the[label="1"];make->justice[label="1"];make->real[label="1"];real->the[label="1"];promises->of[label="1"];democracy->now[label="1"];rise->to[label="1"];rise->from[label="1"];rise->up[label="1"];from->the[label="8"];from->a[label="1"];from->every[label="5"];from->narrow[label="1"];from->areas[label="1"];from->stone[label="1"];from->lookout[label="1"];dark->and[label="1"];desolate->valley[label="1"];valley->of[label="2"];valley->shall[label="1"];sunlit->path[label="1"];path->of[label="1"];racial->injustice[label="1"];racial->justice[label="1"];lift->our[label="1"];quicksands->of[label="1"];solid->rock[label="1"];rock->of[label="1"];brotherhood->i[label="1"];brotherhood->with[label="1"];brotherhood->now[label="1"];reality->for[label="1"];gods->children[label="3"];children->will[label="2"];children->it[label="1"];children->black[label="1"];children->are[label="1"];fatal->for[label="1"];overlook->the[label="1"];moment->this[label="1"];sweltering->with[label="2"];sweltering->summer[label="1"];summer->of[label="1"];negros->legitimate[label="1"];negros->basic[label="1"];legitimate->discontent[label="1"];discontent->will[label="1"];pass->until[label="1"];until->the[label="2"];until->justice[label="1"];until->there[label="1"];invigorating->autumn[label="1"];autumn->of[label="1"];equality->nineteen[label="1"];nineteen->sixtythree[label="1"];sixtythree->is[label="1"];beginning->and[label="1"];those->who[label="2"];needed->to[label="1"];blow->off[label="1"];steam->and[label="1"];content->will[label="1"];content->of[label="1"];rude->awakening[label="1"];awakening->if[label="1"];if->the[label="1"];if->america[label="1"];returns->to[label="1"];business->as[label="1"];usual->and[label="1"];neither->rest[label="1"];rest->nor[label="1"];nor->tranquility[label="1"];tranquility->in[label="1"];granted->his[label="1"];citizenship->rights[label="1"];whirlwinds->of[label="1"];revolt->will[label="1"];continue->to[label="2"];shake->the[label="1"];foundations->of[label="1"];bright->day[label="1"];day->down[label="1"];day->of[label="1"];day->this[label="2"];day->and[label="1"];day->on[label="1"];day->when[label="2"];day->every[label="1"];day->even[label="1"];day->live[label="1"];day->right[label="1"];emerges->but[label="1"];something->that[label="1"];must->not[label="3"];must->make[label="1"];must->rise[label="1"];must->say[label="1"];must->forever[label="1"];must->become[label="1"];say->to[label="2"];my->people[label="1"];my->friends[label="1"];my->four[label="1"];my->country[label="1"];my->fathers[label="1"];warm->threshold[label="1"];threshold->which[label="1"];leads->into[label="1"];into->the[label="1"];into->a[label="1"];into->an[label="1"];into->physical[label="1"];palace->of[label="1"];process->of[label="1"];gaining->our[label="1"];rightful->place[label="1"];place->we[label="1"];guilty->of[label="1"];wrongful->deeds[label="1"];deeds->let[label="1"];let->freedom[label="10"];let->it[label="1"];let->us[label="2"];seek->to[label="1"];satisfy->our[label="1"];thirst->for[label="1"];drinking->from[label="1"];cup->of[label="1"];bitterness->and[label="1"];hatred->we[label="1"];forever->conduct[label="1"];conduct->our[label="1"];struggle->on[label="1"];struggle->together[label="1"];high->plane[label="1"];plane->of[label="1"];dignity->by[label="1"];dignity->and[label="1"];discipline->we[label="1"];allow->freedom[label="1"];allow->our[label="1"];creative->protest[label="1"];creative->suffering[label="1"];protest->to[label="1"];degenerate->into[label="1"];physical->violence[label="1"];physical->force[label="1"];violence->again[label="1"];again->we[label="1"];again->and[label="1"];majestic->heights[label="1"];heights->of[label="1"];meeting->physical[label="1"];force->with[label="1"];force->the[label="1"];soul->force[label="1"];marvelous->new[label="1"];new->militancy[label="1"];new->york[label="2"];new->meaning[label="1"];new->hampshire[label="1"];militancy->which[label="1"];engulfed->the[label="1"];community->must[label="1"];lead->us[label="1"];distrust->of[label="1"];many->of[label="1"];brothers->i[label="1"];brothers->as[label="1"];evidenced->by[label="1"];presence->here[label="1"];realize->that[label="2"];destiny->is[label="1"];destiny->and[label="1"];tied->up[label="1"];up->with[label="1"];up->for[label="1"];up->and[label="1"];up->that[label="1"];inextricably->bound[label="1"];bound->to[label="1"];cannot->be[label="2"];cannot->walk[label="1"];cannot->turn[label="1"];cannot->gain[label="1"];cannot->vote[label="1"];walk->we[label="1"];walk->alone[label="1"];alone->and[label="1"];pledge->that[label="1"];shall->be[label="3"];shall->always[label="1"];shall->see[label="1"];always->march[label="1"];march->ahead[label="1"];ahead->we[label="1"];turn->back[label="1"];asking->the[label="1"];devotees->of[label="1"];civil->rights[label="1"];satisfied->as[label="5"];satisfied->we[label="1"];satisfied->and[label="1"];satisfied->until[label="1"];can->and[label="1"];can->never[label="3"];never->be[label="3"];victim->of[label="1"];unspeakable->horrors[label="1"];horrors->of[label="1"];police->brutality[label="2"];brutality->you[label="1"];brutality->we[label="1"];bodies->heavy[label="1"];heavy->with[label="1"];fatigue->of[label="1"];travel->cannot[label="1"];gain->lodging[label="1"];lodging->in[label="1"];motels->of[label="1"];highways->and[label="1"];hotels->of[label="1"];cities->we[label="1"];cities->knowing[label="1"];basic->mobility[label="1"];mobility->is[label="1"];smaller->ghetto[label="1"];ghetto->to[label="1"];larger->one[label="1"];stripped->of[label="1"];selfhood->and[label="1"];robbed->of[label="1"];signs->stating[label="1"];stating->for[label="1"];whites->only[label="1"];only->we[label="1"];only->that[label="1"];mississippi->go[label="1"];mississippi->a[label="1"];mississippi->from[label="1"];mississippi->cannot[label="1"];vote->and[label="1"];vote->no[label="1"];york->let[label="1"];york->believes[label="1"];believes->he[label="1"];he->has[label="1"];nothing->for[label="1"];rolls->down[label="1"];like->a[label="1"];like->waters[label="1"];waters->and[label="1"];righteousness->like[label="1"];mighty->stream[label="1"];mighty->mountains[label="1"];stream->i[label="1"];unmindful->that[label="1"];some->of[label="3"];out->the[label="1"];out->of[label="2"];trials->and[label="1"];tribulations->some[label="1"];fresh->from[label="1"];narrow->jail[label="1"];jail->cells[label="1"];jail->together[label="1"];cells->and[label="1"];areas->where[label="1"];where->they[label="1"];where->my[label="1"];where->your[label="1"];your->quest[label="1"];quest->for[label="1"];quest->quest[label="1"];left->you[label="1"];battered->by[label="1"];storms->of[label="1"];persecution->and[label="1"];staggered->by[label="1"];winds->of[label="1"];veterans->of[label="1"];suffering->is[label="1"];suffering->continue[label="1"];work->with[label="1"];work->together[label="1"];faith->we[label="3"];faith->that[label="2"];unearned->suffering[label="1"];redemptive->go[label="1"];alabama->with[label="1"];alabama->go[label="1"];alabama->little[label="1"];south->with[label="1"];south->carolina[label="1"];carolina->go[label="1"];georgia->go[label="1"];georgia->the[label="1"];georgia->let[label="1"];louisiana->go[label="1"];slums->and[label="1"];ghettos->of[label="1"];northern->cities[label="1"];knowing->that[label="2"];somehow->this[label="1"];situation->can[label="1"];changed->let[label="1"];wallow->in[label="1"];despair->i[label="1"];despair->a[label="1"];friends->and[label="1"];even->the[label="1"];even->though[label="1"];though->we[label="1"];face->the[label="1"];difficulties->of[label="1"];tomorrow->i[label="1"];dream->i[label="1"];dream->today[label="2"];dream->it[label="1"];dream->that[label="6"];dream->deeply[label="1"];deeply->rooted[label="1"];rooted->in[label="1"];live->in[label="1"];live->out[label="1"];true->and[label="1"];true->meaning[label="1"];meaning->of[label="1"];meaning->my[label="1"];its->creed[label="1"];its->vicious[label="1"];its->governor[label="1"];creed->we[label="1"];hold->these[label="1"];these->truths[label="1"];truths->to[label="1"];selfevident->that[label="1"];created->equal[label="1"];equal->i[label="1"];red->hills[label="1"];hills->of[label="1"];sons->of[label="2"];former->slaves[label="1"];former->slave[label="1"];slave->owners[label="1"];owners->will[label="1"];able->to[label="8"];sit->down[label="1"];together->to[label="4"];together->this[label="1"];together->knowing[label="1"];together->at[label="1"];at->the[label="1"];at->last[label="3"];table->of[label="1"];state->of[label="1"];state->and[label="1"];state->sweltering[label="1"];heat->of[label="2"];oppression->will[label="1"];transformed->into[label="1"];oasis->of[label="1"];four->little[label="1"];little->black[label="1"];little->white[label="1"];little->children[label="1"];judged->by[label="1"];skin->but[label="1"];character->i[label="1"];vicious->racists[label="1"];racists->with[label="1"];governor->having[label="1"];having->his[label="1"];lips->dripping[label="1"];dripping->with[label="1"];interposition->and[label="1"];nullification->one[label="1"];right->there[label="1"];boys->and[label="2"];girls->will[label="1"];girls->as[label="1"];hands->with[label="1"];hands->and[label="1"];sisters->and[label="1"];exalted->and[label="1"];hill->and[label="2"];mountain->of[label="3"];mountain->shall[label="1"];made->low[label="1"];made->plain[label="1"];made->straight[label="1"];low->the[label="1"];rough->places[label="1"];places->will[label="2"];plain->and[label="1"];crooked->places[label="1"];straight->and[label="1"];glory->of[label="1"];lord->shall[label="1"];revealed->and[label="1"];flesh->shall[label="1"];see->it[label="1"];hew->out[label="1"];stone->of[label="1"];stone->mountain[label="1"];transform->the[label="1"];jangling->discords[label="1"];discords->of[label="1"];beautiful->symphony[label="1"];symphony->of[label="1"];pray->together[label="1"];sing->with[label="1"];sing->in[label="1"];sing->land[label="1", color="red"];country->tis[label="1"];tis->of[label="1"];thee->i[label="1"];thee->sweet[label="1"];sweet->land[label="1"];fathers->died[label="1"];died->land[label="1"];pilgrims->pride[label="1"];pride->from[label="1"];mountainside->let[label="2"];ring->and[label="2"];ring->when[label="1"];ring->from[label="9"];become->true[label="1"];prodigious->hilltops[label="1"];hilltops->of[label="1"];hampshire->let[label="1"];mountains->of[label="1"];heightening->alleghenies[label="1"];alleghenies->of[label="1"];pennsylvania->let[label="1"];snowcapped->rockies[label="1"];rockies->of[label="1"];colorado->let[label="1"];curvaceous->slopes[label="1"];slopes->of[label="1"];california->but[label="1"];lookout->mountain[label="1"];tennessee->let[label="1"];molehill->of[label="1"];happens->when[label="1"];village->and[label="1"];hamlet->from[label="1"];city->we[label="1"];speed->up[label="1"];jews->and[label="1"];gentiles->protestants[label="1"];protestants->and[label="1"];catholics->will[label="1"];old->negro[label="1"];spiritual->free[label="1"];last->free[label="1"];last->thank[label="1"];thank->god[label="1"];god->almighty[label="1"];almighty->we[label="1"];}
diff --git a/Graph/test/tmpDir/dorrr5293025274803244729.dot b/Graph/test/tmpDir/dorrr5293025274803244729.dot
new file mode 100644
index 0000000..5c16e6b
--- /dev/null
+++ b/Graph/test/tmpDir/dorrr5293025274803244729.dot
@@ -0,0 +1,2 @@
+digraph G {
+i->am[label="2"];i->go[label="1"];i->still[label="1"];i->have[label="8"];i->must[label="1"];i->say[label="1"];i->sing[label="1"];am->happy[label="1"];am->not[label="1"];happy->to[label="1"];to->join[label="3"];to->you[label="1"];to->go[label="1"];to->the[label="5"];to->our[label="2"];to->a[label="2"];to->stand[label="1"];to->this[label="1"];to->millions[label="1"];to->end[label="1"];to->dramatize[label="1"];to->cash[label="2"];to->which[label="1"];to->fall[label="1"];to->be[label="2"];to->believe[label="2"];to->remind[label="1"];to->engage[label="1"];to->take[label="1"];to->make[label="2"];to->rise[label="1"];to->lift[label="1"];to->overlook[label="1"];to->blow[label="1"];to->business[label="1"];to->shake[label="1"];to->my[label="1"];to->satisfy[label="1"];to->struggle[label="1"];to->degenerate[label="1"];to->realize[label="2"];to->mississippi[label="1"];to->vote[label="1"];to->jail[label="1"];to->work[label="2"];to->alabama[label="1"];to->south[label="1"];to->georgia[label="1"];to->louisiana[label="1"];to->sit[label="1"];to->hew[label="1"];to->transform[label="1"];to->pray[label="1"];to->sing[label="1"];to->speed[label="1"];join->with[label="1"];join->hands[label="2"];with->with[label="1"];with->you[label="1"];with->the[label="5"];with->our[label="1"];with->this[label="3"];with->soul[label="1"];with->new[label="1"];with->its[label="2"];with->little[label="1"];you->today[label="2"];you->be[label="1"];you->have[label="4"];you->battered[label="1"];today->i[label="2"];today->to[label="1"];today->in[label="1"];today->signed[label="1"];today->and[label="1"];today->that[label="1"];today->have[label="1"];today->my[label="1"];in->what[label="1"];in->history[label="1"];in->the[label="11"];in->a[label="2"];in->whose[label="1"];in->his[label="1"];in->america[label="1"];in->new[label="1"];in->mississippi[label="1"];in->alabama[label="2"];what->will[label="1"];will->you[label="1"];will->go[label="1"];will->one[label="1"];will->not[label="3"];will->be[label="16"];will->give[label="1"];will->have[label="1"];will->now[label="1"];will->rise[label="1"];will->continue[label="1"];go->to[label="1"];go->down[label="1"];go->back[label="7"];down->in[label="2"];down->like[label="1"];down->together[label="1"];history->as[label="1"];history->of[label="1"];as->the[label="3"];as->our[label="2"];as->a[label="3"];as->we[label="1"];as->long[label="5"];as->well[label="1"];as->white[label="1"];as->her[label="1"];as->usual[label="1"];as->evidenced[label="1"];as->sisters[label="1"];the->history[label="1"];the->greatest[label="1"];the->nation[label="2"];the->great[label="1"];the->american[label="1"];the->emancipation[label="1"];the->negro[label="9"];the->flames[label="1"];the->long[label="1"];the->life[label="1"];the->manacles[label="1"];the->chains[label="1"];the->midst[label="1"];the->corners[label="1"];the->architects[label="1"];the->magnificent[label="1"];the->words[label="2"];the->constitution[label="1"];the->declaration[label="1"];the->unalienable[label="1"];the->pursuit[label="1"];the->color[label="1"];the->bank[label="1"];the->riches[label="1"];the->security[label="1"];the->fierce[label="1"];the->urgency[label="1"];the->time[label="4"];the->luxury[label="1"];the->tranquilizing[label="1"];the->promises[label="1"];the->dark[label="1"];the->valley[label="1"];the->sunlit[label="1"];the->quicksands[label="1"];the->solid[label="1"];the->moment[label="1"];the->negros[label="2"];the->content[label="1"];the->whirlwinds[label="1"];the->foundations[label="1"];the->bright[label="1"];the->day[label="2"];the->warm[label="1"];the->palace[label="1"];the->process[label="1"];the->cup[label="1"];the->high[label="1"];the->majestic[label="1"];the->marvelous[label="1"];the->pledge[label="1"];the->devotees[label="1"];the->victim[label="1"];the->unspeakable[label="1"];the->fatigue[label="1"];the->motels[label="1"];the->highways[label="1"];the->hotels[label="1"];the->cities[label="1"];the->mighty[label="1"];the->storms[label="1"];the->winds[label="1"];the->veterans[label="1"];the->faith[label="2"];the->south[label="1"];the->slums[label="1"];the->difficulties[label="1"];the->true[label="1"];the->red[label="1"];the->sons[label="2"];the->table[label="1"];the->state[label="1"];the->heat[label="2"];the->mountain[label="1"];the->rough[label="1"];the->crooked[label="1"];the->glory[label="1"];the->lord[label="1"];the->jangling[label="1"];the->pilgrims[label="1"];the->prodigious[label="1"];the->heightening[label="1"];the->snowcapped[label="1"];the->curvaceous[label="1"];the->old[label="1"];greatest->demonstration[label="1"];demonstration->for[label="1"];for->the[label="1"];for->freedom[label="4"];for->which[label="1"];for->all[label="1"];for->many[label="1"];for->whites[label="1"];freedom->in[label="1"];freedom->we[label="1"];freedom->is[label="1"];freedom->by[label="1"];freedom->and[label="3"];freedom->left[label="1"];freedom->together[label="1"];freedom->ring[label="11"];of->you[label="3"];of->today[label="1"];of->the[label="12"];of->freedom[label="3"];of->our[label="6"];of->a[label="1"];of->great[label="1"];of->american[label="1"];of->this[label="1"];of->hope[label="2"];of->negro[label="1"];of->withering[label="1"];of->injustice[label="1"];of->their[label="5"];of->life[label="1"];of->segregation[label="2"];of->discrimination[label="1"];of->poverty[label="1"];of->material[label="1"];of->independence[label="1"];of->all[label="1"];of->liberty[label="1"];of->happiness[label="1"];of->color[label="1"];of->honoring[label="1"];of->justice[label="4"];of->opportunity[label="1"];of->now[label="1"];of->cooling[label="1"];of->gradualism[label="1"];of->democracy[label="1"];of->racial[label="2"];of->brotherhood[label="3"];of->gods[label="3"];of->revolt[label="1"];of->gaining[label="1"];of->wrongful[label="1"];of->bitterness[label="1"];of->dignity[label="1"];of->creative[label="1"];of->meeting[label="1"];of->new[label="2"];of->civil[label="1"];of->police[label="2"];of->travel[label="1"];of->mississippi[label="2"];of->persecution[label="1"];of->georgia[label="2"];of->despair[label="2"];of->its[label="1"];of->former[label="2"];of->oppression[label="1"];of->interposition[label="1"];of->thee[label="2"];of->pennsylvania[label="1"];of->colorado[label="1"];of->california[label="1"];of->tennessee[label="1"];our->freedom[label="1"];our->nation[label="4"];our->hope[label="1"];our->nations[label="1"];our->republic[label="1"];our->white[label="1"];our->children[label="1"];our->rightful[label="1"];our->thirst[label="1"];our->struggle[label="1"];our->creative[label="1"];our->destiny[label="1"];our->bodies[label="1"];our->northern[label="1"];nation->to[label="1"];nation->will[label="1"];nation->five[label="1"];nation->this[label="1"];nation->and[label="1"];nation->from[label="1"];nation->until[label="1"];nation->returns[label="1"];nation->into[label="1"];nation->where[label="1"];five->score[label="1"];score->years[label="1"];years->ago[label="1"];years->later[label="4"];ago->a[label="1"];a->nation[label="1"];a->great[label="3"];a->negro[label="2"];a->joyous[label="1"];a->lonely[label="1"];a->vast[label="1"];a->shameful[label="1"];a->sense[label="1"];a->check[label="3"];a->promissory[label="1"];a->promise[label="1"];a->bad[label="1"];a->reality[label="1"];a->beginning[label="1"];a->rude[label="1"];a->distrust[label="1"];a->smaller[label="1"];a->larger[label="1"];a->mighty[label="1"];a->dream[label="10"];a->state[label="1"];a->stone[label="1"];a->beautiful[label="1"];great->nation[label="1"];great->american[label="1"];great->beacon[label="1"];great->vaults[label="1"];great->trials[label="1"];american->in[label="1"];american->society[label="1"];american->was[label="1"];american->dream[label="1"];whose->symbolic[label="1"];symbolic->shadow[label="1"];shadow->we[label="1"];we->will[label="6"];we->stand[label="1"];we->are[label="2"];we->refuse[label="2"];we->have[label="1"];we->must[label="5"];we->let[label="1"];we->allow[label="1"];we->cannot[label="4"];we->walk[label="1"];we->shall[label="1"];we->can[label="3"];we->face[label="1"];we->hold[label="1"];stand->today[label="1"];stand->on[label="1"];stand->up[label="1"];signed->the[label="1"];emancipation->proclamation[label="1"];proclamation->this[label="1"];this->will[label="2"];this->nation[label="2"];this->momentous[label="1"];this->is[label="3"];this->check[label="1"];this->promissory[label="1"];this->note[label="1"];this->sacred[label="1"];this->hallowed[label="1"];this->sweltering[label="1"];this->must[label="1"];this->faith[label="3"];this->situation[label="1"];this->happens[label="1"];momentous->decree[label="1"];decree->came[label="1"];came->as[label="2"];beacon->light[label="1"];light->of[label="1"];hope->to[label="1"];hope->with[label="1"];hope->and[label="1"];hope->that[label="1"];millions->of[label="1"];negro->in[label="2"];negro->slaves[label="1"];negro->still[label="1"];negro->is[label="4"];negro->lives[label="1"];negro->people[label="1"];negro->needed[label="1"];negro->community[label="1"];negro->spiritual[label="1"];slaves->who[label="1"];slaves->and[label="1"];who->stand[label="1"];who->hope[label="1"];who->had[label="1"];who->are[label="1"];had->been[label="1"];been->the[label="1"];been->seared[label="1"];seared->in[label="1"];flames->of[label="1"];withering->injustice[label="1"];injustice->to[label="1"];injustice->it[label="1"];injustice->sweltering[label="1"];it->came[label="1"];it->is[label="2"];it->would[label="1"];it->together[label="1"];it->ring[label="1"];joyous->daybreak[label="1"];daybreak->to[label="1"];end->the[label="1"];end->but[label="1"];long->as[label="5"];long->night[label="1"];night->of[label="1"];their->freedom[label="1"];their->captivity[label="1"];their->dignity[label="1"];their->presence[label="1"];their->destiny[label="1"];their->selfhood[label="1"];their->skin[label="1"];their->character[label="1"];captivity->but[label="1"];but->a[label="1"];but->we[label="1"];but->one[label="1"];but->not[label="1"];but->by[label="1"];but->there[label="1"];one->we[label="1"];one->hundred[label="4"];one->day[label="8"];hundred->years[label="4"];later->the[label="4"];still->is[label="1"];still->sadly[label="1"];still->languished[label="1"];still->have[label="1"];is->to[label="1"];is->the[label="6"];is->our[label="1"];is->a[label="1"];is->still[label="2"];is->not[label="2"];is->an[label="1"];is->obvious[label="1"];is->bankrupt[label="1"];is->no[label="1"];is->from[label="1"];is->granted[label="1"];is->something[label="1"];is->tied[label="1"];is->inextricably[label="1"];is->redemptive[label="1"];not->free[label="1"];not->an[label="1"];not->be[label="3"];not->pass[label="1"];not->seek[label="1"];not->allow[label="1"];not->lead[label="1"];not->satisfied[label="1"];not->only[label="1"];not->unmindful[label="1"];not->wallow[label="1"];free->one[label="2"];free->at[label="3"];life->of[label="1"];life->liberty[label="1"];sadly->crippled[label="1"];crippled->by[label="1"];by->the[label="5"];by->their[label="1"];by->drinking[label="1"];by->signs[label="1"];manacles->of[label="1"];segregation->to[label="1"];segregation->and[label="1"];and->will[label="2"];and->as[label="1"];and->the[label="8"];and->a[label="1"];and->we[label="1"];and->this[label="2"];and->finds[label="1"];and->so[label="4"];and->when[label="1"];and->they[label="1"];and->every[label="3"];and->all[label="1"];and->black[label="1"];and->white[label="2"];and->justice[label="1"];and->there[label="1"];and->desolate[label="1"];and->equality[label="1"];and->those[label="1"];and->if[label="1"];and->hatred[label="1"];and->discipline[label="1"];and->again[label="1"];and->brothers[label="1"];and->robbed[label="1"];and->righteousness[label="1"];and->some[label="1"];and->tribulations[label="1"];and->staggered[label="1"];and->ghettos[label="1"];and->tomorrow[label="1"];and->live[label="1"];and->nullification[label="1"];and->mountain[label="1"];and->sing[label="1"];and->molehill[label="1"];and->gentiles[label="1"];and->catholics[label="1"];chains->of[label="1"];discrimination->one[label="1"];lives->on[label="1"];on->the[label="3"];on->a[label="1"];on->this[label="1"];lonely->island[label="1"];island->of[label="1"];poverty->in[label="1"];midst->of[label="1"];vast->ocean[label="1"];ocean->of[label="1"];material->prosperity[label="1"];prosperity->one[label="1"];languished->in[label="1"];corners->of[label="1"];society->and[label="1"];finds->himself[label="1"];himself->an[label="1"];an->end[label="1"];an->exile[label="1"];an->invigorating[label="1"];an->oasis[label="1"];exile->in[label="1"];his->own[label="1"];his->citizenship[label="1"];his->lips[label="1"];own->land[label="1"];land->of[label="2"];land->and[label="1"];land->where[label="1"];so->weve[label="2"];so->let[label="1"];so->even[label="1"];weve->come[label="3"];come->to[label="5"];come->here[label="2"];come->back[label="1"];come->from[label="1"];come->fresh[label="1"];here->today[label="2"];here->out[label="1"];dramatize->a[label="1"];shameful->condition[label="1"];condition->in[label="1"];sense->weve[label="1"];nations->capital[label="1"];capital->to[label="1"];cash->a[label="1"];cash->this[label="1"];check->a[label="2"];check->when[label="1"];check->which[label="1"];check->that[label="1"];when->will[label="1"];when->the[label="1"];when->we[label="2"];when->this[label="1"];when->all[label="2"];architects->of[label="1"];republic->wrote[label="1"];wrote->the[label="1"];magnificent->words[label="1"];words->of[label="3"];constitution->and[label="1"];declaration->of[label="1"];independence->they[label="1"];they->will[label="1"];they->were[label="1"];they->have[label="1"];were->signing[label="1"];signing->a[label="1"];promissory->note[label="2"];note->to[label="1"];note->was[label="1"];note->insofar[label="1"];which->to[label="1"];which->every[label="1"];which->has[label="2"];which->leads[label="1"];every->american[label="1"];every->valley[label="1"];every->state[label="1"];every->hill[label="2"];every->mountainside[label="2"];every->village[label="1"];every->hamlet[label="1"];every->city[label="1"];was->to[label="1"];was->a[label="1"];fall->heir[label="1"];heir->this[label="1"];promise->that[label="1"];that->i[label="2"];that->will[label="1"];that->the[label="2"];that->we[label="2"];that->their[label="2"];that->one[label="5"];that->all[label="2"];that->america[label="1"];that->there[label="1"];that->day[label="1"];that->my[label="1"];that->let[label="1"];that->some[label="1"];that->unearned[label="1"];that->somehow[label="1"];all->of[label="3"];all->men[label="2"];all->white[label="1"];all->flesh[label="1"];men->as[label="1"];men->and[label="1"];men->yes[label="1"];men->would[label="1"];men->are[label="1"];men->jews[label="1"];yes->black[label="1"];black->men[label="2"];black->boys[label="1"];black->girls[label="1"];well->as[label="1"];white->men[label="2"];white->people[label="1"];white->brothers[label="1"];white->boys[label="1"];white->girls[label="1"];would->be[label="2"];be->the[label="2"];be->a[label="1"];be->free[label="1"];be->guaranteed[label="1"];be->fatal[label="1"];be->content[label="1"];be->neither[label="1"];be->guilty[label="1"];be->satisfied[label="7"];be->changed[label="1"];be->selfevident[label="1"];be->able[label="8"];be->transformed[label="1"];be->judged[label="1"];be->exalted[label="1"];be->made[label="3"];be->revealed[label="1"];guaranteed->the[label="1"];unalienable->rights[label="1"];rights->the[label="1"];rights->of[label="1"];rights->when[label="1"];liberty->of[label="1"];liberty->and[label="1"];pursuit->of[label="1"];happiness->it[label="1"];obvious->today[label="1"];america->of[label="1"];america->is[label="1"];america->has[label="2"];america->until[label="1"];has->come[label="1"];has->defaulted[label="1"];has->given[label="1"];has->engulfed[label="1"];has->nothing[label="1"];defaulted->on[label="1"];insofar->as[label="1"];her->citizens[label="1"];citizens->of[label="1"];color->of[label="1"];color->are[label="1"];are->not[label="1"];are->free[label="1"];are->concerned[label="1"];are->insufficient[label="1"];are->those[label="1"];are->asking[label="1"];are->stripped[label="1"];are->created[label="1"];concerned->instead[label="1"];instead->of[label="1"];honoring->this[label="1"];sacred->obligation[label="1"];obligation->america[label="1"];given->the[label="1"];people->for[label="1"];people->a[label="1"];people->who[label="1"];bad->check[label="1"];back->to[label="7"];back->marked[label="1"];back->there[label="1"];marked->insufficient[label="1"];insufficient->funds[label="2"];funds->in[label="1"];funds->but[label="1"];refuse->to[label="2"];believe->that[label="2"];bank->of[label="1"];justice->i[label="1"];justice->in[label="1"];justice->a[label="1"];justice->we[label="1"];justice->is[label="1"];justice->now[label="1"];justice->emerges[label="1"];justice->rolls[label="1"];bankrupt->we[label="1"];there->in[label="1"];there->will[label="1"];there->is[label="2"];there->are[label="2"];vaults->of[label="1"];opportunity->of[label="1"];give->us[label="1"];us->to[label="1"];us->not[label="2"];us->upon[label="1"];upon->demand[label="1"];demand->the[label="1"];riches->of[label="1"];security->of[label="1"];have->a[label="10"];have->been[label="1"];have->come[label="5"];have->also[label="1"];also->come[label="1"];hallowed->spot[label="1"];spot->to[label="1"];remind->america[label="1"];fierce->urgency[label="1"];urgency->of[label="2"];now->this[label="1"];now->is[label="4"];now->be[label="1"];no->we[label="1"];no->no[label="1"];no->time[label="1"];time->to[label="5"];engage->in[label="1"];luxury->of[label="1"];cooling->off[label="1"];off->or[label="1"];off->steam[label="1"];or->to[label="1"];take->the[label="1"];tranquilizing->drug[label="1"];drug->of[label="1"];gradualism->now[label="1"];make->the[label="1"];make->justice[label="1"];make->real[label="1"];real->the[label="1"];promises->of[label="1"];democracy->now[label="1"];rise->to[label="1"];rise->from[label="1"];rise->up[label="1"];from->the[label="8"];from->a[label="1"];from->every[label="5"];from->narrow[label="1"];from->areas[label="1"];from->stone[label="1"];from->lookout[label="1"];dark->and[label="1"];desolate->valley[label="1"];valley->of[label="2"];valley->shall[label="1"];sunlit->path[label="1"];path->of[label="1"];racial->injustice[label="1"];racial->justice[label="1"];lift->our[label="1"];quicksands->of[label="1"];solid->rock[label="1"];rock->of[label="1"];brotherhood->i[label="1"];brotherhood->with[label="1"];brotherhood->now[label="1"];reality->for[label="1"];gods->children[label="3"];children->will[label="2"];children->it[label="1"];children->black[label="1"];children->are[label="1"];fatal->for[label="1"];overlook->the[label="1"];moment->this[label="1"];sweltering->with[label="2"];sweltering->summer[label="1"];summer->of[label="1"];negros->legitimate[label="1"];negros->basic[label="1"];legitimate->discontent[label="1"];discontent->will[label="1"];pass->until[label="1"];until->the[label="2"];until->justice[label="1"];until->there[label="1"];invigorating->autumn[label="1"];autumn->of[label="1"];equality->nineteen[label="1"];nineteen->sixtythree[label="1"];sixtythree->is[label="1"];beginning->and[label="1"];those->who[label="2"];needed->to[label="1"];blow->off[label="1"];steam->and[label="1"];content->will[label="1"];content->of[label="1"];rude->awakening[label="1"];awakening->if[label="1"];if->the[label="1"];if->america[label="1"];returns->to[label="1"];business->as[label="1"];usual->and[label="1"];neither->rest[label="1"];rest->nor[label="1"];nor->tranquility[label="1"];tranquility->in[label="1"];granted->his[label="1"];citizenship->rights[label="1"];whirlwinds->of[label="1"];revolt->will[label="1"];continue->to[label="2"];shake->the[label="1"];foundations->of[label="1"];bright->day[label="1"];day->down[label="1"];day->of[label="1"];day->this[label="2"];day->and[label="1"];day->on[label="1"];day->when[label="2"];day->every[label="1"];day->even[label="1"];day->live[label="1"];day->right[label="1"];emerges->but[label="1"];something->that[label="1"];must->not[label="3"];must->make[label="1"];must->rise[label="1"];must->say[label="1"];must->forever[label="1"];must->become[label="1"];say->to[label="2"];my->people[label="1"];my->friends[label="1"];my->four[label="1"];my->country[label="1"];my->fathers[label="1"];warm->threshold[label="1"];threshold->which[label="1"];leads->into[label="1"];into->the[label="1"];into->a[label="1"];into->an[label="1"];into->physical[label="1"];palace->of[label="1"];process->of[label="1"];gaining->our[label="1"];rightful->place[label="1"];place->we[label="1"];guilty->of[label="1"];wrongful->deeds[label="1"];deeds->let[label="1"];let->freedom[label="10"];let->it[label="1"];let->us[label="2"];seek->to[label="1"];satisfy->our[label="1"];thirst->for[label="1"];drinking->from[label="1"];cup->of[label="1"];bitterness->and[label="1"];hatred->we[label="1"];forever->conduct[label="1"];conduct->our[label="1"];struggle->on[label="1"];struggle->together[label="1"];high->plane[label="1"];plane->of[label="1"];dignity->by[label="1"];dignity->and[label="1"];discipline->we[label="1"];allow->freedom[label="1"];allow->our[label="1"];creative->protest[label="1"];creative->suffering[label="1"];protest->to[label="1"];degenerate->into[label="1"];physical->violence[label="1"];physical->force[label="1"];violence->again[label="1"];again->we[label="1"];again->and[label="1"];majestic->heights[label="1"];heights->of[label="1"];meeting->physical[label="1"];force->with[label="1"];force->the[label="1"];soul->force[label="1"];marvelous->new[label="1"];new->militancy[label="1"];new->york[label="2"];new->meaning[label="1"];new->hampshire[label="1"];militancy->which[label="1"];engulfed->the[label="1"];community->must[label="1"];lead->us[label="1"];distrust->of[label="1"];many->of[label="1"];brothers->i[label="1"];brothers->as[label="1"];evidenced->by[label="1"];presence->here[label="1"];realize->that[label="2"];destiny->is[label="1"];destiny->and[label="1"];tied->up[label="1"];up->with[label="1"];up->for[label="1"];up->and[label="1"];up->that[label="1"];inextricably->bound[label="1"];bound->to[label="1"];cannot->be[label="2"];cannot->walk[label="1"];cannot->turn[label="1"];cannot->gain[label="1"];cannot->vote[label="1"];walk->we[label="1"];walk->alone[label="1"];alone->and[label="1"];pledge->that[label="1"];shall->be[label="3"];shall->always[label="1"];shall->see[label="1"];always->march[label="1"];march->ahead[label="1"];ahead->we[label="1"];turn->back[label="1"];asking->the[label="1"];devotees->of[label="1"];civil->rights[label="1"];satisfied->as[label="5"];satisfied->we[label="1"];satisfied->and[label="1"];satisfied->until[label="1"];can->and[label="1"];can->never[label="3"];never->be[label="3"];victim->of[label="1"];unspeakable->horrors[label="1"];horrors->of[label="1"];police->brutality[label="2"];brutality->you[label="1"];brutality->we[label="1"];bodies->heavy[label="1"];heavy->with[label="1"];fatigue->of[label="1"];travel->cannot[label="1"];gain->lodging[label="1"];lodging->in[label="1"];motels->of[label="1"];highways->and[label="1"];hotels->of[label="1"];cities->we[label="1"];cities->knowing[label="1"];basic->mobility[label="1"];mobility->is[label="1"];smaller->ghetto[label="1"];ghetto->to[label="1"];larger->one[label="1"];stripped->of[label="1"];selfhood->and[label="1"];robbed->of[label="1"];signs->stating[label="1"];stating->for[label="1"];whites->only[label="1"];only->we[label="1"];only->that[label="1"];mississippi->go[label="1"];mississippi->a[label="1"];mississippi->from[label="1"];mississippi->cannot[label="1"];vote->and[label="1"];vote->no[label="1"];york->let[label="1"];york->believes[label="1"];believes->he[label="1"];he->has[label="1"];nothing->for[label="1"];rolls->down[label="1"];like->a[label="1"];like->waters[label="1"];waters->and[label="1"];righteousness->like[label="1"];mighty->stream[label="1"];mighty->mountains[label="1"];stream->i[label="1"];unmindful->that[label="1"];some->of[label="3"];out->the[label="1"];out->of[label="2"];trials->and[label="1"];tribulations->some[label="1"];fresh->from[label="1"];narrow->jail[label="1"];jail->cells[label="1"];jail->together[label="1"];cells->and[label="1"];areas->where[label="1"];where->they[label="1"];where->my[label="1"];where->your[label="1"];your->quest[label="1"];quest->for[label="1"];quest->quest[label="1"];left->you[label="1"];battered->by[label="1"];storms->of[label="1"];persecution->and[label="1"];staggered->by[label="1"];winds->of[label="1"];veterans->of[label="1"];suffering->is[label="1"];suffering->continue[label="1"];work->with[label="1"];work->together[label="1"];faith->we[label="3"];faith->that[label="2"];unearned->suffering[label="1"];redemptive->go[label="1"];alabama->with[label="1"];alabama->go[label="1"];alabama->little[label="1"];south->with[label="1"];south->carolina[label="1"];carolina->go[label="1"];georgia->go[label="1"];georgia->the[label="1"];georgia->let[label="1"];louisiana->go[label="1"];slums->and[label="1"];ghettos->of[label="1"];northern->cities[label="1"];knowing->that[label="2"];somehow->this[label="1"];situation->can[label="1"];changed->let[label="1"];wallow->in[label="1"];despair->i[label="1"];despair->a[label="1"];friends->and[label="1"];even->the[label="1"];even->though[label="1"];though->we[label="1"];face->the[label="1"];difficulties->of[label="1"];tomorrow->i[label="1"];dream->i[label="1"];dream->today[label="2"];dream->it[label="1"];dream->that[label="6"];dream->deeply[label="1"];deeply->rooted[label="1"];rooted->in[label="1"];live->in[label="1"];live->out[label="1"];true->and[label="1"];true->meaning[label="1"];meaning->of[label="1"];meaning->my[label="1"];its->creed[label="1"];its->vicious[label="1"];its->governor[label="1"];creed->we[label="1"];hold->these[label="1"];these->truths[label="1"];truths->to[label="1"];selfevident->that[label="1"];created->equal[label="1"];equal->i[label="1"];red->hills[label="1"];hills->of[label="1"];sons->of[label="2"];former->slaves[label="1"];former->slave[label="1"];slave->owners[label="1"];owners->will[label="1"];able->to[label="8"];sit->down[label="1"];together->to[label="4"];together->this[label="1"];together->knowing[label="1"];together->at[label="1"];at->the[label="1"];at->last[label="3"];table->of[label="1"];state->of[label="1"];state->and[label="1"];state->sweltering[label="1"];heat->of[label="2"];oppression->will[label="1"];transformed->into[label="1"];oasis->of[label="1"];four->little[label="1"];little->black[label="1"];little->white[label="1"];little->children[label="1"];judged->by[label="1"];skin->but[label="1"];character->i[label="1"];vicious->racists[label="1"];racists->with[label="1"];governor->having[label="1"];having->his[label="1"];lips->dripping[label="1"];dripping->with[label="1"];interposition->and[label="1"];nullification->one[label="1"];right->there[label="1"];boys->and[label="2"];girls->will[label="1"];girls->as[label="1"];hands->with[label="1"];hands->and[label="1"];sisters->and[label="1"];exalted->and[label="1"];hill->and[label="2"];mountain->of[label="3"];mountain->shall[label="1"];made->low[label="1"];made->plain[label="1"];made->straight[label="1"];low->the[label="1"];rough->places[label="1"];places->will[label="2"];plain->and[label="1"];crooked->places[label="1"];straight->and[label="1"];glory->of[label="1"];lord->shall[label="1"];revealed->and[label="1"];flesh->shall[label="1"];see->it[label="1"];hew->out[label="1"];stone->of[label="1"];stone->mountain[label="1"];transform->the[label="1"];jangling->discords[label="1"];discords->of[label="1"];beautiful->symphony[label="1"];symphony->of[label="1"];pray->together[label="1"];sing->with[label="1"];sing->in[label="1"];sing->land[label="1"];country->tis[label="1"];tis->of[label="1"];thee->i[label="1"];thee->sweet[label="1"];sweet->land[label="1"];fathers->died[label="1"];died->land[label="1"];pilgrims->pride[label="1"];pride->from[label="1"];mountainside->let[label="2"];ring->and[label="2"];ring->when[label="1"];ring->from[label="9"];become->true[label="1"];prodigious->hilltops[label="1"];hilltops->of[label="1"];hampshire->let[label="1"];mountains->of[label="1"];heightening->alleghenies[label="1"];alleghenies->of[label="1"];pennsylvania->let[label="1"];snowcapped->rockies[label="1"];rockies->of[label="1"];colorado->let[label="1"];curvaceous->slopes[label="1"];slopes->of[label="1"];california->but[label="1"];lookout->mountain[label="1"];tennessee->let[label="1"];molehill->of[label="1"];happens->when[label="1"];village->and[label="1"];hamlet->from[label="1"];city->we[label="1"];speed->up[label="1"];jews->and[label="1"];gentiles->protestants[label="1"];protestants->and[label="1"];catholics->will[label="1"];old->negro[label="1"];spiritual->free[label="1"];last->free[label="1"];last->thank[label="1"];thank->god[label="1"];god->almighty[label="1"];almighty->we[label="1"];}
diff --git a/Graph/test/tmpDir/dorrr8101831723750419309.dot b/Graph/test/tmpDir/dorrr8101831723750419309.dot
new file mode 100644
index 0000000..4ec9c2f
--- /dev/null
+++ b/Graph/test/tmpDir/dorrr8101831723750419309.dot
@@ -0,0 +1,2 @@
+digraph G {
+i->am[label="2", color="red"];i->go[label="1"];i->still[label="1"];i->have[label="8"];i->must[label="1"];i->say[label="1"];i->sing[label="1"];am->happy[label="1"];am->not[label="1"];happy->to[label="1"];to->join[label="3"];to->you[label="1"];to->go[label="1"];to->the[label="5"];to->our[label="2"];to->a[label="2"];to->stand[label="1"];to->this[label="1"];to->millions[label="1"];to->end[label="1"];to->dramatize[label="1"];to->cash[label="2"];to->which[label="1"];to->fall[label="1"];to->be[label="2"];to->believe[label="2"];to->remind[label="1"];to->engage[label="1"];to->take[label="1"];to->make[label="2"];to->rise[label="1"];to->lift[label="1"];to->overlook[label="1"];to->blow[label="1"];to->business[label="1"];to->shake[label="1"];to->my[label="1"];to->satisfy[label="1"];to->struggle[label="1"];to->degenerate[label="1"];to->realize[label="2"];to->mississippi[label="1"];to->vote[label="1"];to->jail[label="1"];to->work[label="2"];to->alabama[label="1"];to->south[label="1"];to->georgia[label="1"];to->louisiana[label="1"];to->sit[label="1"];to->hew[label="1"];to->transform[label="1"];to->pray[label="1"];to->sing[label="1"];to->speed[label="1"];join->with[label="1"];join->hands[label="2"];with->with[label="1"];with->you[label="1"];with->the[label="5"];with->our[label="1"];with->this[label="3"];with->soul[label="1"];with->new[label="1"];with->its[label="2"];with->little[label="1"];you->today[label="2"];you->be[label="1"];you->have[label="4"];you->battered[label="1"];today->i[label="2"];today->to[label="1"];today->in[label="1"];today->signed[label="1"];today->and[label="1"];today->that[label="1"];today->have[label="1"];today->my[label="1"];in->what[label="1"];in->history[label="1"];in->the[label="11"];in->a[label="2"];in->whose[label="1"];in->his[label="1"];in->america[label="1"];in->new[label="1"];in->mississippi[label="1"];in->alabama[label="2"];what->will[label="1"];will->you[label="1"];will->go[label="1"];will->one[label="1"];will->not[label="3"];will->be[label="16"];will->give[label="1"];will->have[label="1"];will->now[label="1"];will->rise[label="1"];will->continue[label="1"];go->to[label="1"];go->down[label="1"];go->back[label="7"];down->in[label="2"];down->like[label="1"];down->together[label="1"];history->as[label="1"];history->of[label="1"];as->the[label="3"];as->our[label="2"];as->a[label="3"];as->we[label="1"];as->long[label="5"];as->well[label="1"];as->white[label="1"];as->her[label="1"];as->usual[label="1"];as->evidenced[label="1"];as->sisters[label="1"];the->history[label="1"];the->greatest[label="1"];the->nation[label="2"];the->great[label="1"];the->american[label="1"];the->emancipation[label="1"];the->negro[label="9"];the->flames[label="1"];the->long[label="1"];the->life[label="1"];the->manacles[label="1"];the->chains[label="1"];the->midst[label="1"];the->corners[label="1"];the->architects[label="1"];the->magnificent[label="1"];the->words[label="2"];the->constitution[label="1"];the->declaration[label="1"];the->unalienable[label="1"];the->pursuit[label="1"];the->color[label="1"];the->bank[label="1"];the->riches[label="1"];the->security[label="1"];the->fierce[label="1"];the->urgency[label="1"];the->time[label="4"];the->luxury[label="1"];the->tranquilizing[label="1"];the->promises[label="1"];the->dark[label="1"];the->valley[label="1"];the->sunlit[label="1"];the->quicksands[label="1"];the->solid[label="1"];the->moment[label="1"];the->negros[label="2"];the->content[label="1"];the->whirlwinds[label="1"];the->foundations[label="1"];the->bright[label="1"];the->day[label="2"];the->warm[label="1"];the->palace[label="1"];the->process[label="1"];the->cup[label="1"];the->high[label="1"];the->majestic[label="1"];the->marvelous[label="1"];the->pledge[label="1"];the->devotees[label="1"];the->victim[label="1"];the->unspeakable[label="1"];the->fatigue[label="1"];the->motels[label="1"];the->highways[label="1"];the->hotels[label="1"];the->cities[label="1"];the->mighty[label="1"];the->storms[label="1"];the->winds[label="1"];the->veterans[label="1"];the->faith[label="2"];the->south[label="1"];the->slums[label="1"];the->difficulties[label="1"];the->true[label="1"];the->red[label="1"];the->sons[label="2"];the->table[label="1"];the->state[label="1"];the->heat[label="2"];the->mountain[label="1"];the->rough[label="1"];the->crooked[label="1"];the->glory[label="1"];the->lord[label="1"];the->jangling[label="1"];the->pilgrims[label="1"];the->prodigious[label="1"];the->heightening[label="1"];the->snowcapped[label="1"];the->curvaceous[label="1"];the->old[label="1"];greatest->demonstration[label="1"];demonstration->for[label="1"];for->the[label="1"];for->freedom[label="4"];for->which[label="1"];for->all[label="1"];for->many[label="1"];for->whites[label="1"];freedom->in[label="1"];freedom->we[label="1"];freedom->is[label="1"];freedom->by[label="1"];freedom->and[label="3"];freedom->left[label="1"];freedom->together[label="1"];freedom->ring[label="11"];of->you[label="3"];of->today[label="1"];of->the[label="12"];of->freedom[label="3"];of->our[label="6"];of->a[label="1"];of->great[label="1"];of->american[label="1"];of->this[label="1"];of->hope[label="2"];of->negro[label="1"];of->withering[label="1"];of->injustice[label="1"];of->their[label="5"];of->life[label="1"];of->segregation[label="2"];of->discrimination[label="1"];of->poverty[label="1"];of->material[label="1"];of->independence[label="1"];of->all[label="1"];of->liberty[label="1"];of->happiness[label="1"];of->color[label="1"];of->honoring[label="1"];of->justice[label="4"];of->opportunity[label="1"];of->now[label="1"];of->cooling[label="1"];of->gradualism[label="1"];of->democracy[label="1"];of->racial[label="2"];of->brotherhood[label="3"];of->gods[label="3"];of->revolt[label="1"];of->gaining[label="1"];of->wrongful[label="1"];of->bitterness[label="1"];of->dignity[label="1"];of->creative[label="1"];of->meeting[label="1"];of->new[label="2"];of->civil[label="1"];of->police[label="2"];of->travel[label="1"];of->mississippi[label="2"];of->persecution[label="1"];of->georgia[label="2"];of->despair[label="2"];of->its[label="1"];of->former[label="2"];of->oppression[label="1"];of->interposition[label="1"];of->thee[label="2"];of->pennsylvania[label="1"];of->colorado[label="1"];of->california[label="1"];of->tennessee[label="1"];our->freedom[label="1"];our->nation[label="4"];our->hope[label="1"];our->nations[label="1"];our->republic[label="1"];our->white[label="1"];our->children[label="1"];our->rightful[label="1"];our->thirst[label="1"];our->struggle[label="1"];our->creative[label="1"];our->destiny[label="1"];our->bodies[label="1"];our->northern[label="1"];nation->to[label="1"];nation->will[label="1"];nation->five[label="1"];nation->this[label="1"];nation->and[label="1"];nation->from[label="1"];nation->until[label="1"];nation->returns[label="1"];nation->into[label="1"];nation->where[label="1"];five->score[label="1"];score->years[label="1"];years->ago[label="1"];years->later[label="4"];ago->a[label="1"];a->nation[label="1"];a->great[label="3"];a->negro[label="2"];a->joyous[label="1"];a->lonely[label="1"];a->vast[label="1"];a->shameful[label="1"];a->sense[label="1"];a->check[label="3"];a->promissory[label="1"];a->promise[label="1"];a->bad[label="1"];a->reality[label="1"];a->beginning[label="1"];a->rude[label="1"];a->distrust[label="1"];a->smaller[label="1"];a->larger[label="1"];a->mighty[label="1"];a->dream[label="10"];a->state[label="1"];a->stone[label="1"];a->beautiful[label="1"];great->nation[label="1"];great->american[label="1"];great->beacon[label="1"];great->vaults[label="1"];great->trials[label="1"];american->in[label="1"];american->society[label="1"];american->was[label="1"];american->dream[label="1"];whose->symbolic[label="1"];symbolic->shadow[label="1"];shadow->we[label="1"];we->will[label="6"];we->stand[label="1"];we->are[label="2"];we->refuse[label="2"];we->have[label="1"];we->must[label="5"];we->let[label="1"];we->allow[label="1"];we->cannot[label="4"];we->walk[label="1"];we->shall[label="1"];we->can[label="3"];we->face[label="1"];we->hold[label="1"];stand->today[label="1"];stand->on[label="1"];stand->up[label="1"];signed->the[label="1"];emancipation->proclamation[label="1"];proclamation->this[label="1"];this->will[label="2"];this->nation[label="2"];this->momentous[label="1"];this->is[label="3"];this->check[label="1"];this->promissory[label="1"];this->note[label="1"];this->sacred[label="1"];this->hallowed[label="1"];this->sweltering[label="1"];this->must[label="1"];this->faith[label="3"];this->situation[label="1"];this->happens[label="1"];momentous->decree[label="1"];decree->came[label="1"];came->as[label="2"];beacon->light[label="1"];light->of[label="1"];hope->to[label="1"];hope->with[label="1"];hope->and[label="1"];hope->that[label="1"];millions->of[label="1"];negro->in[label="2"];negro->slaves[label="1"];negro->still[label="1"];negro->is[label="4"];negro->lives[label="1"];negro->people[label="1"];negro->needed[label="1"];negro->community[label="1"];negro->spiritual[label="1"];slaves->who[label="1"];slaves->and[label="1"];who->stand[label="1"];who->hope[label="1"];who->had[label="1"];who->are[label="1"];had->been[label="1"];been->the[label="1"];been->seared[label="1"];seared->in[label="1"];flames->of[label="1"];withering->injustice[label="1"];injustice->to[label="1"];injustice->it[label="1"];injustice->sweltering[label="1"];it->came[label="1"];it->is[label="2"];it->would[label="1"];it->together[label="1"];it->ring[label="1"];joyous->daybreak[label="1"];daybreak->to[label="1"];end->the[label="1"];end->but[label="1"];long->as[label="5"];long->night[label="1"];night->of[label="1"];their->freedom[label="1"];their->captivity[label="1"];their->dignity[label="1"];their->presence[label="1"];their->destiny[label="1"];their->selfhood[label="1"];their->skin[label="1"];their->character[label="1"];captivity->but[label="1"];but->a[label="1"];but->we[label="1"];but->one[label="1"];but->not[label="1"];but->by[label="1"];but->there[label="1"];one->we[label="1"];one->hundred[label="4"];one->day[label="8"];hundred->years[label="4"];later->the[label="4"];still->is[label="1"];still->sadly[label="1"];still->languished[label="1"];still->have[label="1"];is->to[label="1"];is->the[label="6"];is->our[label="1"];is->a[label="1"];is->still[label="2"];is->not[label="2"];is->an[label="1"];is->obvious[label="1"];is->bankrupt[label="1"];is->no[label="1"];is->from[label="1"];is->granted[label="1"];is->something[label="1"];is->tied[label="1"];is->inextricably[label="1"];is->redemptive[label="1"];not->free[label="1"];not->an[label="1"];not->be[label="3"];not->pass[label="1"];not->seek[label="1"];not->allow[label="1"];not->lead[label="1"];not->satisfied[label="1"];not->only[label="1"];not->unmindful[label="1"];not->wallow[label="1"];free->one[label="2"];free->at[label="3"];life->of[label="1"];life->liberty[label="1"];sadly->crippled[label="1"];crippled->by[label="1"];by->the[label="5"];by->their[label="1"];by->drinking[label="1"];by->signs[label="1"];manacles->of[label="1"];segregation->to[label="1"];segregation->and[label="1"];and->will[label="2"];and->as[label="1"];and->the[label="8"];and->a[label="1"];and->we[label="1"];and->this[label="2"];and->finds[label="1"];and->so[label="4"];and->when[label="1"];and->they[label="1"];and->every[label="3"];and->all[label="1"];and->black[label="1"];and->white[label="2"];and->justice[label="1"];and->there[label="1"];and->desolate[label="1"];and->equality[label="1"];and->those[label="1"];and->if[label="1"];and->hatred[label="1"];and->discipline[label="1"];and->again[label="1"];and->brothers[label="1"];and->robbed[label="1"];and->righteousness[label="1"];and->some[label="1"];and->tribulations[label="1"];and->staggered[label="1"];and->ghettos[label="1"];and->tomorrow[label="1"];and->live[label="1"];and->nullification[label="1"];and->mountain[label="1"];and->sing[label="1"];and->molehill[label="1"];and->gentiles[label="1"];and->catholics[label="1"];chains->of[label="1"];discrimination->one[label="1"];lives->on[label="1"];on->the[label="3"];on->a[label="1"];on->this[label="1"];lonely->island[label="1"];island->of[label="1"];poverty->in[label="1"];midst->of[label="1"];vast->ocean[label="1"];ocean->of[label="1"];material->prosperity[label="1"];prosperity->one[label="1"];languished->in[label="1"];corners->of[label="1"];society->and[label="1"];finds->himself[label="1"];himself->an[label="1"];an->end[label="1"];an->exile[label="1"];an->invigorating[label="1"];an->oasis[label="1"];exile->in[label="1"];his->own[label="1"];his->citizenship[label="1"];his->lips[label="1"];own->land[label="1"];land->of[label="2"];land->and[label="1"];land->where[label="1"];so->weve[label="2"];so->let[label="1"];so->even[label="1"];weve->come[label="3"];come->to[label="5"];come->here[label="2"];come->back[label="1"];come->from[label="1"];come->fresh[label="1"];here->today[label="2"];here->out[label="1"];dramatize->a[label="1"];shameful->condition[label="1"];condition->in[label="1"];sense->weve[label="1"];nations->capital[label="1"];capital->to[label="1"];cash->a[label="1"];cash->this[label="1"];check->a[label="2"];check->when[label="1"];check->which[label="1"];check->that[label="1"];when->will[label="1"];when->the[label="1"];when->we[label="2"];when->this[label="1"];when->all[label="2"];architects->of[label="1"];republic->wrote[label="1"];wrote->the[label="1"];magnificent->words[label="1"];words->of[label="3"];constitution->and[label="1"];declaration->of[label="1"];independence->they[label="1"];they->will[label="1"];they->were[label="1"];they->have[label="1"];were->signing[label="1"];signing->a[label="1"];promissory->note[label="2"];note->to[label="1"];note->was[label="1"];note->insofar[label="1"];which->to[label="1"];which->every[label="1"];which->has[label="2"];which->leads[label="1"];every->american[label="1"];every->valley[label="1"];every->state[label="1"];every->hill[label="2"];every->mountainside[label="2"];every->village[label="1"];every->hamlet[label="1"];every->city[label="1"];was->to[label="1"];was->a[label="1"];fall->heir[label="1"];heir->this[label="1"];promise->that[label="1"];that->i[label="2"];that->will[label="1"];that->the[label="2"];that->we[label="2"];that->their[label="2"];that->one[label="5"];that->all[label="2"];that->america[label="1"];that->there[label="1"];that->day[label="1"];that->my[label="1"];that->let[label="1"];that->some[label="1"];that->unearned[label="1"];that->somehow[label="1"];all->of[label="3"];all->men[label="2"];all->white[label="1"];all->flesh[label="1"];men->as[label="1"];men->and[label="1"];men->yes[label="1"];men->would[label="1"];men->are[label="1"];men->jews[label="1"];yes->black[label="1"];black->men[label="2"];black->boys[label="1"];black->girls[label="1"];well->as[label="1"];white->men[label="2"];white->people[label="1"];white->brothers[label="1"];white->boys[label="1"];white->girls[label="1"];would->be[label="2"];be->the[label="2"];be->a[label="1"];be->free[label="1"];be->guaranteed[label="1"];be->fatal[label="1"];be->content[label="1"];be->neither[label="1"];be->guilty[label="1"];be->satisfied[label="7"];be->changed[label="1"];be->selfevident[label="1"];be->able[label="8"];be->transformed[label="1"];be->judged[label="1"];be->exalted[label="1"];be->made[label="3"];be->revealed[label="1"];guaranteed->the[label="1"];unalienable->rights[label="1"];rights->the[label="1"];rights->of[label="1"];rights->when[label="1"];liberty->of[label="1"];liberty->and[label="1"];pursuit->of[label="1"];happiness->it[label="1"];obvious->today[label="1"];america->of[label="1"];america->is[label="1"];america->has[label="2"];america->until[label="1"];has->come[label="1"];has->defaulted[label="1"];has->given[label="1"];has->engulfed[label="1"];has->nothing[label="1"];defaulted->on[label="1"];insofar->as[label="1"];her->citizens[label="1"];citizens->of[label="1"];color->of[label="1"];color->are[label="1"];are->not[label="1"];are->free[label="1"];are->concerned[label="1"];are->insufficient[label="1"];are->those[label="1"];are->asking[label="1"];are->stripped[label="1"];are->created[label="1"];concerned->instead[label="1"];instead->of[label="1"];honoring->this[label="1"];sacred->obligation[label="1"];obligation->america[label="1"];given->the[label="1"];people->for[label="1"];people->a[label="1"];people->who[label="1"];bad->check[label="1"];back->to[label="7"];back->marked[label="1"];back->there[label="1"];marked->insufficient[label="1"];insufficient->funds[label="2"];funds->in[label="1"];funds->but[label="1"];refuse->to[label="2"];believe->that[label="2"];bank->of[label="1"];justice->i[label="1"];justice->in[label="1"];justice->a[label="1"];justice->we[label="1"];justice->is[label="1"];justice->now[label="1"];justice->emerges[label="1"];justice->rolls[label="1"];bankrupt->we[label="1"];there->in[label="1"];there->will[label="1"];there->is[label="2"];there->are[label="2"];vaults->of[label="1"];opportunity->of[label="1"];give->us[label="1"];us->to[label="1"];us->not[label="2"];us->upon[label="1"];upon->demand[label="1"];demand->the[label="1"];riches->of[label="1"];security->of[label="1"];have->a[label="10"];have->been[label="1"];have->come[label="5"];have->also[label="1"];also->come[label="1"];hallowed->spot[label="1"];spot->to[label="1"];remind->america[label="1"];fierce->urgency[label="1"];urgency->of[label="2"];now->this[label="1"];now->is[label="4"];now->be[label="1"];no->we[label="1"];no->no[label="1"];no->time[label="1"];time->to[label="5"];engage->in[label="1"];luxury->of[label="1"];cooling->off[label="1"];off->or[label="1"];off->steam[label="1"];or->to[label="1"];take->the[label="1"];tranquilizing->drug[label="1"];drug->of[label="1"];gradualism->now[label="1"];make->the[label="1"];make->justice[label="1"];make->real[label="1"];real->the[label="1"];promises->of[label="1"];democracy->now[label="1"];rise->to[label="1"];rise->from[label="1"];rise->up[label="1"];from->the[label="8"];from->a[label="1"];from->every[label="5"];from->narrow[label="1"];from->areas[label="1"];from->stone[label="1"];from->lookout[label="1"];dark->and[label="1"];desolate->valley[label="1"];valley->of[label="2"];valley->shall[label="1"];sunlit->path[label="1"];path->of[label="1"];racial->injustice[label="1"];racial->justice[label="1"];lift->our[label="1"];quicksands->of[label="1"];solid->rock[label="1"];rock->of[label="1"];brotherhood->i[label="1"];brotherhood->with[label="1"];brotherhood->now[label="1"];reality->for[label="1"];gods->children[label="3"];children->will[label="2"];children->it[label="1"];children->black[label="1"];children->are[label="1"];fatal->for[label="1"];overlook->the[label="1"];moment->this[label="1"];sweltering->with[label="2"];sweltering->summer[label="1"];summer->of[label="1"];negros->legitimate[label="1"];negros->basic[label="1"];legitimate->discontent[label="1"];discontent->will[label="1"];pass->until[label="1"];until->the[label="2"];until->justice[label="1"];until->there[label="1"];invigorating->autumn[label="1"];autumn->of[label="1"];equality->nineteen[label="1"];nineteen->sixtythree[label="1"];sixtythree->is[label="1"];beginning->and[label="1"];those->who[label="2"];needed->to[label="1"];blow->off[label="1"];steam->and[label="1"];content->will[label="1"];content->of[label="1"];rude->awakening[label="1"];awakening->if[label="1"];if->the[label="1"];if->america[label="1"];returns->to[label="1"];business->as[label="1"];usual->and[label="1"];neither->rest[label="1"];rest->nor[label="1"];nor->tranquility[label="1"];tranquility->in[label="1"];granted->his[label="1"];citizenship->rights[label="1"];whirlwinds->of[label="1"];revolt->will[label="1"];continue->to[label="2"];shake->the[label="1"];foundations->of[label="1"];bright->day[label="1"];day->down[label="1"];day->of[label="1"];day->this[label="2"];day->and[label="1"];day->on[label="1"];day->when[label="2"];day->every[label="1"];day->even[label="1"];day->live[label="1"];day->right[label="1"];emerges->but[label="1"];something->that[label="1"];must->not[label="3"];must->make[label="1"];must->rise[label="1"];must->say[label="1"];must->forever[label="1"];must->become[label="1"];say->to[label="2"];my->people[label="1"];my->friends[label="1"];my->four[label="1"];my->country[label="1"];my->fathers[label="1"];warm->threshold[label="1"];threshold->which[label="1"];leads->into[label="1"];into->the[label="1"];into->a[label="1"];into->an[label="1"];into->physical[label="1"];palace->of[label="1"];process->of[label="1"];gaining->our[label="1"];rightful->place[label="1"];place->we[label="1"];guilty->of[label="1"];wrongful->deeds[label="1"];deeds->let[label="1"];let->freedom[label="10"];let->it[label="1"];let->us[label="2"];seek->to[label="1"];satisfy->our[label="1"];thirst->for[label="1"];drinking->from[label="1"];cup->of[label="1"];bitterness->and[label="1"];hatred->we[label="1"];forever->conduct[label="1"];conduct->our[label="1"];struggle->on[label="1"];struggle->together[label="1"];high->plane[label="1"];plane->of[label="1"];dignity->by[label="1"];dignity->and[label="1"];discipline->we[label="1"];allow->freedom[label="1"];allow->our[label="1"];creative->protest[label="1"];creative->suffering[label="1"];protest->to[label="1"];degenerate->into[label="1"];physical->violence[label="1"];physical->force[label="1"];violence->again[label="1"];again->we[label="1"];again->and[label="1"];majestic->heights[label="1"];heights->of[label="1"];meeting->physical[label="1"];force->with[label="1"];force->the[label="1"];soul->force[label="1"];marvelous->new[label="1"];new->militancy[label="1"];new->york[label="2"];new->meaning[label="1"];new->hampshire[label="1"];militancy->which[label="1"];engulfed->the[label="1"];community->must[label="1"];lead->us[label="1"];distrust->of[label="1"];many->of[label="1"];brothers->i[label="1"];brothers->as[label="1"];evidenced->by[label="1"];presence->here[label="1"];realize->that[label="2"];destiny->is[label="1"];destiny->and[label="1"];tied->up[label="1"];up->with[label="1"];up->for[label="1"];up->and[label="1"];up->that[label="1"];inextricably->bound[label="1"];bound->to[label="1"];cannot->be[label="2"];cannot->walk[label="1"];cannot->turn[label="1"];cannot->gain[label="1"];cannot->vote[label="1"];walk->we[label="1"];walk->alone[label="1"];alone->and[label="1"];pledge->that[label="1"];shall->be[label="3"];shall->always[label="1"];shall->see[label="1"];always->march[label="1"];march->ahead[label="1"];ahead->we[label="1"];turn->back[label="1"];asking->the[label="1"];devotees->of[label="1"];civil->rights[label="1"];satisfied->as[label="5"];satisfied->we[label="1"];satisfied->and[label="1"];satisfied->until[label="1"];can->and[label="1"];can->never[label="3"];never->be[label="3"];victim->of[label="1"];unspeakable->horrors[label="1"];horrors->of[label="1"];police->brutality[label="2"];brutality->you[label="1"];brutality->we[label="1"];bodies->heavy[label="1"];heavy->with[label="1"];fatigue->of[label="1"];travel->cannot[label="1"];gain->lodging[label="1"];lodging->in[label="1"];motels->of[label="1"];highways->and[label="1"];hotels->of[label="1"];cities->we[label="1"];cities->knowing[label="1"];basic->mobility[label="1"];mobility->is[label="1"];smaller->ghetto[label="1"];ghetto->to[label="1"];larger->one[label="1"];stripped->of[label="1"];selfhood->and[label="1"];robbed->of[label="1"];signs->stating[label="1"];stating->for[label="1"];whites->only[label="1"];only->we[label="1"];only->that[label="1"];mississippi->go[label="1"];mississippi->a[label="1"];mississippi->from[label="1"];mississippi->cannot[label="1"];vote->and[label="1"];vote->no[label="1"];york->let[label="1"];york->believes[label="1"];believes->he[label="1"];he->has[label="1"];nothing->for[label="1"];rolls->down[label="1"];like->a[label="1"];like->waters[label="1"];waters->and[label="1"];righteousness->like[label="1"];mighty->stream[label="1"];mighty->mountains[label="1"];stream->i[label="1"];unmindful->that[label="1"];some->of[label="3"];out->the[label="1"];out->of[label="2"];trials->and[label="1"];tribulations->some[label="1"];fresh->from[label="1"];narrow->jail[label="1"];jail->cells[label="1"];jail->together[label="1"];cells->and[label="1"];areas->where[label="1"];where->they[label="1"];where->my[label="1"];where->your[label="1"];your->quest[label="1"];quest->for[label="1"];quest->quest[label="1"];left->you[label="1"];battered->by[label="1"];storms->of[label="1"];persecution->and[label="1"];staggered->by[label="1"];winds->of[label="1"];veterans->of[label="1"];suffering->is[label="1"];suffering->continue[label="1"];work->with[label="1"];work->together[label="1"];faith->we[label="3"];faith->that[label="2"];unearned->suffering[label="1"];redemptive->go[label="1"];alabama->with[label="1"];alabama->go[label="1"];alabama->little[label="1"];south->with[label="1"];south->carolina[label="1"];carolina->go[label="1"];georgia->go[label="1"];georgia->the[label="1"];georgia->let[label="1"];louisiana->go[label="1"];slums->and[label="1"];ghettos->of[label="1"];northern->cities[label="1"];knowing->that[label="2"];somehow->this[label="1"];situation->can[label="1"];changed->let[label="1"];wallow->in[label="1"];despair->i[label="1"];despair->a[label="1"];friends->and[label="1"];even->the[label="1"];even->though[label="1"];though->we[label="1"];face->the[label="1"];difficulties->of[label="1"];tomorrow->i[label="1"];dream->i[label="1"];dream->today[label="2"];dream->it[label="1"];dream->that[label="6"];dream->deeply[label="1"];deeply->rooted[label="1"];rooted->in[label="1"];live->in[label="1"];live->out[label="1"];true->and[label="1"];true->meaning[label="1"];meaning->of[label="1"];meaning->my[label="1"];its->creed[label="1"];its->vicious[label="1"];its->governor[label="1"];creed->we[label="1"];hold->these[label="1"];these->truths[label="1"];truths->to[label="1"];selfevident->that[label="1"];created->equal[label="1"];equal->i[label="1"];red->hills[label="1"];hills->of[label="1"];sons->of[label="2"];former->slaves[label="1"];former->slave[label="1"];slave->owners[label="1"];owners->will[label="1"];able->to[label="8"];sit->down[label="1"];together->to[label="4"];together->this[label="1"];together->knowing[label="1"];together->at[label="1"];at->the[label="1"];at->last[label="3"];table->of[label="1"];state->of[label="1"];state->and[label="1"];state->sweltering[label="1"];heat->of[label="2"];oppression->will[label="1"];transformed->into[label="1"];oasis->of[label="1"];four->little[label="1"];little->black[label="1"];little->white[label="1"];little->children[label="1"];judged->by[label="1"];skin->but[label="1"];character->i[label="1"];vicious->racists[label="1"];racists->with[label="1"];governor->having[label="1"];having->his[label="1"];lips->dripping[label="1"];dripping->with[label="1"];interposition->and[label="1"];nullification->one[label="1"];right->there[label="1"];boys->and[label="2"];girls->will[label="1"];girls->as[label="1"];hands->with[label="1"];hands->and[label="1"];sisters->and[label="1"];exalted->and[label="1"];hill->and[label="2"];mountain->of[label="3"];mountain->shall[label="1"];made->low[label="1"];made->plain[label="1"];made->straight[label="1"];low->the[label="1"];rough->places[label="1"];places->will[label="2"];plain->and[label="1"];crooked->places[label="1"];straight->and[label="1"];glory->of[label="1"];lord->shall[label="1"];revealed->and[label="1"];flesh->shall[label="1"];see->it[label="1"];hew->out[label="1"];stone->of[label="1"];stone->mountain[label="1"];transform->the[label="1"];jangling->discords[label="1"];discords->of[label="1"];beautiful->symphony[label="1"];symphony->of[label="1"];pray->together[label="1"];sing->with[label="1"];sing->in[label="1"];sing->land[label="1"];country->tis[label="1"];tis->of[label="1"];thee->i[label="1"];thee->sweet[label="1"];sweet->land[label="1"];fathers->died[label="1"];died->land[label="1"];pilgrims->pride[label="1"];pride->from[label="1"];mountainside->let[label="2"];ring->and[label="2"];ring->when[label="1"];ring->from[label="9"];become->true[label="1"];prodigious->hilltops[label="1"];hilltops->of[label="1"];hampshire->let[label="1"];mountains->of[label="1"];heightening->alleghenies[label="1"];alleghenies->of[label="1"];pennsylvania->let[label="1"];snowcapped->rockies[label="1"];rockies->of[label="1"];colorado->let[label="1"];curvaceous->slopes[label="1"];slopes->of[label="1"];california->but[label="1"];lookout->mountain[label="1"];tennessee->let[label="1"];molehill->of[label="1"];happens->when[label="1"];village->and[label="1"];hamlet->from[label="1"];city->we[label="1"];speed->up[label="1"];jews->and[label="1"];gentiles->protestants[label="1"];protestants->and[label="1"];catholics->will[label="1"];old->negro[label="1"];spiritual->free[label="1"];last->free[label="1"];last->thank[label="1"];thank->god[label="1"];god->almighty[label="1"];almighty->we[label="1"];}
diff --git a/Graph/test/tmpDir/dorrr8914343038413695158.dot b/Graph/test/tmpDir/dorrr8914343038413695158.dot
new file mode 100644
index 0000000..4ec9c2f
--- /dev/null
+++ b/Graph/test/tmpDir/dorrr8914343038413695158.dot
@@ -0,0 +1,2 @@
+digraph G {
+i->am[label="2", color="red"];i->go[label="1"];i->still[label="1"];i->have[label="8"];i->must[label="1"];i->say[label="1"];i->sing[label="1"];am->happy[label="1"];am->not[label="1"];happy->to[label="1"];to->join[label="3"];to->you[label="1"];to->go[label="1"];to->the[label="5"];to->our[label="2"];to->a[label="2"];to->stand[label="1"];to->this[label="1"];to->millions[label="1"];to->end[label="1"];to->dramatize[label="1"];to->cash[label="2"];to->which[label="1"];to->fall[label="1"];to->be[label="2"];to->believe[label="2"];to->remind[label="1"];to->engage[label="1"];to->take[label="1"];to->make[label="2"];to->rise[label="1"];to->lift[label="1"];to->overlook[label="1"];to->blow[label="1"];to->business[label="1"];to->shake[label="1"];to->my[label="1"];to->satisfy[label="1"];to->struggle[label="1"];to->degenerate[label="1"];to->realize[label="2"];to->mississippi[label="1"];to->vote[label="1"];to->jail[label="1"];to->work[label="2"];to->alabama[label="1"];to->south[label="1"];to->georgia[label="1"];to->louisiana[label="1"];to->sit[label="1"];to->hew[label="1"];to->transform[label="1"];to->pray[label="1"];to->sing[label="1"];to->speed[label="1"];join->with[label="1"];join->hands[label="2"];with->with[label="1"];with->you[label="1"];with->the[label="5"];with->our[label="1"];with->this[label="3"];with->soul[label="1"];with->new[label="1"];with->its[label="2"];with->little[label="1"];you->today[label="2"];you->be[label="1"];you->have[label="4"];you->battered[label="1"];today->i[label="2"];today->to[label="1"];today->in[label="1"];today->signed[label="1"];today->and[label="1"];today->that[label="1"];today->have[label="1"];today->my[label="1"];in->what[label="1"];in->history[label="1"];in->the[label="11"];in->a[label="2"];in->whose[label="1"];in->his[label="1"];in->america[label="1"];in->new[label="1"];in->mississippi[label="1"];in->alabama[label="2"];what->will[label="1"];will->you[label="1"];will->go[label="1"];will->one[label="1"];will->not[label="3"];will->be[label="16"];will->give[label="1"];will->have[label="1"];will->now[label="1"];will->rise[label="1"];will->continue[label="1"];go->to[label="1"];go->down[label="1"];go->back[label="7"];down->in[label="2"];down->like[label="1"];down->together[label="1"];history->as[label="1"];history->of[label="1"];as->the[label="3"];as->our[label="2"];as->a[label="3"];as->we[label="1"];as->long[label="5"];as->well[label="1"];as->white[label="1"];as->her[label="1"];as->usual[label="1"];as->evidenced[label="1"];as->sisters[label="1"];the->history[label="1"];the->greatest[label="1"];the->nation[label="2"];the->great[label="1"];the->american[label="1"];the->emancipation[label="1"];the->negro[label="9"];the->flames[label="1"];the->long[label="1"];the->life[label="1"];the->manacles[label="1"];the->chains[label="1"];the->midst[label="1"];the->corners[label="1"];the->architects[label="1"];the->magnificent[label="1"];the->words[label="2"];the->constitution[label="1"];the->declaration[label="1"];the->unalienable[label="1"];the->pursuit[label="1"];the->color[label="1"];the->bank[label="1"];the->riches[label="1"];the->security[label="1"];the->fierce[label="1"];the->urgency[label="1"];the->time[label="4"];the->luxury[label="1"];the->tranquilizing[label="1"];the->promises[label="1"];the->dark[label="1"];the->valley[label="1"];the->sunlit[label="1"];the->quicksands[label="1"];the->solid[label="1"];the->moment[label="1"];the->negros[label="2"];the->content[label="1"];the->whirlwinds[label="1"];the->foundations[label="1"];the->bright[label="1"];the->day[label="2"];the->warm[label="1"];the->palace[label="1"];the->process[label="1"];the->cup[label="1"];the->high[label="1"];the->majestic[label="1"];the->marvelous[label="1"];the->pledge[label="1"];the->devotees[label="1"];the->victim[label="1"];the->unspeakable[label="1"];the->fatigue[label="1"];the->motels[label="1"];the->highways[label="1"];the->hotels[label="1"];the->cities[label="1"];the->mighty[label="1"];the->storms[label="1"];the->winds[label="1"];the->veterans[label="1"];the->faith[label="2"];the->south[label="1"];the->slums[label="1"];the->difficulties[label="1"];the->true[label="1"];the->red[label="1"];the->sons[label="2"];the->table[label="1"];the->state[label="1"];the->heat[label="2"];the->mountain[label="1"];the->rough[label="1"];the->crooked[label="1"];the->glory[label="1"];the->lord[label="1"];the->jangling[label="1"];the->pilgrims[label="1"];the->prodigious[label="1"];the->heightening[label="1"];the->snowcapped[label="1"];the->curvaceous[label="1"];the->old[label="1"];greatest->demonstration[label="1"];demonstration->for[label="1"];for->the[label="1"];for->freedom[label="4"];for->which[label="1"];for->all[label="1"];for->many[label="1"];for->whites[label="1"];freedom->in[label="1"];freedom->we[label="1"];freedom->is[label="1"];freedom->by[label="1"];freedom->and[label="3"];freedom->left[label="1"];freedom->together[label="1"];freedom->ring[label="11"];of->you[label="3"];of->today[label="1"];of->the[label="12"];of->freedom[label="3"];of->our[label="6"];of->a[label="1"];of->great[label="1"];of->american[label="1"];of->this[label="1"];of->hope[label="2"];of->negro[label="1"];of->withering[label="1"];of->injustice[label="1"];of->their[label="5"];of->life[label="1"];of->segregation[label="2"];of->discrimination[label="1"];of->poverty[label="1"];of->material[label="1"];of->independence[label="1"];of->all[label="1"];of->liberty[label="1"];of->happiness[label="1"];of->color[label="1"];of->honoring[label="1"];of->justice[label="4"];of->opportunity[label="1"];of->now[label="1"];of->cooling[label="1"];of->gradualism[label="1"];of->democracy[label="1"];of->racial[label="2"];of->brotherhood[label="3"];of->gods[label="3"];of->revolt[label="1"];of->gaining[label="1"];of->wrongful[label="1"];of->bitterness[label="1"];of->dignity[label="1"];of->creative[label="1"];of->meeting[label="1"];of->new[label="2"];of->civil[label="1"];of->police[label="2"];of->travel[label="1"];of->mississippi[label="2"];of->persecution[label="1"];of->georgia[label="2"];of->despair[label="2"];of->its[label="1"];of->former[label="2"];of->oppression[label="1"];of->interposition[label="1"];of->thee[label="2"];of->pennsylvania[label="1"];of->colorado[label="1"];of->california[label="1"];of->tennessee[label="1"];our->freedom[label="1"];our->nation[label="4"];our->hope[label="1"];our->nations[label="1"];our->republic[label="1"];our->white[label="1"];our->children[label="1"];our->rightful[label="1"];our->thirst[label="1"];our->struggle[label="1"];our->creative[label="1"];our->destiny[label="1"];our->bodies[label="1"];our->northern[label="1"];nation->to[label="1"];nation->will[label="1"];nation->five[label="1"];nation->this[label="1"];nation->and[label="1"];nation->from[label="1"];nation->until[label="1"];nation->returns[label="1"];nation->into[label="1"];nation->where[label="1"];five->score[label="1"];score->years[label="1"];years->ago[label="1"];years->later[label="4"];ago->a[label="1"];a->nation[label="1"];a->great[label="3"];a->negro[label="2"];a->joyous[label="1"];a->lonely[label="1"];a->vast[label="1"];a->shameful[label="1"];a->sense[label="1"];a->check[label="3"];a->promissory[label="1"];a->promise[label="1"];a->bad[label="1"];a->reality[label="1"];a->beginning[label="1"];a->rude[label="1"];a->distrust[label="1"];a->smaller[label="1"];a->larger[label="1"];a->mighty[label="1"];a->dream[label="10"];a->state[label="1"];a->stone[label="1"];a->beautiful[label="1"];great->nation[label="1"];great->american[label="1"];great->beacon[label="1"];great->vaults[label="1"];great->trials[label="1"];american->in[label="1"];american->society[label="1"];american->was[label="1"];american->dream[label="1"];whose->symbolic[label="1"];symbolic->shadow[label="1"];shadow->we[label="1"];we->will[label="6"];we->stand[label="1"];we->are[label="2"];we->refuse[label="2"];we->have[label="1"];we->must[label="5"];we->let[label="1"];we->allow[label="1"];we->cannot[label="4"];we->walk[label="1"];we->shall[label="1"];we->can[label="3"];we->face[label="1"];we->hold[label="1"];stand->today[label="1"];stand->on[label="1"];stand->up[label="1"];signed->the[label="1"];emancipation->proclamation[label="1"];proclamation->this[label="1"];this->will[label="2"];this->nation[label="2"];this->momentous[label="1"];this->is[label="3"];this->check[label="1"];this->promissory[label="1"];this->note[label="1"];this->sacred[label="1"];this->hallowed[label="1"];this->sweltering[label="1"];this->must[label="1"];this->faith[label="3"];this->situation[label="1"];this->happens[label="1"];momentous->decree[label="1"];decree->came[label="1"];came->as[label="2"];beacon->light[label="1"];light->of[label="1"];hope->to[label="1"];hope->with[label="1"];hope->and[label="1"];hope->that[label="1"];millions->of[label="1"];negro->in[label="2"];negro->slaves[label="1"];negro->still[label="1"];negro->is[label="4"];negro->lives[label="1"];negro->people[label="1"];negro->needed[label="1"];negro->community[label="1"];negro->spiritual[label="1"];slaves->who[label="1"];slaves->and[label="1"];who->stand[label="1"];who->hope[label="1"];who->had[label="1"];who->are[label="1"];had->been[label="1"];been->the[label="1"];been->seared[label="1"];seared->in[label="1"];flames->of[label="1"];withering->injustice[label="1"];injustice->to[label="1"];injustice->it[label="1"];injustice->sweltering[label="1"];it->came[label="1"];it->is[label="2"];it->would[label="1"];it->together[label="1"];it->ring[label="1"];joyous->daybreak[label="1"];daybreak->to[label="1"];end->the[label="1"];end->but[label="1"];long->as[label="5"];long->night[label="1"];night->of[label="1"];their->freedom[label="1"];their->captivity[label="1"];their->dignity[label="1"];their->presence[label="1"];their->destiny[label="1"];their->selfhood[label="1"];their->skin[label="1"];their->character[label="1"];captivity->but[label="1"];but->a[label="1"];but->we[label="1"];but->one[label="1"];but->not[label="1"];but->by[label="1"];but->there[label="1"];one->we[label="1"];one->hundred[label="4"];one->day[label="8"];hundred->years[label="4"];later->the[label="4"];still->is[label="1"];still->sadly[label="1"];still->languished[label="1"];still->have[label="1"];is->to[label="1"];is->the[label="6"];is->our[label="1"];is->a[label="1"];is->still[label="2"];is->not[label="2"];is->an[label="1"];is->obvious[label="1"];is->bankrupt[label="1"];is->no[label="1"];is->from[label="1"];is->granted[label="1"];is->something[label="1"];is->tied[label="1"];is->inextricably[label="1"];is->redemptive[label="1"];not->free[label="1"];not->an[label="1"];not->be[label="3"];not->pass[label="1"];not->seek[label="1"];not->allow[label="1"];not->lead[label="1"];not->satisfied[label="1"];not->only[label="1"];not->unmindful[label="1"];not->wallow[label="1"];free->one[label="2"];free->at[label="3"];life->of[label="1"];life->liberty[label="1"];sadly->crippled[label="1"];crippled->by[label="1"];by->the[label="5"];by->their[label="1"];by->drinking[label="1"];by->signs[label="1"];manacles->of[label="1"];segregation->to[label="1"];segregation->and[label="1"];and->will[label="2"];and->as[label="1"];and->the[label="8"];and->a[label="1"];and->we[label="1"];and->this[label="2"];and->finds[label="1"];and->so[label="4"];and->when[label="1"];and->they[label="1"];and->every[label="3"];and->all[label="1"];and->black[label="1"];and->white[label="2"];and->justice[label="1"];and->there[label="1"];and->desolate[label="1"];and->equality[label="1"];and->those[label="1"];and->if[label="1"];and->hatred[label="1"];and->discipline[label="1"];and->again[label="1"];and->brothers[label="1"];and->robbed[label="1"];and->righteousness[label="1"];and->some[label="1"];and->tribulations[label="1"];and->staggered[label="1"];and->ghettos[label="1"];and->tomorrow[label="1"];and->live[label="1"];and->nullification[label="1"];and->mountain[label="1"];and->sing[label="1"];and->molehill[label="1"];and->gentiles[label="1"];and->catholics[label="1"];chains->of[label="1"];discrimination->one[label="1"];lives->on[label="1"];on->the[label="3"];on->a[label="1"];on->this[label="1"];lonely->island[label="1"];island->of[label="1"];poverty->in[label="1"];midst->of[label="1"];vast->ocean[label="1"];ocean->of[label="1"];material->prosperity[label="1"];prosperity->one[label="1"];languished->in[label="1"];corners->of[label="1"];society->and[label="1"];finds->himself[label="1"];himself->an[label="1"];an->end[label="1"];an->exile[label="1"];an->invigorating[label="1"];an->oasis[label="1"];exile->in[label="1"];his->own[label="1"];his->citizenship[label="1"];his->lips[label="1"];own->land[label="1"];land->of[label="2"];land->and[label="1"];land->where[label="1"];so->weve[label="2"];so->let[label="1"];so->even[label="1"];weve->come[label="3"];come->to[label="5"];come->here[label="2"];come->back[label="1"];come->from[label="1"];come->fresh[label="1"];here->today[label="2"];here->out[label="1"];dramatize->a[label="1"];shameful->condition[label="1"];condition->in[label="1"];sense->weve[label="1"];nations->capital[label="1"];capital->to[label="1"];cash->a[label="1"];cash->this[label="1"];check->a[label="2"];check->when[label="1"];check->which[label="1"];check->that[label="1"];when->will[label="1"];when->the[label="1"];when->we[label="2"];when->this[label="1"];when->all[label="2"];architects->of[label="1"];republic->wrote[label="1"];wrote->the[label="1"];magnificent->words[label="1"];words->of[label="3"];constitution->and[label="1"];declaration->of[label="1"];independence->they[label="1"];they->will[label="1"];they->were[label="1"];they->have[label="1"];were->signing[label="1"];signing->a[label="1"];promissory->note[label="2"];note->to[label="1"];note->was[label="1"];note->insofar[label="1"];which->to[label="1"];which->every[label="1"];which->has[label="2"];which->leads[label="1"];every->american[label="1"];every->valley[label="1"];every->state[label="1"];every->hill[label="2"];every->mountainside[label="2"];every->village[label="1"];every->hamlet[label="1"];every->city[label="1"];was->to[label="1"];was->a[label="1"];fall->heir[label="1"];heir->this[label="1"];promise->that[label="1"];that->i[label="2"];that->will[label="1"];that->the[label="2"];that->we[label="2"];that->their[label="2"];that->one[label="5"];that->all[label="2"];that->america[label="1"];that->there[label="1"];that->day[label="1"];that->my[label="1"];that->let[label="1"];that->some[label="1"];that->unearned[label="1"];that->somehow[label="1"];all->of[label="3"];all->men[label="2"];all->white[label="1"];all->flesh[label="1"];men->as[label="1"];men->and[label="1"];men->yes[label="1"];men->would[label="1"];men->are[label="1"];men->jews[label="1"];yes->black[label="1"];black->men[label="2"];black->boys[label="1"];black->girls[label="1"];well->as[label="1"];white->men[label="2"];white->people[label="1"];white->brothers[label="1"];white->boys[label="1"];white->girls[label="1"];would->be[label="2"];be->the[label="2"];be->a[label="1"];be->free[label="1"];be->guaranteed[label="1"];be->fatal[label="1"];be->content[label="1"];be->neither[label="1"];be->guilty[label="1"];be->satisfied[label="7"];be->changed[label="1"];be->selfevident[label="1"];be->able[label="8"];be->transformed[label="1"];be->judged[label="1"];be->exalted[label="1"];be->made[label="3"];be->revealed[label="1"];guaranteed->the[label="1"];unalienable->rights[label="1"];rights->the[label="1"];rights->of[label="1"];rights->when[label="1"];liberty->of[label="1"];liberty->and[label="1"];pursuit->of[label="1"];happiness->it[label="1"];obvious->today[label="1"];america->of[label="1"];america->is[label="1"];america->has[label="2"];america->until[label="1"];has->come[label="1"];has->defaulted[label="1"];has->given[label="1"];has->engulfed[label="1"];has->nothing[label="1"];defaulted->on[label="1"];insofar->as[label="1"];her->citizens[label="1"];citizens->of[label="1"];color->of[label="1"];color->are[label="1"];are->not[label="1"];are->free[label="1"];are->concerned[label="1"];are->insufficient[label="1"];are->those[label="1"];are->asking[label="1"];are->stripped[label="1"];are->created[label="1"];concerned->instead[label="1"];instead->of[label="1"];honoring->this[label="1"];sacred->obligation[label="1"];obligation->america[label="1"];given->the[label="1"];people->for[label="1"];people->a[label="1"];people->who[label="1"];bad->check[label="1"];back->to[label="7"];back->marked[label="1"];back->there[label="1"];marked->insufficient[label="1"];insufficient->funds[label="2"];funds->in[label="1"];funds->but[label="1"];refuse->to[label="2"];believe->that[label="2"];bank->of[label="1"];justice->i[label="1"];justice->in[label="1"];justice->a[label="1"];justice->we[label="1"];justice->is[label="1"];justice->now[label="1"];justice->emerges[label="1"];justice->rolls[label="1"];bankrupt->we[label="1"];there->in[label="1"];there->will[label="1"];there->is[label="2"];there->are[label="2"];vaults->of[label="1"];opportunity->of[label="1"];give->us[label="1"];us->to[label="1"];us->not[label="2"];us->upon[label="1"];upon->demand[label="1"];demand->the[label="1"];riches->of[label="1"];security->of[label="1"];have->a[label="10"];have->been[label="1"];have->come[label="5"];have->also[label="1"];also->come[label="1"];hallowed->spot[label="1"];spot->to[label="1"];remind->america[label="1"];fierce->urgency[label="1"];urgency->of[label="2"];now->this[label="1"];now->is[label="4"];now->be[label="1"];no->we[label="1"];no->no[label="1"];no->time[label="1"];time->to[label="5"];engage->in[label="1"];luxury->of[label="1"];cooling->off[label="1"];off->or[label="1"];off->steam[label="1"];or->to[label="1"];take->the[label="1"];tranquilizing->drug[label="1"];drug->of[label="1"];gradualism->now[label="1"];make->the[label="1"];make->justice[label="1"];make->real[label="1"];real->the[label="1"];promises->of[label="1"];democracy->now[label="1"];rise->to[label="1"];rise->from[label="1"];rise->up[label="1"];from->the[label="8"];from->a[label="1"];from->every[label="5"];from->narrow[label="1"];from->areas[label="1"];from->stone[label="1"];from->lookout[label="1"];dark->and[label="1"];desolate->valley[label="1"];valley->of[label="2"];valley->shall[label="1"];sunlit->path[label="1"];path->of[label="1"];racial->injustice[label="1"];racial->justice[label="1"];lift->our[label="1"];quicksands->of[label="1"];solid->rock[label="1"];rock->of[label="1"];brotherhood->i[label="1"];brotherhood->with[label="1"];brotherhood->now[label="1"];reality->for[label="1"];gods->children[label="3"];children->will[label="2"];children->it[label="1"];children->black[label="1"];children->are[label="1"];fatal->for[label="1"];overlook->the[label="1"];moment->this[label="1"];sweltering->with[label="2"];sweltering->summer[label="1"];summer->of[label="1"];negros->legitimate[label="1"];negros->basic[label="1"];legitimate->discontent[label="1"];discontent->will[label="1"];pass->until[label="1"];until->the[label="2"];until->justice[label="1"];until->there[label="1"];invigorating->autumn[label="1"];autumn->of[label="1"];equality->nineteen[label="1"];nineteen->sixtythree[label="1"];sixtythree->is[label="1"];beginning->and[label="1"];those->who[label="2"];needed->to[label="1"];blow->off[label="1"];steam->and[label="1"];content->will[label="1"];content->of[label="1"];rude->awakening[label="1"];awakening->if[label="1"];if->the[label="1"];if->america[label="1"];returns->to[label="1"];business->as[label="1"];usual->and[label="1"];neither->rest[label="1"];rest->nor[label="1"];nor->tranquility[label="1"];tranquility->in[label="1"];granted->his[label="1"];citizenship->rights[label="1"];whirlwinds->of[label="1"];revolt->will[label="1"];continue->to[label="2"];shake->the[label="1"];foundations->of[label="1"];bright->day[label="1"];day->down[label="1"];day->of[label="1"];day->this[label="2"];day->and[label="1"];day->on[label="1"];day->when[label="2"];day->every[label="1"];day->even[label="1"];day->live[label="1"];day->right[label="1"];emerges->but[label="1"];something->that[label="1"];must->not[label="3"];must->make[label="1"];must->rise[label="1"];must->say[label="1"];must->forever[label="1"];must->become[label="1"];say->to[label="2"];my->people[label="1"];my->friends[label="1"];my->four[label="1"];my->country[label="1"];my->fathers[label="1"];warm->threshold[label="1"];threshold->which[label="1"];leads->into[label="1"];into->the[label="1"];into->a[label="1"];into->an[label="1"];into->physical[label="1"];palace->of[label="1"];process->of[label="1"];gaining->our[label="1"];rightful->place[label="1"];place->we[label="1"];guilty->of[label="1"];wrongful->deeds[label="1"];deeds->let[label="1"];let->freedom[label="10"];let->it[label="1"];let->us[label="2"];seek->to[label="1"];satisfy->our[label="1"];thirst->for[label="1"];drinking->from[label="1"];cup->of[label="1"];bitterness->and[label="1"];hatred->we[label="1"];forever->conduct[label="1"];conduct->our[label="1"];struggle->on[label="1"];struggle->together[label="1"];high->plane[label="1"];plane->of[label="1"];dignity->by[label="1"];dignity->and[label="1"];discipline->we[label="1"];allow->freedom[label="1"];allow->our[label="1"];creative->protest[label="1"];creative->suffering[label="1"];protest->to[label="1"];degenerate->into[label="1"];physical->violence[label="1"];physical->force[label="1"];violence->again[label="1"];again->we[label="1"];again->and[label="1"];majestic->heights[label="1"];heights->of[label="1"];meeting->physical[label="1"];force->with[label="1"];force->the[label="1"];soul->force[label="1"];marvelous->new[label="1"];new->militancy[label="1"];new->york[label="2"];new->meaning[label="1"];new->hampshire[label="1"];militancy->which[label="1"];engulfed->the[label="1"];community->must[label="1"];lead->us[label="1"];distrust->of[label="1"];many->of[label="1"];brothers->i[label="1"];brothers->as[label="1"];evidenced->by[label="1"];presence->here[label="1"];realize->that[label="2"];destiny->is[label="1"];destiny->and[label="1"];tied->up[label="1"];up->with[label="1"];up->for[label="1"];up->and[label="1"];up->that[label="1"];inextricably->bound[label="1"];bound->to[label="1"];cannot->be[label="2"];cannot->walk[label="1"];cannot->turn[label="1"];cannot->gain[label="1"];cannot->vote[label="1"];walk->we[label="1"];walk->alone[label="1"];alone->and[label="1"];pledge->that[label="1"];shall->be[label="3"];shall->always[label="1"];shall->see[label="1"];always->march[label="1"];march->ahead[label="1"];ahead->we[label="1"];turn->back[label="1"];asking->the[label="1"];devotees->of[label="1"];civil->rights[label="1"];satisfied->as[label="5"];satisfied->we[label="1"];satisfied->and[label="1"];satisfied->until[label="1"];can->and[label="1"];can->never[label="3"];never->be[label="3"];victim->of[label="1"];unspeakable->horrors[label="1"];horrors->of[label="1"];police->brutality[label="2"];brutality->you[label="1"];brutality->we[label="1"];bodies->heavy[label="1"];heavy->with[label="1"];fatigue->of[label="1"];travel->cannot[label="1"];gain->lodging[label="1"];lodging->in[label="1"];motels->of[label="1"];highways->and[label="1"];hotels->of[label="1"];cities->we[label="1"];cities->knowing[label="1"];basic->mobility[label="1"];mobility->is[label="1"];smaller->ghetto[label="1"];ghetto->to[label="1"];larger->one[label="1"];stripped->of[label="1"];selfhood->and[label="1"];robbed->of[label="1"];signs->stating[label="1"];stating->for[label="1"];whites->only[label="1"];only->we[label="1"];only->that[label="1"];mississippi->go[label="1"];mississippi->a[label="1"];mississippi->from[label="1"];mississippi->cannot[label="1"];vote->and[label="1"];vote->no[label="1"];york->let[label="1"];york->believes[label="1"];believes->he[label="1"];he->has[label="1"];nothing->for[label="1"];rolls->down[label="1"];like->a[label="1"];like->waters[label="1"];waters->and[label="1"];righteousness->like[label="1"];mighty->stream[label="1"];mighty->mountains[label="1"];stream->i[label="1"];unmindful->that[label="1"];some->of[label="3"];out->the[label="1"];out->of[label="2"];trials->and[label="1"];tribulations->some[label="1"];fresh->from[label="1"];narrow->jail[label="1"];jail->cells[label="1"];jail->together[label="1"];cells->and[label="1"];areas->where[label="1"];where->they[label="1"];where->my[label="1"];where->your[label="1"];your->quest[label="1"];quest->for[label="1"];quest->quest[label="1"];left->you[label="1"];battered->by[label="1"];storms->of[label="1"];persecution->and[label="1"];staggered->by[label="1"];winds->of[label="1"];veterans->of[label="1"];suffering->is[label="1"];suffering->continue[label="1"];work->with[label="1"];work->together[label="1"];faith->we[label="3"];faith->that[label="2"];unearned->suffering[label="1"];redemptive->go[label="1"];alabama->with[label="1"];alabama->go[label="1"];alabama->little[label="1"];south->with[label="1"];south->carolina[label="1"];carolina->go[label="1"];georgia->go[label="1"];georgia->the[label="1"];georgia->let[label="1"];louisiana->go[label="1"];slums->and[label="1"];ghettos->of[label="1"];northern->cities[label="1"];knowing->that[label="2"];somehow->this[label="1"];situation->can[label="1"];changed->let[label="1"];wallow->in[label="1"];despair->i[label="1"];despair->a[label="1"];friends->and[label="1"];even->the[label="1"];even->though[label="1"];though->we[label="1"];face->the[label="1"];difficulties->of[label="1"];tomorrow->i[label="1"];dream->i[label="1"];dream->today[label="2"];dream->it[label="1"];dream->that[label="6"];dream->deeply[label="1"];deeply->rooted[label="1"];rooted->in[label="1"];live->in[label="1"];live->out[label="1"];true->and[label="1"];true->meaning[label="1"];meaning->of[label="1"];meaning->my[label="1"];its->creed[label="1"];its->vicious[label="1"];its->governor[label="1"];creed->we[label="1"];hold->these[label="1"];these->truths[label="1"];truths->to[label="1"];selfevident->that[label="1"];created->equal[label="1"];equal->i[label="1"];red->hills[label="1"];hills->of[label="1"];sons->of[label="2"];former->slaves[label="1"];former->slave[label="1"];slave->owners[label="1"];owners->will[label="1"];able->to[label="8"];sit->down[label="1"];together->to[label="4"];together->this[label="1"];together->knowing[label="1"];together->at[label="1"];at->the[label="1"];at->last[label="3"];table->of[label="1"];state->of[label="1"];state->and[label="1"];state->sweltering[label="1"];heat->of[label="2"];oppression->will[label="1"];transformed->into[label="1"];oasis->of[label="1"];four->little[label="1"];little->black[label="1"];little->white[label="1"];little->children[label="1"];judged->by[label="1"];skin->but[label="1"];character->i[label="1"];vicious->racists[label="1"];racists->with[label="1"];governor->having[label="1"];having->his[label="1"];lips->dripping[label="1"];dripping->with[label="1"];interposition->and[label="1"];nullification->one[label="1"];right->there[label="1"];boys->and[label="2"];girls->will[label="1"];girls->as[label="1"];hands->with[label="1"];hands->and[label="1"];sisters->and[label="1"];exalted->and[label="1"];hill->and[label="2"];mountain->of[label="3"];mountain->shall[label="1"];made->low[label="1"];made->plain[label="1"];made->straight[label="1"];low->the[label="1"];rough->places[label="1"];places->will[label="2"];plain->and[label="1"];crooked->places[label="1"];straight->and[label="1"];glory->of[label="1"];lord->shall[label="1"];revealed->and[label="1"];flesh->shall[label="1"];see->it[label="1"];hew->out[label="1"];stone->of[label="1"];stone->mountain[label="1"];transform->the[label="1"];jangling->discords[label="1"];discords->of[label="1"];beautiful->symphony[label="1"];symphony->of[label="1"];pray->together[label="1"];sing->with[label="1"];sing->in[label="1"];sing->land[label="1"];country->tis[label="1"];tis->of[label="1"];thee->i[label="1"];thee->sweet[label="1"];sweet->land[label="1"];fathers->died[label="1"];died->land[label="1"];pilgrims->pride[label="1"];pride->from[label="1"];mountainside->let[label="2"];ring->and[label="2"];ring->when[label="1"];ring->from[label="9"];become->true[label="1"];prodigious->hilltops[label="1"];hilltops->of[label="1"];hampshire->let[label="1"];mountains->of[label="1"];heightening->alleghenies[label="1"];alleghenies->of[label="1"];pennsylvania->let[label="1"];snowcapped->rockies[label="1"];rockies->of[label="1"];colorado->let[label="1"];curvaceous->slopes[label="1"];slopes->of[label="1"];california->but[label="1"];lookout->mountain[label="1"];tennessee->let[label="1"];molehill->of[label="1"];happens->when[label="1"];village->and[label="1"];hamlet->from[label="1"];city->we[label="1"];speed->up[label="1"];jews->and[label="1"];gentiles->protestants[label="1"];protestants->and[label="1"];catholics->will[label="1"];old->negro[label="1"];spiritual->free[label="1"];last->free[label="1"];last->thank[label="1"];thank->god[label="1"];god->almighty[label="1"];almighty->we[label="1"];}
diff --git a/Graph/test/tmpDir/graph_1561546662814778645.jpg b/Graph/test/tmpDir/graph_1561546662814778645.jpg
new file mode 100644
index 0000000..e69de29
diff --git a/Graph/test/tmpDir/graph_1901125704599474269.jpg b/Graph/test/tmpDir/graph_1901125704599474269.jpg
new file mode 100644
index 0000000..e69de29
diff --git a/Graph/test/tmpDir/graph_1933645903269778827.jpg b/Graph/test/tmpDir/graph_1933645903269778827.jpg
new file mode 100644
index 0000000..e69de29
diff --git a/Graph/test/tmpDir/graph_4437419573072002116.jpg b/Graph/test/tmpDir/graph_4437419573072002116.jpg
new file mode 100644
index 0000000..e69de29
diff --git a/Graph/test/tmpDir/graph_4785791887368878196.jpg b/Graph/test/tmpDir/graph_4785791887368878196.jpg
new file mode 100644
index 0000000..e69de29
diff --git a/Graph/test/tmpDir/graph_5549481313240622575.jpg b/Graph/test/tmpDir/graph_5549481313240622575.jpg
new file mode 100644
index 0000000..e69de29
diff --git a/Graph/test/tmpDir/graph_5835379056225466687.jpg b/Graph/test/tmpDir/graph_5835379056225466687.jpg
new file mode 100644
index 0000000..e69de29
diff --git a/Graph/test/tmpDir/graph_7292006027189097175.jpg b/Graph/test/tmpDir/graph_7292006027189097175.jpg
new file mode 100644
index 0000000..e69de29
diff --git a/Graph/test/tmpDir/graph_8667365624584085442.jpg b/Graph/test/tmpDir/graph_8667365624584085442.jpg
new file mode 100644
index 0000000..e69de29
+ * GraphViz gv = new GraphViz();
+ * gv.addln(gv.start_graph());
+ * gv.addln("A -> B;");
+ * gv.addln("A -> C;");
+ * gv.addln(gv.end_graph());
+ * System.out.println(gv.getDotSource());
+ *
+ * String type = "gif";
+ * File out = new File("out." + type); // out.gif in this example
+ * gv.writeGraphToFile(gv.getGraph(gv.getDotSource(), type), out);
+ *
+ *
+ *