Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mattalhonte/dcdb1ca54695878b6c7c to your computer and use it in GitHub Desktop.
Save mattalhonte/dcdb1ca54695878b6c7c to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"metadata": {
"name": "",
"signature": "sha256:c91f72036007f4264f499d7b85c6e4cf552f7ec98382d59969d4ad65c71b8248"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "code",
"collapsed": false,
"input": [
"import pandas as pd\n",
"import nltk\n",
"from nltk.util import ngrams\n",
"nltk.download('punkt')\n",
"nltk.download('stopwords')\n",
"\n",
"#Importing the dataset\n",
"%cd C:\\Users\\Matt\\Dropbox\\Python Workspace\\CROW\\CROL-PDF\n",
"data = pd.read_csv(\"procPublicationRequest_Oct-Dec_2014_clean - procPublicationRequest_Oct-Dec_2014_clean.csv\")\n",
"\n",
"#Snagging the \"human_readable\" column\n",
"human_readableList = list(data['human_readable'])\n",
"\n",
"#Turn the values into strings\n",
"strReadable = [str(a) for a in human_readableList]\n",
"\n",
"#Split into individual words\n",
"listOfLists = [a.split() for a in strReadable]"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"[nltk_data] Downloading package punkt to\n",
"[nltk_data] C:\\Users\\Matt\\AppData\\Roaming\\nltk_data...\n",
"[nltk_data] Package punkt is already up-to-date!"
]
},
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"[nltk_data] Downloading package stopwords to\n",
"[nltk_data] C:\\Users\\Matt\\AppData\\Roaming\\nltk_data...\n",
"[nltk_data] Package stopwords is already up-to-date!\n",
"C:\\Users\\Matt\\Dropbox\\Python Workspace\\CROW\\CROL-PDF\n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#While we're here, let's output the raw words to a text file\n",
"myCorpus = ''\n",
"for myEntry in strReadable:\n",
" myCorpus = myCorpus + \"\\n\"+ myEntry"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 2
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"f = open('rawCorpus', 'w')\n",
"f.write(myCorpus)\n",
"f.close()"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 3
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Now we have a data file that'll probably a little faster to mess with (maybe?)\n",
"file = open('rawCorpus.txt')\n",
"t = file.read()"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 4
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Let's tokenize it and turn into an NLTK Text file\n",
"myCorpusTokenized = nltk.word_tokenize(t)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 5
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"corpusText = nltk.Text(myCorpusTokenized)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 6
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Now that we've got a bigger body of text, we can look at more interesting patterns in phrasing\n",
"corpusText.collocations()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"New York; substantially similar; similar titles; titles within; HEREBY\n",
"GIVEN; within agency; York City; sidewalk caf; 10:00 A.M.; proposed\n",
"contract; Annual Contracting; Contracting Plan; agency intends; 2015\n",
"Annual; public hearing; square foot; unenclosed sidewalk; COMMUNITY\n",
"BOARD; four years; End date\n"
]
}
],
"prompt_number": 7
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"corpusFreqDist = nltk.FreqDist(corpusText)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 14
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Most commom words!\n",
"list(corpusFreqDist.most_common())"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 13,
"text": [
"[(',', 8033),\n",
" ('the', 4860),\n",
" ('of', 4570),\n",
" ('.', 2727),\n",
" ('and', 2338),\n",
" ('to', 2179),\n",
" (')', 1806),\n",
" ('(', 1747),\n",
" (':', 1714),\n",
" ('in', 1520),\n",
" ('a', 1259),\n",
" ('at', 1207),\n",
" ('for', 1125),\n",
" ('New', 1107),\n",
" ('York', 988),\n",
" ('Street', 910),\n",
" ('on', 875),\n",
" ('be', 674),\n",
" ('City', 665),\n",
" ('The', 641),\n",
" ('proposed', 561),\n",
" ('by', 519),\n",
" ('an', 513),\n",
" ('is', 501),\n",
" ('contract', 498),\n",
" ('Manhattan', 470),\n",
" ('will', 461),\n",
" ('agency', 397),\n",
" ('that', 396),\n",
" ('$', 382),\n",
" ('2014', 379),\n",
" ('from', 369),\n",
" ('Borough', 363),\n",
" ('Floor', 360),\n",
" ('within', 354),\n",
" ('Avenue', 332),\n",
" ('NY', 329),\n",
" ('date', 321),\n",
" ('1', 321),\n",
" (\"'s\", 311),\n",
" ('Board', 292),\n",
" ('public', 285),\n",
" ('similar', 280),\n",
" ('or', 279),\n",
" ('Services', 278),\n",
" ('Department', 274),\n",
" ('titles', 272),\n",
" ('substantially', 272),\n",
" ('as', 264),\n",
" ('with', 252),\n",
" ('OF', 249),\n",
" ('District', 247),\n",
" ('Agency', 247),\n",
" ('A.M.', 245),\n",
" ('NOTICE', 242),\n",
" ('2015', 236),\n",
" (';', 236),\n",
" ('Meets', 228),\n",
" ('services', 226),\n",
" ('Lot', 221),\n",
" ('Block', 220),\n",
" ('Brooklyn', 220),\n",
" ('pursuant', 219),\n",
" ('--', 218),\n",
" ('following', 216),\n",
" ('hearing', 210),\n",
" ('located', 206),\n",
" ('Room', 205),\n",
" ('IS', 202),\n",
" ('-', 201),\n",
" ('HEREBY', 199),\n",
" ('Office', 197),\n",
" ('s', 196),\n",
" ('GIVEN', 196),\n",
" ('term', 195),\n",
" ('10:00', 192),\n",
" ('Community', 192),\n",
" ('years', 190),\n",
" ('10007', 182),\n",
" ('intends', 181),\n",
" ('#', 177),\n",
" ('Commission', 176),\n",
" ('nan', 176),\n",
" ('To', 175),\n",
" ('Section', 169),\n",
" ('building', 168),\n",
" ('not', 166),\n",
" ('square', 163),\n",
" ('Application', 162),\n",
" ('A', 160),\n",
" ('this', 159),\n",
" ('&', 158),\n",
" ('LLC', 157),\n",
" ('Plan', 157),\n",
" ('December', 155),\n",
" ('Annual', 153),\n",
" ('Method', 152),\n",
" ('Personnel', 151),\n",
" (\"''\", 150),\n",
" ('maintain', 148),\n",
" ('2', 148),\n",
" ('THE', 148),\n",
" ('East', 148),\n",
" ('30', 147),\n",
" ('application', 145),\n",
" ('5', 145),\n",
" ('Hall', 144),\n",
" ('Charter', 144),\n",
" ('``', 144),\n",
" ('sidewalk', 143),\n",
" ('call', 142),\n",
" ('22', 142),\n",
" ('other', 142),\n",
" ('held', 142),\n",
" ('West', 141),\n",
" ('each', 141),\n",
" ('are', 140),\n",
" ('personnel', 139),\n",
" ('solicitation', 139),\n",
" ('utilize', 137),\n",
" ('Headcount', 136),\n",
" ('between', 136),\n",
" ('shall', 136),\n",
" ('Public', 135),\n",
" ('Contracting', 134),\n",
" ('FY', 134),\n",
" ('sought', 133),\n",
" ('caf', 132),\n",
" ('operate', 129),\n",
" ('month', 127),\n",
" ('Schedule', 127),\n",
" ('For', 127),\n",
" ('meeting', 125),\n",
" ('3', 124),\n",
" ('Contract', 123),\n",
" ('may', 123),\n",
" ('Mayor', 123),\n",
" ('four', 121),\n",
" ('NYC', 120),\n",
" ('End', 120),\n",
" ('feet', 119),\n",
" ('October', 118),\n",
" ('June', 118),\n",
" ('has', 118),\n",
" ('P.M.', 117),\n",
" ('days', 117),\n",
" ('212', 117),\n",
" ('No', 116),\n",
" ('Project', 116),\n",
" ('should', 114),\n",
" ('project', 114),\n",
" ('Environmental', 113),\n",
" ('continue', 113),\n",
" ('Description', 113),\n",
" ('Hearing', 113),\n",
" ('PUBLIC', 112),\n",
" ('floor', 109),\n",
" ('Reade', 109),\n",
" ('Start', 107),\n",
" ('Queens', 107),\n",
" ('commencing', 107),\n",
" ('period', 104),\n",
" ('November', 102),\n",
" ('Notice', 101),\n",
" ('Inc.', 100),\n",
" ('July', 99),\n",
" ('Development', 99),\n",
" ('through', 98),\n",
" ('been', 98),\n",
" ('foot', 97),\n",
" ('Spector', 95),\n",
" ('information', 95),\n",
" ('site', 94),\n",
" ('unenclosed', 93),\n",
" ('Historic', 93),\n",
" ('COMMUNITY', 92),\n",
" ('Island', 92),\n",
" ('lease', 92),\n",
" ('contact', 91),\n",
" ('Wednesday', 91),\n",
" ('Zoned', 91),\n",
" ('no', 90),\n",
" ('BOARD', 89),\n",
" ('None', 89),\n",
" ('9th', 89),\n",
" ('IN', 88),\n",
" ('0', 88),\n",
" ('approximately', 88),\n",
" ('10', 87),\n",
" ('built', 87),\n",
" ('existing', 86),\n",
" ('use', 86),\n",
" ('Park', 85),\n",
" ('MATTER', 85),\n",
" ('Program', 84),\n",
" ('Broadway', 83),\n",
" ('which', 82),\n",
" ('Administration', 82),\n",
" ('January', 82),\n",
" ('OER', 82),\n",
" ('Tuesday', 82),\n",
" ('40', 80),\n",
" ('have', 79),\n",
" ('Intent', 79),\n",
" ('order', 79),\n",
" ('In', 78),\n",
" ('website', 78),\n",
" ('Bronx', 78),\n",
" ('than', 77),\n",
" ('N.Y.', 77),\n",
" ('property', 76),\n",
" ('district', 75),\n",
" ('received', 75),\n",
" ('time', 74),\n",
" ('style', 74),\n",
" ('please', 72),\n",
" ('7', 72),\n",
" ('Corporation', 71),\n",
" ('CERTIFICATE', 71),\n",
" ('times', 71),\n",
" ('APPROPRIATENESS', 71),\n",
" ('written', 70),\n",
" ('Design', 70),\n",
" ('Citywide', 69),\n",
" ('Included', 69),\n",
" ('6', 69),\n",
" ('Municipal', 69),\n",
" ('published', 69),\n",
" ('schedule', 68),\n",
" ('line', 68),\n",
" ('new', 68),\n",
" ('100', 68),\n",
" ('Thursday', 67),\n",
" ('included', 67),\n",
" ('two', 67),\n",
" ('street', 67),\n",
" ('business', 67),\n",
" ('2nd', 67),\n",
" ('Not', 67),\n",
" ('Solicitation', 66),\n",
" ('additional', 66),\n",
" ('such', 65),\n",
" ('Information', 65),\n",
" ('Centre', 65),\n",
" ('Building', 65),\n",
" ('amount', 65),\n",
" ('31', 65),\n",
" ('including', 65),\n",
" ('Housing', 64),\n",
" ('4', 64),\n",
" ('space', 64),\n",
" ('designed', 64),\n",
" ('later', 64),\n",
" ('Tenant', 63),\n",
" ('Site', 63),\n",
" ('Chairman', 63),\n",
" ('zoning', 63),\n",
" ('312', 63),\n",
" ('scheduled', 63),\n",
" ('Rector', 63),\n",
" ('State', 63),\n",
" ('submitted', 63),\n",
" ('HEARING', 62),\n",
" ('8', 62),\n",
" ('location', 62),\n",
" ('would', 62),\n",
" ('Preservation', 61),\n",
" ('end', 61),\n",
" ('15', 61),\n",
" ('Children', 60),\n",
" ('owner', 60),\n",
" ('Technology', 60),\n",
" ('under', 59),\n",
" ('available', 59),\n",
" ('Extension', 59),\n",
" ('area', 59),\n",
" ('Procurement', 58),\n",
" ('construction', 58),\n",
" ('notice', 58),\n",
" ('CB', 58),\n",
" ('five', 58),\n",
" ('CC', 57),\n",
" ('matters', 57),\n",
" ('inspection', 57),\n",
" ('provide', 56),\n",
" ('must', 56),\n",
" ('Staten', 56),\n",
" ('also', 56),\n",
" ('Rules', 55),\n",
" ('Task', 55),\n",
" ('TO', 55),\n",
" ('first', 54),\n",
" ('below', 54),\n",
" ('9:30', 53),\n",
" ('Boulevard', 53),\n",
" ('Order', 53),\n",
" ('bonds', 53),\n",
" ('VCP', 53),\n",
" ('office', 53),\n",
" ('extension', 52),\n",
" ('Monday', 52),\n",
" ('Remediation', 52),\n",
" ('construct', 52),\n",
" ('APPLICANT', 51),\n",
" ('issuing', 51),\n",
" ('Landmarks', 51),\n",
" ('Center', 51),\n",
" ('Road', 51),\n",
" ('Construction', 51),\n",
" ('Main', 51),\n",
" ('SUBJECT', 50),\n",
" ('PREMISES', 50),\n",
" ('Manager', 50),\n",
" ('AFFECTED', 50),\n",
" ('prior', 50),\n",
" ('Review', 49),\n",
" ('assigned', 49),\n",
" ('Place', 49),\n",
" ('per', 49),\n",
" ('Architect', 49),\n",
" ('development', 49),\n",
" ('Cleanup', 49),\n",
" ('Voluntary', 49),\n",
" ('Meeting', 49),\n",
" ('its', 49),\n",
" ('before', 49),\n",
" ('used', 48),\n",
" ('North', 48),\n",
" ('comments', 48),\n",
" ('warranted', 48),\n",
" ('Issue', 47),\n",
" ('E', 47),\n",
" ('20', 47),\n",
" ('any', 47),\n",
" ('visit', 47),\n",
" ('Management', 46),\n",
" ('Health', 46),\n",
" ('Acquisition', 46),\n",
" ('otherwise', 46),\n",
" ('unless', 46),\n",
" ('bounded', 46),\n",
" ('BOROUGH', 46),\n",
" ('can', 45),\n",
" ('Special', 45),\n",
" ('Telecommunications', 45),\n",
" ('Zoning', 45),\n",
" ('original', 45),\n",
" ('2016', 45),\n",
" ('a.m.', 45),\n",
" ('11', 44),\n",
" ('year', 44),\n",
" ('parking', 44),\n",
" (\"'\", 43),\n",
" ('Planning', 43),\n",
" ('25', 43),\n",
" ('service', 43),\n",
" ('Nature', 43),\n",
" ('Law', 43),\n",
" ('fourth', 43),\n",
" ('Preliminary', 43),\n",
" ('16', 42),\n",
" ('12th', 42),\n",
" ('conference', 42),\n",
" ('William', 42),\n",
" ('Fort', 42),\n",
" ('Parkway', 42),\n",
" ('all', 42),\n",
" ('changes', 42),\n",
" ('Ave', 42),\n",
" ('Date', 42),\n",
" ('matter', 42),\n",
" ('amendment', 41),\n",
" ('facility', 41),\n",
" ('hours', 41),\n",
" ('Court', 41),\n",
" ('monthly', 41),\n",
" ('residential', 41),\n",
" ('Administrative', 41),\n",
" ('Please', 41),\n",
" ('Final', 41),\n",
" ('renewed/extended', 40),\n",
" ('requirements', 40),\n",
" ('Protection', 40),\n",
" ('C', 40),\n",
" ('South', 40),\n",
" ('requesting', 40),\n",
" ('School', 40),\n",
" ('Sections', 39),\n",
" ('three', 39),\n",
" ('Hamilton', 39),\n",
" ('September', 39),\n",
" ('program', 39),\n",
" ('hold', 39),\n",
" ('rent', 39),\n",
" ('Any', 39),\n",
" ('operation', 38),\n",
" ('PM', 38),\n",
" ('Amendment', 38),\n",
" ('12', 38),\n",
" ('Individuals', 38),\n",
" ('CD', 38),\n",
" ('consent', 38),\n",
" ('Third', 38),\n",
" ('addition', 38),\n",
" ('request', 37),\n",
" ('selected', 37),\n",
" ('up', 37),\n",
" ('commercial', 37),\n",
" ('NYCHA', 37),\n",
" ('Vendor', 37),\n",
" ('9', 37),\n",
" ('events', 36),\n",
" ('determined', 36),\n",
" ('R6', 36),\n",
" ('10004', 36),\n",
" ('18', 36),\n",
" ('19', 36),\n",
" ('after', 36),\n",
" ('Human', 36),\n",
" ('land', 36),\n",
" ('along', 36),\n",
" ('allow', 36),\n",
" ('150', 35),\n",
" ('review', 35),\n",
" ('@', 35),\n",
" ('Policy', 35),\n",
" ('revocable', 35),\n",
" ('maintenance', 35),\n",
" ('Water', 35),\n",
" ('accordance', 35),\n",
" ('acquisition', 35),\n",
" ('http', 35),\n",
" ('Authority', 34),\n",
" ('21', 34),\n",
" ('provided', 34),\n",
" ('performed', 34),\n",
" ('permit', 34),\n",
" ('Assistant', 34),\n",
" ('start', 34),\n",
" ('2018', 34),\n",
" ('BSA', 34),\n",
" ('Church', 34),\n",
" ('million', 34),\n",
" ('17', 33),\n",
" ('29', 33),\n",
" ('28', 33),\n",
" ('task', 33),\n",
" ('Interpreters', 33),\n",
" ('HPD', 33),\n",
" ('BUSINESS', 33),\n",
" ('President', 33),\n",
" ('Sign', 33),\n",
" ('Language', 33),\n",
" ('one', 32),\n",
" ('copy', 32),\n",
" ('approximate', 32),\n",
" ('draft', 32),\n",
" ('24', 32),\n",
" ('Civil', 32),\n",
" ('Int', 32),\n",
" ('concession', 32),\n",
" ('room', 32),\n",
" ('197-c', 32),\n",
" ('Transportation', 32),\n",
" ('rear', 32),\n",
" ('Modifications', 32),\n",
" ('buildings', 32),\n",
" ('nature', 32),\n",
" ('related', 32),\n",
" ('Reason', 32),\n",
" ('system', 32),\n",
" ('14', 32),\n",
" ('relation', 32),\n",
" ('Map', 32),\n",
" ('DDC', 31),\n",
" ('6th', 31),\n",
" ('Code', 31),\n",
" ('payable', 31),\n",
" ('General', 31),\n",
" ('portion', 31),\n",
" ('posted', 31),\n",
" ('parcel', 31),\n",
" ('side', 31),\n",
" ('cost', 30),\n",
" ('23', 30),\n",
" ('renewal', 30),\n",
" ('Commissioner', 30),\n",
" ('establishment', 30),\n",
" ('corner', 30),\n",
" ('into', 30),\n",
" ('August', 30),\n",
" ('Engineer', 30),\n",
" ('System', 30),\n",
" ('3rd', 30),\n",
" ('Lots', 30),\n",
" ('Installation', 30),\n",
" ('Education', 30),\n",
" ('AND', 30),\n",
" ('Friday', 30),\n",
" ('reasonable', 29),\n",
" ('253', 29),\n",
" ('Permit', 29),\n",
" ('Conference', 29),\n",
" ('THAT', 29),\n",
" ('Recreation', 29),\n",
" ('February', 29),\n",
" ('plans', 29),\n",
" ('Resources', 29),\n",
" ('Request', 29),\n",
" ('Facility', 29),\n",
" ('10038', 28),\n",
" ('contractor', 28),\n",
" ('Council', 28),\n",
" ('Unit', 28),\n",
" ('This', 28),\n",
" ('March', 28),\n",
" ('permits', 28),\n",
" ('taxes', 28),\n",
" ('these', 28),\n",
" ('Amount', 28),\n",
" ('%', 28),\n",
" ('listed', 28),\n",
" ('Central', 28),\n",
" ('Landlord', 28),\n",
" ('replace', 28),\n",
" ('33', 28),\n",
" ('install', 27),\n",
" ('b', 27),\n",
" ('funds', 27),\n",
" ('13', 27),\n",
" ('DAYS', 27),\n",
" ('certain', 27),\n",
" ('transactions', 27),\n",
" ('Parks', 27),\n",
" ('approval', 27),\n",
" ('p.m.', 27),\n",
" ('limited', 27),\n",
" ('Unenclosed', 27),\n",
" ('Year', 27),\n",
" ('comment', 27),\n",
" ('Lease', 27),\n",
" ('Disposition', 27),\n",
" ('PRIOR', 27),\n",
" ('means', 26),\n",
" ('speak', 26),\n",
" ('housing', 26),\n",
" ('conditions', 26),\n",
" ('management', 26),\n",
" ('extended', 26),\n",
" ('Negotiated', 26),\n",
" ('months', 26),\n",
" ('Long', 26),\n",
" ('corporation', 26),\n",
" ('was', 26),\n",
" ('upon', 26),\n",
" ('real', 26),\n",
" ('units', 26),\n",
" ('yard', 26),\n",
" ('east', 26),\n",
" ('Competitive', 25),\n",
" ('open', 25),\n",
" ('plan', 25),\n",
" ('Two', 25),\n",
" ('annual', 25),\n",
" ('south', 25),\n",
" ('2019', 25),\n",
" ('bond', 25),\n",
" ('design', 25),\n",
" ('necessary', 25),\n",
" ('Plaza', 25),\n",
" ('third', 25),\n",
" ('1:30', 25),\n",
" ('facilities', 25),\n",
" ('May', 25),\n",
" ('Sealed', 25),\n",
" ('17th', 25),\n",
" ('10006', 24),\n",
" ('Tuesdays', 24),\n",
" ('TDD', 24),\n",
" ('Wednesdays', 24),\n",
" ('Ave.', 24),\n",
" ('And', 24),\n",
" ('retail', 24),\n",
" ('Rothkrug', 24),\n",
" ('Title', 24),\n",
" ('Committee', 24),\n",
" ('One', 24),\n",
" ('not-for-profit', 24),\n",
" ('twice', 24),\n",
" ('then', 24),\n",
" ('Monthly', 24),\n",
" ('second', 24),\n",
" ('make', 24),\n",
" ('Awards', 24),\n",
" ('work', 24),\n",
" ('Hearings', 24),\n",
" ('Pursuant', 24),\n",
" ('SAPO', 24),\n",
" ('option', 24),\n",
" ('201', 24),\n",
" ('FMS', 24),\n",
" ('Trust', 24),\n",
" ('given', 24),\n",
" ('ii', 23),\n",
" ('principal', 23),\n",
" ('improvements', 23),\n",
" ('north', 23),\n",
" ('Flushing', 23),\n",
" ('55', 23),\n",
" ('2017', 23),\n",
" ('pay', 23),\n",
" ('systems', 23),\n",
" ('Division', 23),\n",
" ('Hudson', 23),\n",
" ('none', 23),\n",
" ('4th', 23),\n",
" ('6:00', 23),\n",
" ('windows', 23),\n",
" ('community', 23),\n",
" ('renew', 23),\n",
" ('lot', 23),\n",
" ('next', 23),\n",
" ('estimated', 23),\n",
" ('calendar', 23),\n",
" ('Dollars', 22),\n",
" ('250', 22),\n",
" ('rowhouse', 22),\n",
" ('Service', 22),\n",
" ('If', 22),\n",
" ('include', 22),\n",
" ('attend', 22),\n",
" ('west', 22),\n",
" ('subject', 22),\n",
" ('method', 22),\n",
" ('2:30', 22),\n",
" ('users', 22),\n",
" ('email', 22),\n",
" ('Ms.', 22),\n",
" ('Pier55', 22),\n",
" ('but', 22),\n",
" ('28th', 22),\n",
" ('local', 22),\n",
" ('Resolution', 22),\n",
" ('jobs', 22),\n",
" ('more', 21),\n",
" ('minutes', 21),\n",
" ('designation', 21),\n",
" ('2024', 21),\n",
" ('and/or', 21),\n",
" ('if', 21),\n",
" ('projects', 21),\n",
" ('who', 21),\n",
" ('DOT', 21),\n",
" ('c', 21),\n",
" ('Institution', 21),\n",
" ('costs', 21),\n",
" ('AM', 21),\n",
" ('10th', 21),\n",
" ('14th', 21),\n",
" ('your', 21),\n",
" ('Work', 21),\n",
" ('River', 21),\n",
" ('788-7490', 21),\n",
" ('extend', 21),\n",
" ('physical', 21),\n",
" ('32', 21),\n",
" ('36', 21),\n",
" ('issuance', 21),\n",
" ('Area', 21),\n",
" ('number', 21),\n",
" ('without', 21),\n",
" ('Concession', 21),\n",
" ('DPR', 21),\n",
" ('Property', 21),\n",
" ('special', 20),\n",
" ('obtained', 20),\n",
" ('Tax', 20),\n",
" ('renew/extend', 20),\n",
" ('uses', 20),\n",
" ('so', 20),\n",
" ('future', 20),\n",
" ('full', 20),\n",
" ('CITY', 20),\n",
" ('2013', 20),\n",
" ('requiring', 20),\n",
" ('Business', 20),\n",
" ('current', 20),\n",
" ('address', 20),\n",
" ('42-09', 20),\n",
" ('Probation', 20),\n",
" ('renovation', 20),\n",
" ('hearings', 20),\n",
" ('amended', 20),\n",
" ('Million', 20),\n",
" ('terms', 20),\n",
" ('extent', 20),\n",
" ('April', 20),\n",
" ('regarding', 20),\n",
" ('rules', 20),\n",
" ('exempt', 20),\n",
" ('spaces', 20),\n",
" ('11th', 20),\n",
" ('except', 20),\n",
" ('rentable', 20),\n",
" ('2,000,000', 20),\n",
" ('writing', 19),\n",
" ('Landscape', 19),\n",
" ('Inc', 19),\n",
" ('facilitate', 19),\n",
" ('26', 19),\n",
" ('Bid', 19),\n",
" ('it', 19),\n",
" ('relay', 19),\n",
" ('materials', 19),\n",
" ('INC.', 19),\n",
" ('alterations', 19),\n",
" ('Licensed', 19),\n",
" ('718', 19),\n",
" ('gsf', 19),\n",
" ('equivalent', 19),\n",
" ('federal', 19),\n",
" ('person', 19),\n",
" ('11101', 19),\n",
" ('An', 19),\n",
" ('determine', 19),\n",
" ('Affairs', 19),\n",
" ('7th', 19),\n",
" ('renewal/extension', 19),\n",
" ('45', 19),\n",
" ('interior', 19),\n",
" ('P.M', 19),\n",
" ('amounts', 19),\n",
" ('Company', 19),\n",
" ('Revival', 19),\n",
" ('All', 19),\n",
" ('SEVEN', 19),\n",
" ('Washington', 19),\n",
" ('variance', 18),\n",
" ('iii', 18),\n",
" ('143', 18),\n",
" ('21st', 18),\n",
" ('St', 18),\n",
" ('10013', 18),\n",
" ('Real', 18),\n",
" ('BROOKLYN', 18),\n",
" ('10:30', 18),\n",
" ('shown', 18),\n",
" ('5th', 18),\n",
" ('Bay', 18),\n",
" ('Budget', 18),\n",
" ('pier', 18),\n",
" ('holidays', 18),\n",
" ('rooftop', 18),\n",
" ('culture', 18),\n",
" ('provision', 18),\n",
" ('CALENDAR', 18),\n",
" ('meet', 18),\n",
" ('remediation', 18),\n",
" ('those', 18),\n",
" ('provides', 18),\n",
" ('Chester', 18),\n",
" ('Group', 18),\n",
" ('mortgage', 18),\n",
" ('you', 18),\n",
" ('applicant', 18),\n",
" ('Proposal', 18),\n",
" ('terminated', 18),\n",
" ('interest', 18),\n",
" ('1/1/15', 17),\n",
" ('dwelling', 17),\n",
" ('11201', 17),\n",
" ('maximum', 17),\n",
" ('PROPERTY', 17),\n",
" ('2020', 17),\n",
" ('providing', 17),\n",
" ('Greenwich', 17),\n",
" ('Pier', 17),\n",
" ('Capital', 17),\n",
" ('installments', 17),\n",
" ('A.M', 17),\n",
" ('security', 17),\n",
" ('seeking', 17),\n",
" ('lessee', 17),\n",
" ('copies', 17),\n",
" ('intersection', 17),\n",
" ('60', 17),\n",
" ('begin', 17),\n",
" ('ground', 17),\n",
" ('requests', 17),\n",
" ('Article', 17),\n",
" ('Franchise', 17),\n",
" ('opportunity', 17),\n",
" ('options', 17),\n",
" ('authorizing', 17),\n",
" ('follows', 17),\n",
" ('Revenue', 17),\n",
" ('entering', 17),\n",
" ('Training', 17),\n",
" ('AVE', 17),\n",
" ('Associate', 17),\n",
" ('530', 17),\n",
" ('Engineers', 17),\n",
" ('Offices', 17),\n",
" ('42', 17),\n",
" ('garage', 17),\n",
" ('made', 17),\n",
" ('PURSUANT', 17),\n",
" ('Landmark', 17),\n",
" ('Written', 17),\n",
" ('award', 17),\n",
" ('DEP', 17),\n",
" ('Adjacent', 17),\n",
" ('hereby', 17),\n",
" ('5:30', 16),\n",
" ('required', 16),\n",
" ('participate', 16),\n",
" ('3-04', 16),\n",
" ('potential', 16),\n",
" ('action', 16),\n",
" ('NEW', 16),\n",
" ('2022', 16),\n",
" ('OFFICE', 16),\n",
" ('needed', 16),\n",
" ('Beach', 16),\n",
" ('27', 16),\n",
" ('sent', 16),\n",
" ('ST', 16),\n",
" ('areas', 16),\n",
" ('conjunction', 16),\n",
" ('Receipts', 16),\n",
" ('equal', 16),\n",
" ('part', 16),\n",
" ('Appeals', 16),\n",
" ('revenue', 16),\n",
" ('7:00', 16),\n",
" ('above', 16),\n",
" ('LLP', 16),\n",
" ('Requirements', 16),\n",
" ('includes', 16),\n",
" ('financings', 16),\n",
" ('Adams', 16),\n",
" ('2011', 16),\n",
" ('Intern', 16),\n",
" ('during', 16),\n",
" ('PIN', 16),\n",
" ('Beaver', 16),\n",
" ('small', 16),\n",
" ('aka', 16),\n",
" ('54th', 16),\n",
" ('Comptroller', 16),\n",
" ('Control', 16),\n",
" ('law', 16),\n",
" ('Extend', 16),\n",
" ('preceding', 16),\n",
" ('Rights', 16),\n",
" ('Matter', 16),\n",
" ('recording', 16),\n",
" ('Richmond', 16),\n",
" ('place', 16),\n",
" ('306-6088', 16),\n",
" ('benefit', 16),\n",
" ('Gross', 16),\n",
" ('Grand', 16),\n",
" ('level', 16),\n",
" ('Melrose', 16),\n",
" ('i', 16),\n",
" ('behalf', 16),\n",
" ('does', 16),\n",
" ('ten', 16),\n",
" ('containing', 16),\n",
" ('final', 15),\n",
" ('//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml', 15),\n",
" ('noted', 15),\n",
" ('establish', 15),\n",
" ('Phase', 15),\n",
" ('having', 15),\n",
" ('YORK', 15),\n",
" ('southeasterly', 15),\n",
" ('9:15', 15),\n",
" ('forth', 15),\n",
" ('compensation', 15),\n",
" ('house', 15),\n",
" ('organizations', 15),\n",
" ('Release', 15),\n",
" ('equipment', 15),\n",
" ('ZR', 15),\n",
" ('110', 15),\n",
" ('based', 15),\n",
" ('22nd', 15),\n",
" ('do', 15),\n",
" ('proceeds', 15),\n",
" ('Youth', 15),\n",
" ('Junction', 15),\n",
" ('tax-exempt', 15),\n",
" ('RFP', 15),\n",
" ('properties', 15),\n",
" ('1st', 15),\n",
" ('Type', 15),\n",
" ('equipping', 15),\n",
" ('Forest', 15),\n",
" ('Address', 15),\n",
" ('their', 15),\n",
" ('approved', 15),\n",
" ('Standards', 15),\n",
" ('59-17', 15),\n",
" ('according', 15),\n",
" ('board', 15),\n",
" ('Name', 15),\n",
" ('repair', 15),\n",
" ('8:00', 15),\n",
" ('73-36', 15),\n",
" ('morning', 15),\n",
" ('__________', 15),\n",
" ('sampling', 15),\n",
" ('Gotham', 15),\n",
" ('home', 15),\n",
" ('Madison', 15),\n",
" ('Joralemon', 15),\n",
" ('need', 15),\n",
" ('EPIN', 15),\n",
" ('Expense', 15),\n",
" ('practicable', 15),\n",
" ('here', 15),\n",
" ('both', 14),\n",
" ('Cost', 14),\n",
" ('Industrial', 14),\n",
" ('2:00', 14),\n",
" ('accessory', 14),\n",
" ('DYCD', 14),\n",
" ('once', 14),\n",
" ('Contracts', 14),\n",
" ('Action', 14),\n",
" ('2023', 14),\n",
" ('Benefits', 14),\n",
" ('last', 14),\n",
" ('Further', 14),\n",
" ('Consulting', 14),\n",
" ('support', 14),\n",
" ('ACQUISITIONS', 14),\n",
" ('824', 14),\n",
" ('financing', 14),\n",
" ('set', 14),\n",
" ('Fleming', 14),\n",
" ('grant', 14),\n",
" ('Gold', 14),\n",
" ('Retirement', 14),\n",
" ('consisting', 14),\n",
" ('386-0315', 14),\n",
" ('2000', 14),\n",
" ('REAL', 14),\n",
" ('DISPOSITIONS', 14),\n",
" ('purposes', 14),\n",
" ('section', 14),\n",
" ('permitted', 14),\n",
" ('annum', 14),\n",
" ('8th', 14),\n",
" ('conduct', 14),\n",
" ('Chris', 14),\n",
" ('Term', 14),\n",
" ('dates', 14),\n",
" ('VERIZON', 14),\n",
" ('Calendar', 14),\n",
" ('advance', 14),\n",
" ('items', 14),\n",
" ('335', 14),\n",
" ('W', 14),\n",
" ('Chapter', 14),\n",
" ('Intergovernmental', 14),\n",
" ('publication', 14),\n",
" ('Heights', 14),\n",
" ('together', 14),\n",
" ('note', 14),\n",
" ('212-788-3071', 14),\n",
" ('50', 14),\n",
" ('Economic', 14),\n",
" ('rental', 14),\n",
" ('agreement', 14),\n",
" ('contrary', 14),\n",
" ('noticed', 14),\n",
" ('modify', 14),\n",
" ('41', 14),\n",
" ('St.', 14),\n",
" ('agenda', 14),\n",
" ('there', 14),\n",
" ('Care', 14),\n",
" ('Ocean', 13),\n",
" ('You', 13),\n",
" ('installation', 13),\n",
" ('previously', 13),\n",
" ('air', 13),\n",
" ('2025', 13),\n",
" ('2021', 13),\n",
" ('Corp.', 13),\n",
" ('arrange', 13),\n",
" ('contractors', 13),\n",
" ('acquired', 13),\n",
" ('Approval', 13),\n",
" ('city', 13),\n",
" ('12/31/15', 13),\n",
" ('Hourly', 13),\n",
" ...]"
]
}
],
"prompt_number": 13
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Let's clean things up a little bit. Changing everything to lower-case is usually a good idea. \n",
"#\"Public Hearing\" will equal \"PUBLIC HEARING\"\n",
"lowerTokens = [w.lower() for w in myCorpusTokenized]\n",
"lowerText = nltk.Text(lowerTokens)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 16
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"list(nltk.FreqDist(lowerText).most_common())\n",
"#Already saved some doubling-up! Note the 5649 mentions of \"the\", instead of 4860 like in the last list"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 19,
"text": [
"[(',', 8033),\n",
" ('the', 5649),\n",
" ('of', 4822),\n",
" ('.', 2727),\n",
" ('to', 2409),\n",
" ('and', 2392),\n",
" (')', 1806),\n",
" ('(', 1747),\n",
" (':', 1714),\n",
" ('in', 1686),\n",
" ('a', 1419),\n",
" ('for', 1261),\n",
" ('at', 1215),\n",
" ('new', 1191),\n",
" ('york', 1003),\n",
" ('street', 988),\n",
" ('on', 888),\n",
" ('is', 704),\n",
" ('city', 698),\n",
" ('be', 674),\n",
" ('agency', 647),\n",
" ('contract', 623),\n",
" ('proposed', 583),\n",
" ('an', 533),\n",
" ('public', 532),\n",
" ('by', 522),\n",
" ('services', 510),\n",
" ('manhattan', 479),\n",
" ('floor', 469),\n",
" ('will', 461),\n",
" ('that', 425),\n",
" ('borough', 414),\n",
" ('notice', 401),\n",
" ('board', 396),\n",
" ('hearing', 385),\n",
" ('$', 382),\n",
" ('from', 379),\n",
" ('2014', 379),\n",
" ('date', 363),\n",
" ('within', 356),\n",
" ('avenue', 336),\n",
" ('ny', 329),\n",
" ('district', 325),\n",
" (\"'s\", 324),\n",
" ('1', 321),\n",
" ('application', 315),\n",
" ('community', 307),\n",
" ('a.m.', 291),\n",
" ('personnel', 290),\n",
" ('department', 285),\n",
" ('similar', 282),\n",
" ('or', 279),\n",
" ('substantially', 276),\n",
" ('titles', 274),\n",
" ('as', 274),\n",
" ('office', 266),\n",
" ('pursuant', 260),\n",
" ('with', 253),\n",
" ('lot', 247),\n",
" ('meets', 240),\n",
" ('brooklyn', 238),\n",
" ('room', 237),\n",
" ('2015', 236),\n",
" (';', 236),\n",
" ('project', 235),\n",
" ('not', 233),\n",
" ('building', 233),\n",
" ('block', 229),\n",
" ('given', 220),\n",
" ('following', 219),\n",
" ('--', 218),\n",
" ('hereby', 216),\n",
" ('no', 215),\n",
" ('located', 210),\n",
" ('term', 209),\n",
" ('solicitation', 205),\n",
" ('-', 201),\n",
" ('s', 197),\n",
" ('schedule', 195),\n",
" ('10:00', 192),\n",
" ('years', 190),\n",
" ('this', 187),\n",
" ('plan', 185),\n",
" ('commission', 184),\n",
" ('section', 183),\n",
" ('10007', 182),\n",
" ('end', 181),\n",
" ('intends', 181),\n",
" ('meeting', 179),\n",
" ('annual', 178),\n",
" ('#', 177),\n",
" ('nan', 176),\n",
" ('square', 176),\n",
" ('east', 176),\n",
" ('method', 174),\n",
" ('west', 167),\n",
" ('information', 161),\n",
" ('december', 160),\n",
" ('&', 158),\n",
" ('llc', 158),\n",
" ('site', 157),\n",
" ('development', 156),\n",
" (\"''\", 150),\n",
" ('maintain', 148),\n",
" ('2', 148),\n",
" ('may', 148),\n",
" ('other', 147),\n",
" ('30', 147),\n",
" ('charter', 145),\n",
" ('5', 145),\n",
" ('hall', 144),\n",
" ('days', 144),\n",
" ('p.m.', 144),\n",
" ('``', 144),\n",
" ('sought', 144),\n",
" ('matter', 143),\n",
" ('sidewalk', 143),\n",
" ('call', 142),\n",
" ('22', 142),\n",
" ('each', 142),\n",
" ('held', 142),\n",
" ('start', 141),\n",
" ('are', 141),\n",
" ('headcount', 138),\n",
" ('between', 138),\n",
" ('shall', 138),\n",
" ('utilize', 137),\n",
" ('included', 136),\n",
" ('mayor', 136),\n",
" ('fy', 134),\n",
" ('contracting', 134),\n",
" ('caf', 133),\n",
" ('order', 133),\n",
" ('operate', 129),\n",
" ('month', 127),\n",
" ('program', 127),\n",
" ('3', 124),\n",
" ('four', 122),\n",
" ('october', 121),\n",
" ('environmental', 121),\n",
" ('lease', 121),\n",
" ('unenclosed', 120),\n",
" ('nyc', 120),\n",
" ('please', 120),\n",
" ('business', 120),\n",
" ('inc.', 119),\n",
" ('feet', 119),\n",
" ('june', 118),\n",
" ('description', 118),\n",
" ('has', 118),\n",
" ('none', 118),\n",
" ('212', 117),\n",
" ('zoning', 116),\n",
" ('queens', 116),\n",
" ('should', 115),\n",
" ('property', 114),\n",
" ('continue', 113),\n",
" ('extension', 112),\n",
" ('construction', 110),\n",
" ('reade', 109),\n",
" ('november', 107),\n",
" ('commencing', 107),\n",
" ('period', 107),\n",
" ('corporation', 101),\n",
" ('through', 99),\n",
" ('july', 99),\n",
" ('historic', 98),\n",
" ('been', 98),\n",
" ('approximately', 98),\n",
" ('foot', 97),\n",
" ('design', 97),\n",
" ('park', 96),\n",
" ('spector', 95),\n",
" ('use', 95),\n",
" ('housing', 95),\n",
" ('island', 95),\n",
" ('two', 93),\n",
" ('amount', 93),\n",
" ('zoned', 92),\n",
" ('contact', 91),\n",
" ('wednesday', 91),\n",
" ('administration', 91),\n",
" ('website', 91),\n",
" ('bronx', 89),\n",
" ('task', 89),\n",
" ('9th', 89),\n",
" ('existing', 89),\n",
" ('certificate', 88),\n",
" ('0', 88),\n",
" ('10', 87),\n",
" ('built', 87),\n",
" ('written', 87),\n",
" ('review', 86),\n",
" ('any', 86),\n",
" ('january', 85),\n",
" ('amendment', 84),\n",
" ('broadway', 84),\n",
" ('subject', 83),\n",
" ('have', 83),\n",
" ('tuesday', 83),\n",
" ('which', 82),\n",
" ('acquisition', 82),\n",
" ('intent', 82),\n",
" ('oer', 82),\n",
" ('area', 81),\n",
" ('appropriateness', 81),\n",
" ('40', 80),\n",
" ('applicant', 80),\n",
" ('than', 79),\n",
" ('management', 78),\n",
" ('prior', 78),\n",
" ('n.y.', 77),\n",
" ('time', 77),\n",
" ('rules', 75),\n",
" ('citywide', 75),\n",
" ('nature', 75),\n",
" ('received', 75),\n",
" ('tenant', 74),\n",
" ('style', 74),\n",
" ('facility', 72),\n",
" ('times', 72),\n",
" ('additional', 72),\n",
" ('line', 72),\n",
" ('7', 72),\n",
" ('north', 71),\n",
" ('conference', 71),\n",
" ('state', 71),\n",
" ('2nd', 71),\n",
" ('year', 71),\n",
" ('remediation', 70),\n",
" ('premises', 70),\n",
" ('municipal', 69),\n",
" ('such', 69),\n",
" ('6', 69),\n",
" ('service', 69),\n",
" ('published', 69),\n",
" ('request', 68),\n",
" ('100', 68),\n",
" ('five', 68),\n",
" ('south', 67),\n",
" ('preservation', 67),\n",
" ('law', 67),\n",
" ('thursday', 67),\n",
" ('special', 66),\n",
" ('monthly', 66),\n",
" ('owner', 66),\n",
" ('technology', 66),\n",
" ('place', 66),\n",
" ('including', 66),\n",
" ('permit', 65),\n",
" ('centre', 65),\n",
" ('31', 65),\n",
" ('later', 65),\n",
" ('inspection', 65),\n",
" ('4', 64),\n",
" ('space', 64),\n",
" ('location', 64),\n",
" ('designed', 64),\n",
" ('under', 63),\n",
" ('system', 63),\n",
" ('rector', 63),\n",
" ('provide', 63),\n",
" ('312', 63),\n",
" ('scheduled', 63),\n",
" ('all', 63),\n",
" ('third', 63),\n",
" ('submitted', 63),\n",
" ('chairman', 63),\n",
" ('would', 62),\n",
" ('children', 62),\n",
" ('procurement', 62),\n",
" ('8', 62),\n",
" ('15', 61),\n",
" ('bonds', 61),\n",
" ('c', 61),\n",
" ('visit', 60),\n",
" ('issue', 59),\n",
" ('staten', 59),\n",
" ('ave', 59),\n",
" ('available', 59),\n",
" ('center', 58),\n",
" ('first', 58),\n",
" ('real', 58),\n",
" ('comments', 58),\n",
" ('cb', 58),\n",
" ('cleanup', 57),\n",
" ('also', 57),\n",
" ('matters', 57),\n",
" ('cc', 57),\n",
" ('final', 56),\n",
" ('one', 56),\n",
" ('must', 56),\n",
" ('requirements', 56),\n",
" ('main', 55),\n",
" ('calendar', 55),\n",
" ('concession', 54),\n",
" ('million', 54),\n",
" ('landmarks', 54),\n",
" ('below', 54),\n",
" ('9:30', 53),\n",
" ('vcp', 53),\n",
" ('health', 53),\n",
" ('boulevard', 53),\n",
" ('road', 53),\n",
" ('construct', 52),\n",
" ('monday', 52),\n",
" ('issuing', 51),\n",
" ('per', 51),\n",
" ('hearings', 51),\n",
" ('planning', 51),\n",
" ('affected', 50),\n",
" ('administrative', 50),\n",
" ('manager', 50),\n",
" ('architect', 50),\n",
" ('bounded', 50),\n",
" ('assigned', 49),\n",
" ('its', 49),\n",
" ('voluntary', 49),\n",
" ('e', 49),\n",
" ('before', 49),\n",
" ('used', 48),\n",
" ('preliminary', 48),\n",
" ('warranted', 48),\n",
" ('events', 47),\n",
" ('school', 47),\n",
" ('20', 47),\n",
" ('telecommunications', 47),\n",
" ('court', 47),\n",
" ('parking', 47),\n",
" ('can', 46),\n",
" ('otherwise', 46),\n",
" ('unless', 46),\n",
" ('water', 46),\n",
" ('authority', 46),\n",
" ('2016', 45),\n",
" ('land', 45),\n",
" ('map', 45),\n",
" ('original', 45),\n",
" ('work', 45),\n",
" ('cost', 44),\n",
" ('11', 44),\n",
" ('maintenance', 44),\n",
" ('sign', 44),\n",
" ('fort', 44),\n",
" ('parkway', 44),\n",
" ('if', 43),\n",
" ('installation', 43),\n",
" ('renewal', 43),\n",
" (\"'\", 43),\n",
" ('25', 43),\n",
" ('12th', 43),\n",
" ('fourth', 43),\n",
" ('side', 43),\n",
" ('protection', 43),\n",
" ('code', 42),\n",
" ('resources', 42),\n",
" ('16', 42),\n",
" ('hamilton', 42),\n",
" ('changes', 42),\n",
" ('human', 42),\n",
" ('vendor', 42),\n",
" ('william', 42),\n",
" ('hours', 41),\n",
" ('residential', 41),\n",
" ('consent', 41),\n",
" ('commercial', 41),\n",
" ('renewed/extended', 40),\n",
" ('draft', 40),\n",
" ('disposition', 40),\n",
" ('three', 40),\n",
" ('pm', 40),\n",
" ('approval', 40),\n",
" ('individuals', 40),\n",
" ('requesting', 40),\n",
" ('contractor', 39),\n",
" ('operation', 39),\n",
" ('sections', 39),\n",
" ('negotiated', 39),\n",
" ('after', 39),\n",
" ('general', 39),\n",
" ('language', 39),\n",
" ('hold', 39),\n",
" ('september', 39),\n",
" ('rent', 39),\n",
" ('12', 38),\n",
" ('interpreters', 38),\n",
" ('lots', 38),\n",
" ('education', 38),\n",
" ('addition', 38),\n",
" ('cd', 38),\n",
" ('st', 37),\n",
" ('up', 37),\n",
" ('parcel', 37),\n",
" ('selected', 37),\n",
" ('related', 37),\n",
" ('allow', 37),\n",
" ('extend', 37),\n",
" ('nycha', 37),\n",
" ('9', 37),\n",
" ('determined', 36),\n",
" ('10004', 36),\n",
" ('18', 36),\n",
" ('policy', 36),\n",
" ('buildings', 36),\n",
" ('r6', 36),\n",
" ('along', 36),\n",
" ('19', 36),\n",
" ('150', 35),\n",
" ('address', 35),\n",
" ('these', 35),\n",
" ('@', 35),\n",
" ('pier', 35),\n",
" ('accordance', 35),\n",
" ('revocable', 35),\n",
" ('corner', 35),\n",
" ('unit', 35),\n",
" ('jobs', 35),\n",
" ('http', 35),\n",
" ('funds', 34),\n",
" ('21', 34),\n",
" ('president', 34),\n",
" ('adjacent', 34),\n",
" ('provided', 34),\n",
" ('performed', 34),\n",
" ('assistant', 34),\n",
" ('2018', 34),\n",
" ('landlord', 34),\n",
" ('transportation', 34),\n",
" ('bsa', 34),\n",
" ('church', 34),\n",
" ('plaza', 34),\n",
" ('28', 33),\n",
" ('17', 33),\n",
" ('29', 33),\n",
" ('revenue', 33),\n",
" ('hpd', 33),\n",
" ('rear', 33),\n",
" ('title', 33),\n",
" ('limited', 33),\n",
" ('civil', 33),\n",
" ('note', 33),\n",
" ('24', 32),\n",
" ('b', 32),\n",
" ('6th', 32),\n",
" ('copy', 32),\n",
" ('modifications', 32),\n",
" ('14', 32),\n",
" ('approximate', 32),\n",
" ('reason', 32),\n",
" ('197-c', 32),\n",
" ('int', 32),\n",
" ('relation', 32),\n",
" ('reasonable', 31),\n",
" ('engineer', 31),\n",
" ('parks', 31),\n",
" ('permits', 31),\n",
" ('payable', 31),\n",
" ('council', 31),\n",
" ('tax', 31),\n",
" ('recreation', 31),\n",
" ('plans', 31),\n",
" ('action', 31),\n",
" ('posted', 31),\n",
" ('portion', 31),\n",
" ('comment', 31),\n",
" ('3rd', 31),\n",
" ('you', 31),\n",
" ('ddc', 31),\n",
" ('award', 31),\n",
" ('friday', 30),\n",
" ('23', 30),\n",
" ('establishment', 30),\n",
" ('systems', 30),\n",
" ('commissioner', 30),\n",
" ('into', 30),\n",
" ('local', 30),\n",
" ('august', 30),\n",
" ('youth', 30),\n",
" ('253', 29),\n",
" ('central', 29),\n",
" ('february', 29),\n",
" ('hudson', 29),\n",
" ('10038', 28),\n",
" ('march', 28),\n",
" ('taxes', 28),\n",
" ('van', 28),\n",
" ('river', 28),\n",
" ('type', 28),\n",
" ('%', 28),\n",
" ('not-for-profit', 28),\n",
" ('dollars', 28),\n",
" ('federal', 28),\n",
" ('33', 28),\n",
" ('listed', 28),\n",
" ('replace', 28),\n",
" ('home', 28),\n",
" ('i', 28),\n",
" ('install', 27),\n",
" ('seven', 27),\n",
" ('ii', 27),\n",
" ('open', 27),\n",
" ('13', 27),\n",
" ('company', 27),\n",
" ('projects', 27),\n",
" ('part', 27),\n",
" ('awards', 27),\n",
" ('proceeds', 27),\n",
" ('certain', 27),\n",
" ('next', 27),\n",
" ('transactions', 27),\n",
" ('extended', 27),\n",
" ('second', 27),\n",
" ('yard', 27),\n",
" ('sealed', 26),\n",
" ('it', 26),\n",
" ('means', 26),\n",
" ('conditions', 26),\n",
" ('speak', 26),\n",
" ('proposal', 26),\n",
" ('grant', 26),\n",
" ('units', 26),\n",
" ('budget', 26),\n",
" ('bid', 26),\n",
" ('then', 26),\n",
" ('facilities', 26),\n",
" ('release', 26),\n",
" ('trust', 26),\n",
" ('months', 26),\n",
" ('long', 26),\n",
" ('was', 26),\n",
" ('contracts', 26),\n",
" ('upon', 26),\n",
" ('verizon', 25),\n",
" ('variance', 25),\n",
" ('ave.', 25),\n",
" ('there', 25),\n",
" ('2019', 25),\n",
" ('reconstruction', 25),\n",
" ('bond', 25),\n",
" ('competitive', 25),\n",
" ('small', 25),\n",
" ('necessary', 25),\n",
" ('improvements', 25),\n",
" ('1:30', 25),\n",
" ('retail', 25),\n",
" ('number', 25),\n",
" ('range', 25),\n",
" ('17th', 25),\n",
" ('10006', 24),\n",
" ('201', 24),\n",
" ('division', 24),\n",
" ('rothkrug', 24),\n",
" ('spaces', 24),\n",
" ('sapo', 24),\n",
" ('wednesdays', 24),\n",
" ('fms', 24),\n",
" ('twice', 24),\n",
" ('tdd', 24),\n",
" ('provision', 24),\n",
" ('pier55', 24),\n",
" ('4th', 24),\n",
" ('make', 24),\n",
" ('present', 24),\n",
" ('tuesdays', 24),\n",
" ('option', 24),\n",
" ('committee', 24),\n",
" ('repair', 24),\n",
" ('group', 23),\n",
" ('minutes', 23),\n",
" ('principal', 23),\n",
" ('flushing', 23),\n",
" ('resolution', 23),\n",
" ('copies', 23),\n",
" ('gross', 23),\n",
" ('chapter', 23),\n",
" ('55', 23),\n",
" ('windows', 23),\n",
" ('landscape', 23),\n",
" ('2017', 23),\n",
" ('appeals', 23),\n",
" ('pay', 23),\n",
" ('holidays', 23),\n",
" ('a.m', 23),\n",
" ('6:00', 23),\n",
" ('garage', 23),\n",
" ('insurance', 23),\n",
" ('email', 23),\n",
" ('those', 23),\n",
" ('amended', 23),\n",
" ('industrial', 23),\n",
" ('renew', 23),\n",
" ('estimated', 23),\n",
" ('projected', 22),\n",
" ('250', 22),\n",
" ('rowhouse', 22),\n",
" ('required', 22),\n",
" ('include', 22),\n",
" ('attend', 22),\n",
" ('financing', 22),\n",
" ('ms.', 22),\n",
" ('future', 22),\n",
" ('architectural', 22),\n",
" ('2:30', 22),\n",
" ('issuance', 22),\n",
" ('users', 22),\n",
" ('10th', 22),\n",
" ('14th', 22),\n",
" ('but', 22),\n",
" ('28th', 22),\n",
" ('care', 22),\n",
" ('economic', 22),\n",
" ('institution', 22),\n",
" ('am', 22),\n",
" ('more', 21),\n",
" ('designation', 21),\n",
" ('dot', 21),\n",
" ('inc', 21),\n",
" ('2024', 21),\n",
" ('uses', 21),\n",
" ('and/or', 21),\n",
" ('support', 21),\n",
" ('phase', 21),\n",
" ('expense', 21),\n",
" ('restaurant', 21),\n",
" ('total', 21),\n",
" ('who', 21),\n",
" ('laws', 21),\n",
" ('affairs', 21),\n",
" ('receipts', 21),\n",
" ('5th', 21),\n",
" ('probation', 21),\n",
" ('tax-exempt', 21),\n",
" ('costs', 21),\n",
" ('corp.', 21),\n",
" ('interior', 21),\n",
" ('dpr', 21),\n",
" ('your', 21),\n",
" ('so', 21),\n",
" ('788-7490', 21),\n",
" ('regarding', 21),\n",
" ('physical', 21),\n",
" ('32', 21),\n",
" ('36', 21),\n",
" ('assistance', 21),\n",
" ('without', 21),\n",
" ('control', 21),\n",
" ('writing', 20),\n",
" ('obtained', 20),\n",
" ('renew/extend', 20),\n",
" ('compensation', 20),\n",
" ('equipment', 20),\n",
" ('police', 20),\n",
" ('capital', 20),\n",
" ('provides', 20),\n",
" ('agenda', 20),\n",
" ('full', 20),\n",
" ('meetings', 20),\n",
" ('except', 20),\n",
" ('2013', 20),\n",
" ('opportunity', 20),\n",
" ('current', 20),\n",
" ('landmark', 20),\n",
" ('requiring', 20),\n",
" ('42-09', 20),\n",
" ('renovation', 20),\n",
" ('terms', 20),\n",
" ('extent', 20),\n",
" ('exempt', 20),\n",
" ('april', 20),\n",
" ('11th', 20),\n",
" ('alterations', 20),\n",
" ('rentable', 20),\n",
" ('borrower', 20),\n",
" ('interest', 20),\n",
" ('2,000,000', 20),\n",
" ('26', 19),\n",
" ('washington', 19),\n",
" ('iii', 19),\n",
" ('materials', 19),\n",
" ('house', 19),\n",
" ('engineers', 19),\n",
" ('build', 19),\n",
" ('equal', 19),\n",
" ('paper', 19),\n",
" ('engineering', 19),\n",
" ('11101', 19),\n",
" ('718', 19),\n",
" ('determine', 19),\n",
" ('gsf', 19),\n",
" ('equivalent', 19),\n",
" ('45', 19),\n",
" ('properties', 19),\n",
" ('person', 19),\n",
" ('offices', 19),\n",
" ('greenwich', 19),\n",
" ('7th', 19),\n",
" ('facilitate', 19),\n",
" ('amounts', 19),\n",
" ('revival', 19),\n",
" ('pin', 19),\n",
" ('further', 19),\n",
" ('renewal/extension', 19),\n",
" ('relay', 19),\n",
" ('level', 19),\n",
" ('p.m', 19),\n",
" ('agreement', 19),\n",
" ('licensed', 19),\n",
" ('base', 18),\n",
" ('bay', 18),\n",
" ('day', 18),\n",
" ('training', 18),\n",
" ('maximum', 18),\n",
" ('report', 18),\n",
" ('143', 18),\n",
" ('article', 18),\n",
" ('dwelling', 18),\n",
" ('rights', 18),\n",
" ('21st', 18),\n",
" ('10013', 18),\n",
" ('10:30', 18),\n",
" ('requests', 18),\n",
" ('shown', 18),\n",
" ('during', 18),\n",
" ('rooftop', 18),\n",
" ('culture', 18),\n",
" ('wage', 18),\n",
" ('1st', 18),\n",
" ('meet', 18),\n",
" ('chester', 18),\n",
" ('fifth', 18),\n",
" ('mortgage', 18),\n",
" ('richmond', 18),\n",
" ('terminated', 18),\n",
" ('11201', 17),\n",
" ('2020', 17),\n",
" ('providing', 17),\n",
" ('statement', 17),\n",
" ('dep', 17),\n",
" ('installments', 17),\n",
" ('security', 17),\n",
" ('seeking', 17),\n",
" ('grand', 17),\n",
" ('lessee', 17),\n",
" ('60', 17),\n",
" ('concept', 17),\n",
" ('persons', 17),\n",
" ('begin', 17),\n",
" ('epin', 17),\n",
" ('ground', 17),\n",
" ('franchise', 17),\n",
" ('authorizing', 17),\n",
" ('scheduling', 17),\n",
" ('follows', 17),\n",
" ('options', 17),\n",
" ('entering', 17),\n",
" ('beach', 17),\n",
" ('aka', 17),\n",
" ('intersection', 17),\n",
" ('54th', 17),\n",
" ('530', 17),\n",
" ('advance', 17),\n",
" ('42', 17),\n",
" ('1/1/15', 17),\n",
" ('items', 17),\n",
" ('made', 17),\n",
" ('recording', 17),\n",
" ('need', 17),\n",
" ('telephone', 17),\n",
" ('ten', 17),\n",
" ('sampling', 17),\n",
" ('associate', 17),\n",
" ('5:30', 16),\n",
" ('establish', 16),\n",
" ('participate', 16),\n",
" ('3-04', 16),\n",
" ('once', 16),\n",
" ('potential', 16),\n",
" ('2022', 16),\n",
" ('infrastructure', 16),\n",
" ('value', 16),\n",
" ('27', 16),\n",
" ('areas', 16),\n",
" ('sent', 16),\n",
" ('does', 16),\n",
" ('conjunction', 16),\n",
" ('beaver', 16),\n",
" ('7:00', 16),\n",
" ('above', 16),\n",
" ('includes', 16),\n",
" ('financings', 16),\n",
" ('point', 16),\n",
" ('do', 16),\n",
" ('2011', 16),\n",
" ('forest', 16),\n",
" ('adams', 16),\n",
" ('interested', 16),\n",
" ('needed', 16),\n",
" ('proposals', 16),\n",
" ('melrose', 16),\n",
" ('preceding', 16),\n",
" ('comptroller', 16),\n",
" ('publication', 16),\n",
" ('llp', 16),\n",
" ('306-6088', 16),\n",
" ('benefit', 16),\n",
" ('intern', 16),\n",
" ('standards', 16),\n",
" ('behalf', 16),\n",
" ('madison', 16),\n",
" ('containing', 16),\n",
" ('here', 16),\n",
" ('//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml', 15),\n",
" ('noted', 15),\n",
" ('joralemon', 15),\n",
" ('having', 15),\n",
" ('neighborhood', 15),\n",
" ('southeasterly', 15),\n",
" ('architecture', 15),\n",
" ('9:15', 15),\n",
" ('forth', 15),\n",
" ('members', 15),\n",
" ('organizations', 15),\n",
" ('name', 15),\n",
" ('retirement', 15),\n",
" ('over', 15),\n",
" ('streets', 15),\n",
" ('22nd', 15),\n",
" ('110', 15),\n",
" ('associates', 15),\n",
" ('assessment', 15),\n",
" ('significant', 15),\n",
" ('permitted', 15),\n",
" ('gotham', 15),\n",
" ('generally', 15),\n",
" ('equipping', 15),\n",
" ('benefits', 15),\n",
" ('rehabilitation', 15),\n",
" ('fleming', 15),\n",
" ('library', 15),\n",
" ('fee', 15),\n",
" ('st.', 15),\n",
" ('their', 15),\n",
" ('approved', 15),\n",
" ('family', 15),\n",
" ('dates', 15),\n",
" ('county', 15),\n",
" ('zr', 15),\n",
" ('junction', 15),\n",
" ('child', 15),\n",
" ('gold', 15),\n",
" ('scope', 15),\n",
" ('59-17', 15),\n",
" ('according', 15),\n",
" ('finance', 15),\n",
" ('applications', 15),\n",
" ('8:00', 15),\n",
" ('rfp', 15),\n",
" ('73-36', 15),\n",
" ('morning', 15),\n",
" ('based', 15),\n",
" ('sole', 15),\n",
" ('__________', 15),\n",
" ('average', 15),\n",
" ('rental', 15),\n",
" ('practicable', 15),\n",
" ('take', 15),\n",
" ('chris', 14),\n",
" ('both', 14),\n",
" ('heights', 14),\n",
" ('2:00', 14),\n",
" ('village', 14),\n",
" ('2023', 14),\n",
" ('accessory', 14),\n",
" ('last', 14),\n",
" ('824', 14),\n",
" ('set', 14),\n",
" ('intergovernmental', 14),\n",
" ('elections', 14),\n",
" ('estate', 14),\n",
" ('50', 14),\n",
" ('various', 14),\n",
" ('mental', 14),\n",
" ('districts', 14),\n",
" ('consisting', 14),\n",
" ('386-0315', 14),\n",
" ('purposes', 14),\n",
" ('annum', 14),\n",
" ('fitness', 14),\n",
" ('w', 14),\n",
" ('acquisitions', 14),\n",
" ('conduct', 14),\n",
" ('2000', 14),\n",
" ('counsel', 14),\n",
" ('dycd', 14),\n",
" ('improvement', 14),\n",
" ('amsterdam', 14),\n",
" ('dispositions', 14),\n",
" ('process', 14),\n",
" ('335', 14),\n",
" ('activities', 14),\n",
" ('8th', 14),\n",
" ('internal', 14),\n",
" ('modify', 14),\n",
" ('consulting', 14),\n",
" ('together', 14),\n",
" ('212-788-3071', 14),\n",
" ('contrary', 14),\n",
" ('noticed', 14),\n",
" ('41', 14),\n",
" ('e-pin', 13),\n",
" ('previously', 13),\n",
" ('chamber', 13),\n",
" ('higher', 13),\n",
" ('2025', 13),\n",
" ('employees', 13),\n",
" ('act', 13),\n",
" ('acquired', 13),\n",
" ('hourly', 13),\n",
" ('our', 13),\n",
" ('exemption', 13),\n",
" ('12/31/15', 13),\n",
" ('senior', 13),\n",
" ('commencement', 13),\n",
" ('accommodation', 13),\n",
" ('text', 13),\n",
" ('ocean', 13),\n",
" ('noise', 13),\n",
" ('hygiene', 13),\n",
" ('air', 13),\n",
" ('enter', 13),\n",
" ('found', 13),\n",
" ('network', 13),\n",
" ('testing', 13),\n",
" ('j', 13),\n",
" ('1:00', 13),\n",
" ('2021', 13),\n",
" ('legalize', 13),\n",
" ('fund', 13),\n",
" ('change', 13),\n",
" ('sessions', 13),\n",
" ('urban', 13),\n",
" ('result', 13),\n",
" ('northern', 13),\n",
" ('arrange', 13),\n",
" ('waiver', 13),\n",
" ('501', 13),\n",
" ('jamaica', 13),\n",
" ('upper', 13),\n",
" ('analysis', 13),\n",
" ('identified', 13),\n",
" ('expansion', 13),\n",
" ('source', 13),\n",
" ('homeless', 13),\n",
" ('customarily', 13),\n",
" ('contractors', 13),\n",
" ('safety', 13),\n",
" ('consumer', 13),\n",
" ('taxation', 13),\n",
" ('implementation', 13),\n",
" ('boroughs', 13),\n",
" ('respect', 13),\n",
" ('mixed', 13),\n",
" ('r6b', 12),\n",
" ('80th', 12),\n",
" ('2203', 12),\n",
" ('10021', 12),\n",
" ('were', 12),\n",
" ('mondays', 12),\n",
" ('180', 12),\n",
" ('www.nyc.gov/landmarks', 12),\n",
" ('said', 12),\n",
" ('indicated', 12),\n",
" ('thereby', 12),\n",
" ('additonal', 12),\n",
" ('councilman', 12),\n",
" ('station', 12),\n",
" ('exceed', 12),\n",
" ('resiliency', 12),\n",
" ('alter', 12),\n",
" ('parole', 12),\n",
" ('roof', 12),\n",
" ('among', 12),\n",
" ('603', 12),\n",
" ('57', 12),\n",
" ('bulletin', 12),\n",
" ('individual', 12),\n",
" ('therefore', 12),\n",
" ('weekly', 12),\n",
" ('pavilion', 12),\n",
" ('revision', 12),\n",
" ('thereafter', 12),\n",
" ('access', 12),\n",
" ('desk', 12),\n",
" ('ordered', 12),\n",
" ('herein', 12),\n",
" ('bi-weekly', 12),\n",
" ('continuation', 12),\n",
" ('agendas', 12),\n",
" ('columbus', 12),\n",
" ('//www.nyc.gov/html/ccrb/html/meeting.html', 12),\n",
" ...]"
]
}
],
"prompt_number": 19
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Let's see some bigrams!\n",
"corpusBigrams = list(ngrams(lowerTokens,2))"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 21
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"corpusBigramFreqs = nltk.FreqDist(corpusBigrams)\n",
"corpusBigramFreqs.most_common()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 26,
"text": [
"[(('of', 'the'), 1267),\n",
" (('new', 'york'), 999),\n",
" (('in', 'the'), 666),\n",
" (('street', ','), 633),\n",
" (('.', 'the'), 491),\n",
" ((',', 'new'), 460),\n",
" (('the', 'proposed'), 454),\n",
" (('agency', ':'), 409),\n",
" ((',', 'and'), 392),\n",
" (('borough', 'of'), 378),\n",
" (('york', ','), 372),\n",
" ((',', '2014'), 363),\n",
" (('contract', ':'), 343),\n",
" (('for', 'the'), 335),\n",
" (('to', 'the'), 334),\n",
" (('york', 'city'), 321),\n",
" (('date', 'of'), 317),\n",
" (('on', 'the'), 316),\n",
" ((',', 'ny'), 314),\n",
" (('will', 'be'), 308),\n",
" (('public', 'hearing'), 280),\n",
" (('substantially', 'similar'), 276),\n",
" (('in', 'substantially'), 272),\n",
" (('personnel', 'in'), 272),\n",
" (('similar', 'titles'), 272),\n",
" (('titles', 'within'), 269),\n",
" (('department', 'of'), 266),\n",
" (('floor', ','), 264),\n",
" (('within', 'agency'), 264),\n",
" (('pursuant', 'to'), 259),\n",
" (('at', 'the'), 252),\n",
" (('for', 'a'), 241),\n",
" (('proposed', 'contract'), 228),\n",
" (('of', 'manhattan'), 226),\n",
" (('the', 'new'), 221),\n",
" (('notice', 'is'), 217),\n",
" (('the', 'following'), 214),\n",
" (('of', 'a'), 213),\n",
" (('is', 'hereby'), 213),\n",
" (('hereby', 'given'), 212),\n",
" (('--', '--'), 210),\n",
" (('manhattan', ','), 208),\n",
" ((',', 'manhattan'), 207),\n",
" ((',', 'at'), 204),\n",
" (('the', 'borough'), 202),\n",
" (('the', 'agency'), 201),\n",
" (('(', 's'), 196),\n",
" (('s', ')'), 196),\n",
" (('office', 'of'), 189),\n",
" (('of', 'services'), 188),\n",
" (('the', 'city'), 187),\n",
" (('10:00', 'a.m.'), 186),\n",
" (('given', 'that'), 186),\n",
" (('1', ','), 185),\n",
" ((',', 'lot'), 182),\n",
" (('intends', 'to'), 181),\n",
" (('by', 'the'), 178),\n",
" ((',', 'on'), 175),\n",
" (('avenue', ','), 170),\n",
" (('of', 'new'), 169),\n",
" (('agency', 'intends'), 169),\n",
" (('term', 'of'), 163),\n",
" (('that', 'the'), 154),\n",
" (('method', 'of'), 153),\n",
" (('end', 'date'), 151),\n",
" ((',', 'borough'), 145),\n",
" (('located', 'at'), 139),\n",
" (('start', 'date'), 139),\n",
" (('to', 'utilize'), 137),\n",
" (('utilize', ':'), 137),\n",
" (('a', 'term'), 136),\n",
" (('included', 'in'), 136),\n",
" (('of', 'personnel'), 136),\n",
" (('headcount', 'of'), 136),\n",
" ((',', 'the'), 134),\n",
" (('sidewalk', 'caf'), 132),\n",
" (('meets', 'in'), 132),\n",
" (('community', 'board'), 131),\n",
" (('(', 'to'), 128),\n",
" (('not', 'included'), 128),\n",
" (('plan', 'and'), 128),\n",
" (('and', 'operate'), 127),\n",
" (('and', 'schedule'), 127),\n",
" ((')', 'not'), 126),\n",
" (('annual', 'contracting'), 126),\n",
" (('contracting', 'plan'), 126),\n",
" (('years', '.'), 126),\n",
" (('.', ')'), 125),\n",
" (('a.m.', ','), 125),\n",
" (('hall', ','), 125),\n",
" (('operate', 'an'), 125),\n",
" ((')', '('), 125),\n",
" (('the', 'mayor'), 125),\n",
" (('fy', '2015'), 124),\n",
" (('at', '10:00'), 124),\n",
" (('maintain', ','), 124),\n",
" (('caf', 'for'), 124),\n",
" (('2015', 'annual'), 124),\n",
" (('the', 'matter'), 122),\n",
" (('unenclosed', 'sidewalk'), 120),\n",
" (('city', 'charter'), 120),\n",
" ((')', ','), 120),\n",
" ((',', 'brooklyn'), 118),\n",
" ((':', 'none'), 118),\n",
" ((',', 'in'), 117),\n",
" ((',', 'for'), 116),\n",
" (('notice', 'of'), 116),\n",
" (('(', '212'), 115),\n",
" (('212', ')'), 115),\n",
" (('30', ','), 114),\n",
" (('continue', 'to'), 112),\n",
" (('an', 'unenclosed'), 112),\n",
" (('matter', 'of'), 111),\n",
" (('to', 'maintain'), 110),\n",
" (('city', 'of'), 110),\n",
" (('reade', 'street'), 109),\n",
" (('22', 'reade'), 109),\n",
" (('to', 'continue'), 108),\n",
" ((',', '22'), 108),\n",
" (('sought', ':'), 108),\n",
" (('the', 'contract'), 107),\n",
" (('and', 'the'), 107),\n",
" (('10007', ','), 106),\n",
" (('of', 'solicitation'), 106),\n",
" (('services', 'sought'), 105),\n",
" (('of', 'four'), 105),\n",
" (('no', '.'), 104),\n",
" (('solicitation', 'the'), 103),\n",
" (('community', 'district'), 103),\n",
" (('four', 'years'), 103),\n",
" (('the', 'public'), 102),\n",
" ((',', '2015'), 102),\n",
" (('manhattan', '('), 101),\n",
" (('each', 'month'), 101),\n",
" (('a', 'public'), 101),\n",
" ((':', 'department'), 101),\n",
" (('description', 'of'), 100),\n",
" (('2014', 'at'), 100),\n",
" ((\"''\", ')'), 99),\n",
" (('services', ','), 97),\n",
" (('square', 'foot'), 97),\n",
" (('the', 'department'), 96),\n",
" (('be', 'held'), 94),\n",
" (('solicitation', '('), 94),\n",
" (('none', 'headcount'), 92),\n",
" ((',', 'zoned'), 91),\n",
" (('2014', ','), 91),\n",
" (('historic', 'district'), 91),\n",
" (('application', 'is'), 90),\n",
" (('of', 'each'), 90),\n",
" (('is', 'to'), 90),\n",
" (('to', 'section'), 90),\n",
" (('a', ')'), 90),\n",
" ((')', 'of'), 89),\n",
" (('certificate', 'of'), 88),\n",
" (('ny', '10007'), 88),\n",
" ((':', '0'), 88),\n",
" ((')', '.'), 88),\n",
" (('.', 'application'), 88),\n",
" ((',', 'inc.'), 88),\n",
" (('(', 'a'), 88),\n",
" (('june', '30'), 88),\n",
" (('of', 'an'), 87),\n",
" (('call', 'of'), 87),\n",
" ((',', 'commencing'), 86),\n",
" (('to', 'be'), 85),\n",
" (('meets', 'at'), 84),\n",
" (('spector', 'hall'), 84),\n",
" (('9th', 'floor'), 84),\n",
" (('of', 'environmental'), 83),\n",
" (('brooklyn', ','), 83),\n",
" (('task', 'order'), 83),\n",
" (('and', 'other'), 82),\n",
" (('to', 'june'), 82),\n",
" (('intent', 'to'), 82),\n",
" (('of', 'appropriateness'), 81),\n",
" (('in', 'spector'), 81),\n",
" (('shall', 'be'), 80),\n",
" (('built', 'in'), 79),\n",
" (('of', 'brooklyn'), 79),\n",
" ((',', 'n.y.'), 77),\n",
" (('between', 'the'), 77),\n",
" ((')', ':'), 77),\n",
" (('board', 'of'), 77),\n",
" (('nature', 'of'), 75),\n",
" (('the', 'call'), 75),\n",
" ((',', '9th'), 74),\n",
" (('the', 'hearing'), 73),\n",
" ((',', 'please'), 71),\n",
" (('the', 'period'), 71),\n",
" (('july', '1'), 71),\n",
" (('held', 'on'), 70),\n",
" ((',', 'llc'), 70),\n",
" (('nan', 'nan'), 70),\n",
" (('from', 'the'), 69),\n",
" ((',', 'a'), 69),\n",
" (('that', 'is'), 69),\n",
" (('-', '$'), 68),\n",
" (('for', 'public'), 68),\n",
" (('.', '('), 67),\n",
" (('5', ')'), 67),\n",
" (('the', '``'), 67),\n",
" ((',', 'block'), 67),\n",
" (('broadway', ','), 67),\n",
" (('p.m.', ','), 66),\n",
" (('appropriateness', 'a'), 66),\n",
" (('of', 'intent'), 65),\n",
" (('of', '$'), 65),\n",
" (('business', 'days'), 65),\n",
" (('the', 'fy'), 64),\n",
" ((':', 'agency'), 64),\n",
" (('.', 'for'), 64),\n",
" (('to', 'new'), 64),\n",
" (('may', 'be'), 64),\n",
" (('to', 'this'), 64),\n",
" (('mayor', 'will'), 63),\n",
" (('the', 'chairman'), 63),\n",
" (('schedule', 'that'), 63),\n",
" (('centre', 'street'), 63),\n",
" (('rector', 'street'), 63),\n",
" (('charter', '312'), 63),\n",
" (('published', 'pursuant'), 63),\n",
" (('schedule', 'notice'), 63),\n",
" (('is', 'published'), 63),\n",
" (('312', '('), 63),\n",
" (('in', 'fy'), 63),\n",
" (('40', 'rector'), 62),\n",
" (('designed', 'by'), 62),\n",
" (('chairman', '.'), 62),\n",
" (('hearing', '.'), 61),\n",
" (('district', '.'), 61),\n",
" (('no', 'later'), 61),\n",
" (('period', 'july'), 61),\n",
" ((',', 'times'), 61),\n",
" (('the', 'lease'), 60),\n",
" (('times', 'and'), 60),\n",
" (('the', 'board'), 60),\n",
" (('commission', 'meets'), 60),\n",
" (('have', 'been'), 60),\n",
" (('children', \"'s\"), 59),\n",
" (('square', 'feet'), 59),\n",
" (('staten', 'island'), 59),\n",
" (('later', 'than'), 59),\n",
" (('scheduled', 'for'), 59),\n",
" ((',', 'as'), 59),\n",
" (('and', 'built'), 59),\n",
" ((',', 'october'), 59),\n",
" ((',', '('), 59),\n",
" ((',', '2nd'), 58),\n",
" ((';', 'and'), 57),\n",
" (('(', 'cc'), 57),\n",
" ((',', 'pursuant'), 57),\n",
" (('building', ','), 57),\n",
" ((',', 'cb'), 57),\n",
" (('that', 'a'), 57),\n",
" (('following', 'matters'), 57),\n",
" (('to', 'issue'), 56),\n",
" (('program', '('), 56),\n",
" (('information', 'technology'), 56),\n",
" (('zoning', 'district'), 56),\n",
" (('conference', 'room'), 55),\n",
" (('a', 'proposed'), 55),\n",
" (('project', '.'), 55),\n",
" ((',', 'november'), 55),\n",
" (('.', 'in'), 54),\n",
" (('days', ','), 54),\n",
" (('(', 'the'), 54),\n",
" (('wednesday', ','), 53),\n",
" (('(', '5'), 53),\n",
" (('2nd', 'floor'), 53),\n",
" (('hearing', 'will'), 53),\n",
" ((',', 'owner'), 52),\n",
" (('feet', 'of'), 52),\n",
" (('received', 'an'), 52),\n",
" ((\"'s\", 'services'), 52),\n",
" (('for', 'children'), 52),\n",
" ((',', 'december'), 52),\n",
" (('with', 'the'), 52),\n",
" (('31', ','), 52),\n",
" (('has', 'received'), 52),\n",
" ((':', 'task'), 52),\n",
" (('manhattan', '.'), 52),\n",
" ((')', 'has'), 52),\n",
" (('(', '$'), 52),\n",
" (('this', 'project'), 51),\n",
" (('in', 'room'), 51),\n",
" (('a', 'site'), 51),\n",
" (('street', 'and'), 51),\n",
" (('ave', 'in'), 51),\n",
" (('and', 'location'), 51),\n",
" (('2', ','), 51),\n",
" (('commencing', 'at'), 51),\n",
" (('prior', 'to'), 51),\n",
" (('municipal', 'building'), 51),\n",
" (('premises', 'affected'), 50),\n",
" (('oer', ')'), 50),\n",
" (('subject', 'application'), 50),\n",
" (('9:30', 'a.m.'), 50),\n",
" (('(', 'oer'), 50),\n",
" (('city', 'office'), 50),\n",
" (('site', 'located'), 50),\n",
" (('.', 'subject'), 50),\n",
" (('main', 'floor'), 50),\n",
" (('on', 'a'), 50),\n",
" (('remediation', '('), 50),\n",
" ((\"'s\", 'office'), 50),\n",
" (('at', '('), 50),\n",
" (('administration', 'for'), 50),\n",
" (('the', 'tenant'), 50),\n",
" ((',', 'main'), 50),\n",
" (('.', 'premises'), 50),\n",
" (('environmental', 'remediation'), 50),\n",
" (('thursday', ','), 49),\n",
" (('before', 'the'), 49),\n",
" (('(', 'vcp'), 49),\n",
" (('be', 'issuing'), 49),\n",
" (('cleanup', 'program'), 49),\n",
" (('site', 'no'), 49),\n",
" (('board', '#'), 49),\n",
" (('order', 'personnel'), 49),\n",
" ((')', 'application'), 49),\n",
" (('assigned', 'to'), 49),\n",
" (('an', 'nyc'), 49),\n",
" (('nyc', 'voluntary'), 49),\n",
" (('application', 'from'), 49),\n",
" (('voluntary', 'cleanup'), 49),\n",
" (('is', 'assigned'), 49),\n",
" (('.', 'site'), 49),\n",
" (('vcp', ')'), 49),\n",
" (('other', 'days'), 48),\n",
" (('as', 'warranted'), 48),\n",
" (('of', 'two'), 48),\n",
" (('york', '.'), 48),\n",
" (('within', 'the'), 48),\n",
" (('location', 'as'), 48),\n",
" ((',', 'municipal'), 48),\n",
" ((\"'s\", 'website'), 48),\n",
" (('five', '('), 48),\n",
" (('warranted', '.'), 48),\n",
" (('month', 'at'), 48),\n",
" (('should', 'contact'), 47),\n",
" (('.', 'community'), 47),\n",
" (('room', ','), 47),\n",
" (('new', 'solicitation'), 47),\n",
" (('at', '9:30'), 47),\n",
" (('manhattan', 'certificate'), 47),\n",
" ((',', 'or'), 47),\n",
" (('issue', 'new'), 47),\n",
" (('following', 'solicitation'), 47),\n",
" (('issuing', 'the'), 47),\n",
" (('of', 'queens'), 47),\n",
" (('york', '10007'), 47),\n",
" (('0', 'agency'), 47),\n",
" (('under', 'the'), 47),\n",
" (('.', 'nan'), 46),\n",
" (('contact', 'the'), 46),\n",
" (('a.m.', 'on'), 46),\n",
" (('n.y.', '10007'), 46),\n",
" (('days', 'prior'), 45),\n",
" ((')', 'the'), 45),\n",
" (('real', 'property'), 45),\n",
" (('on', 'thursday'), 45),\n",
" (('an', 'application'), 45),\n",
" (('project', 'manager'), 44),\n",
" (('unless', 'otherwise'), 44),\n",
" (('nan', 'notice'), 44),\n",
" ((',', 'including'), 44),\n",
" (('3', ')'), 44),\n",
" (('floor', 'of'), 44),\n",
" (('meeting', '.'), 43),\n",
" (('.', 'notice'), 43),\n",
" ((',', 'bronx'), 43),\n",
" (('please', 'visit'), 43),\n",
" (('(', 'preliminary'), 43),\n",
" ((',', 'between'), 43),\n",
" ((',', 'room'), 43),\n",
" (('and', 'a'), 43),\n",
" (('.', 'please'), 42),\n",
" (('held', 'at'), 42),\n",
" (('2', ')'), 42),\n",
" (('of', 'information'), 42),\n",
" (('information', ','), 42),\n",
" ((')', 'years'), 42),\n",
" (('mayor', \"'s\"), 42),\n",
" (('the', 'meeting'), 41),\n",
" (('the', 'office'), 41),\n",
" (('15', ','), 41),\n",
" (('at', '40'), 41),\n",
" (('special', 'permit'), 41),\n",
" (('application', 'submitted'), 41),\n",
" (('city', 'department'), 41),\n",
" ((':', '$'), 41),\n",
" (('submitted', 'by'), 41),\n",
" (('hearing', 'on'), 41),\n",
" ((',', 'queens'), 41),\n",
" (('proposed', 'renewed/extended'), 40),\n",
" (('the', 'date'), 40),\n",
" (('hearing', 'by'), 40),\n",
" (('public', 'notice'), 40),\n",
" (('renewed/extended', 'contract'), 40),\n",
" (('installation', 'of'), 40),\n",
" (('office', ','), 40),\n",
" (('brooklyn', '.'), 40),\n",
" (('hearing', ','), 40),\n",
" (('fort', 'hamilton'), 40),\n",
" (('boulevard', ','), 40),\n",
" (('(', 'block'), 39),\n",
" (('(', '``'), 39),\n",
" (('city', 'planning'), 39),\n",
" ((',', 'no'), 39),\n",
" (('the', 'project'), 39),\n",
" (('negotiated', 'acquisition'), 39),\n",
" (('final', ')'), 39),\n",
" (('construction', 'of'), 39),\n",
" (('been', 'scheduled'), 39),\n",
" (('will', 'hold'), 38),\n",
" (('the', 'commission'), 38),\n",
" (('of', 'citywide'), 38),\n",
" (('sign', 'language'), 38),\n",
" (('6', ','), 38),\n",
" (('manager', ','), 38),\n",
" (('.', 'any'), 37),\n",
" (('8', ','), 37),\n",
" (('has', 'been'), 37),\n",
" (('center', ','), 37),\n",
" (('.', 'board'), 37),\n",
" ((':', 'borough'), 37),\n",
" (('rules', '.'), 37),\n",
" ((')', 'to'), 37),\n",
" (('the', 'first'), 37),\n",
" (('city', 'hall'), 37),\n",
" (('on', 'wednesday'), 37),\n",
" (('a', 'line'), 37),\n",
" (('12th', 'floor'), 37),\n",
" ((')', 'business'), 36),\n",
" (('month', ','), 36),\n",
" (('william', 'street'), 36),\n",
" (('preservation', 'commission'), 36),\n",
" (('located', 'on'), 36),\n",
" (('planning', 'commission'), 36),\n",
" (('proposed', 'lease'), 36),\n",
" (('the', 'third'), 36),\n",
" (('of', 'public'), 36),\n",
" (('nycha', \"'s\"), 36),\n",
" (('available', 'for'), 36),\n",
" (('wednesday', 'of'), 36),\n",
" (('by', 'community'), 36),\n",
" (('bronx', ','), 36),\n",
" (('matters', 'have'), 36),\n",
" (('monthly', 'on'), 36),\n",
" (('board', 'meets'), 36),\n",
" (('2014', '.'), 36),\n",
" (('commencing', '10:00'), 36),\n",
" ((',', 'office'), 35),\n",
" ((',', 'with'), 35),\n",
" (('http', ':'), 35),\n",
" (('services', 'for'), 35),\n",
" (('environmental', 'protection'), 35),\n",
" (('requesting', 'sign'), 35),\n",
" (('accordance', 'with'), 35),\n",
" (('hamilton', 'parkway'), 35),\n",
" (('board', ':'), 35),\n",
" (('language', 'interpreters'), 35),\n",
" (('sought', 'to'), 35),\n",
" (('landmarks', 'preservation'), 35),\n",
" (('1', 'centre'), 35),\n",
" (('in', 'accordance'), 35),\n",
" (('individuals', 'requesting'), 35),\n",
" (('interpreters', 'should'), 35),\n",
" (('to', 'allow'), 35),\n",
" (('.', 'a'), 34),\n",
" ((',', '2018'), 34),\n",
" (('street', 'in'), 34),\n",
" ((',', 'assistant'), 34),\n",
" (('10007', '.'), 34),\n",
" (('to', 'extend'), 34),\n",
" (('the', 'procurement'), 34),\n",
" (('public', 'inspection'), 34),\n",
" (('amount', 'of'), 34),\n",
" (('llc', ','), 33),\n",
" ((':', 'the'), 33),\n",
" (('building', 'designed'), 33),\n",
" (('procurement', 'policy'), 33),\n",
" (('the', 'administration'), 33),\n",
" (('the', 'existing'), 33),\n",
" (('an', 'existing'), 33),\n",
" (('website', 'at'), 33),\n",
" (('policy', 'board'), 33),\n",
" ((')', 'and'), 33),\n",
" (('for', 'additional'), 33),\n",
" (('to', 'construct'), 33),\n",
" (('avenue', 'and'), 33),\n",
" (('vendor', ':'), 33),\n",
" (('owner', '.'), 33),\n",
" ((',', 'maintain'), 33),\n",
" (('performed', 'under'), 32),\n",
" (('city', 'and'), 32),\n",
" (('in', 'relation'), 32),\n",
" (('modifications', 'sought'), 32),\n",
" (('for', 'an'), 32),\n",
" (('architect', ','), 32),\n",
" (('services', 'performed'), 32),\n",
" (('(', '2'), 32),\n",
" (('reason', '('), 32),\n",
" (('contract', '('), 32),\n",
" (('3', ','), 32),\n",
" (('new', 'start'), 32),\n",
" (('copy', 'of'), 32),\n",
" (('new', 'end'), 32),\n",
" (('and', 'to'), 32),\n",
" (('services', ':'), 32),\n",
" (('revocable', 'consent'), 32),\n",
" (('request', 'for'), 31),\n",
" ((':', 'in'), 31),\n",
" (('to', 'provide'), 31),\n",
" (('hours', 'of'), 31),\n",
" (('a', 'new'), 31),\n",
" (('the', 'hours'), 31),\n",
" (('tuesday', ','), 31),\n",
" (('public', 'hearings'), 31),\n",
" (('contract', 'between'), 31),\n",
" (('the', 'application'), 31),\n",
" (('the', 'nature'), 31),\n",
" ((',', 'of'), 31),\n",
" (('portion', 'of'), 31),\n",
" (('the', 'bonds'), 31),\n",
" (('relation', 'to'), 31),\n",
" ((')', 'for'), 31),\n",
" (('1', ')'), 31),\n",
" (('following', ':'), 31),\n",
" ((',', 'public'), 31),\n",
" (('north', ','), 31),\n",
" (('project', 'site'), 31),\n",
" (('state', 'of'), 31),\n",
" (('room', 'on'), 30),\n",
" (('in', 'order'), 30),\n",
" (('citywide', 'administrative'), 30),\n",
" (('design', 'and'), 30),\n",
" (('board', 'rules'), 30),\n",
" (('order', 'to'), 30),\n",
" (('parcel', 'of'), 30),\n",
" (('5', ','), 30),\n",
" ((',', '2016'), 30),\n",
" (('of', 'land'), 29),\n",
" (('the', 'general'), 29),\n",
" (('7', ')'), 29),\n",
" (('the', 'applicant'), 29),\n",
" (('10', ','), 29),\n",
" (('housing', 'authority'), 29),\n",
" (('253', 'broadway'), 29),\n",
" (('st', 'in'), 29),\n",
" (('2014', 'to'), 29),\n",
" (('city', ','), 29),\n",
" ((':', 'installation'), 29),\n",
" ((',', 'unless'), 29),\n",
" (('construct', 'a'), 29),\n",
" (('technology', '&'), 29),\n",
" (('the', 'corporation'), 29),\n",
" (('and', 'state'), 28),\n",
" (('of', 'health'), 28),\n",
" ((',', 'will'), 28),\n",
" (('22', ','), 28),\n",
" (('b', ')'), 28),\n",
" (('maintenance', 'of'), 28),\n",
" (('(', '3'), 28),\n",
" (('corner', 'of'), 28),\n",
" (('island', ','), 28),\n",
" (('&', 'telecommunications'), 28),\n",
" (('than', 'five'), 28),\n",
" (('with', 'a'), 28),\n",
" (('150', 'william'), 28),\n",
" ((',', 'from'), 28),\n",
" (('human', 'resources'), 28),\n",
" (('20', ','), 28),\n",
" ((',', 'to'), 28),\n",
" (('the', 'term'), 27),\n",
" (('queens', '.'), 27),\n",
" (('be', 'determined'), 27),\n",
" (('road', ','), 27),\n",
" (('additional', 'information'), 27),\n",
" (('services', '.'), 27),\n",
" (('resources', 'administration'), 27),\n",
" ((',', 'located'), 27),\n",
" (('water', 'street'), 27),\n",
" ((',', 'staten'), 27),\n",
" (('proposed', 'revocable'), 27),\n",
" (('dollars', '('), 27),\n",
" (('19', ','), 27),\n",
" (('foot', 'parcel'), 27),\n",
" (('17', ','), 27),\n",
" (('york', '('), 27),\n",
" (('please', 'contact'), 27),\n",
" (('selected', 'by'), 27),\n",
" ((',', '253'), 27),\n",
" (('inc.', ','), 27),\n",
" (('original', 'contract'), 27),\n",
" (('through', 'december'), 27),\n",
" (('the', 'schedule'), 27),\n",
" (('the', 'landlord'), 27),\n",
" (('use', 'as'), 26),\n",
" (('administrative', 'services'), 26),\n",
" (('6th', 'floor'), 26),\n",
" (('be', 'posted'), 26),\n",
" (('must', 'be'), 26),\n",
" (('a', 'copy'), 26),\n",
" (('of', 'parks'), 26),\n",
" (('foot', ')'), 26),\n",
" (('december', '31'), 26),\n",
" (('commission', '.'), 26),\n",
" (('of', 'original'), 26),\n",
" (('in', 'a'), 26),\n",
" (('of', 'this'), 26),\n",
" (('hearing', 'room'), 26),\n",
" (('can', 'be'), 26),\n",
" (('extension', 'new'), 26),\n",
" (('written', 'comments'), 26),\n",
" (('(', 'b'), 26),\n",
" (('the', 'bronx'), 26),\n",
" (('the', 'draft'), 26),\n",
" (('llc', 'for'), 26),\n",
" (('lease', 'may'), 26),\n",
" (('as', 'the'), 26),\n",
" (('on', 'tuesday'), 26),\n",
" ((')', 'in'), 26),\n",
" (('-', 'in'), 26),\n",
" (('period', 'of'), 26),\n",
" (('bounded', 'by'), 26),\n",
" (('the', 'operation'), 26),\n",
" (('to', 'sections'), 25),\n",
" (('21', ','), 25),\n",
" (('to', 'speak'), 25),\n",
" (('the', 'nyc'), 25),\n",
" (('%', 'of'), 25),\n",
" (('district', '2'), 25),\n",
" (('charter', ','), 25),\n",
" (('would', 'be'), 25),\n",
" (('brooklyn', 'certificate'), 25),\n",
" (('limited', 'to'), 25),\n",
" (('18', ','), 25),\n",
" (('9', ','), 25),\n",
" (('place', ','), 25),\n",
" (('years', ','), 25),\n",
" (('as', 'a'), 25),\n",
" (('inspection', 'at'), 25),\n",
" (('related', 'to'), 25),\n",
" (('parkway', ','), 25),\n",
" (('the', 'commissioner'), 25),\n",
" ((',', '2019'), 25),\n",
" ((':', 'to'), 25),\n",
" (('the', 'construction'), 25),\n",
" ((',', '100'), 25),\n",
" (('competitive', 'sealed'), 25),\n",
" (('25', ','), 25),\n",
" (('ny', '.'), 25),\n",
" (('written', 'notice'), 25),\n",
" (('permit', '('), 25),\n",
" (('housing', 'preservation'), 25),\n",
" (('preliminary', 'and'), 24),\n",
" (('education', 'meets'), 24),\n",
" ((':', 'ddc'), 24),\n",
" (('7', ','), 24),\n",
" (('monday', 'in'), 24),\n",
" (('monday', ','), 24),\n",
" (('charter', 'for'), 24),\n",
" (('church', 'street'), 24),\n",
" (('2015', '.'), 24),\n",
" (('bounded', 'on'), 24),\n",
" (('held', 'in'), 24),\n",
" (('and', 'recreation'), 24),\n",
" (('annual', 'meeting'), 24),\n",
" (('long', 'island'), 24),\n",
" (('a', 'month'), 24),\n",
" (('means', 'of'), 24),\n",
" (('int', '.'), 24),\n",
" (('at', '1:30'), 24),\n",
" ((',', 'monthly'), 24),\n",
" (('wednesdays', ','), 24),\n",
" (('on', 'wednesdays'), 24),\n",
" (('fms', 'contract'), 24),\n",
" (('.', 'int'), 24),\n",
" (('and', 'final'), 24),\n",
" (('on', 'fourth'), 24),\n",
" (('ny', '10006'), 24),\n",
" (('a.m.', 'board'), 24),\n",
" (('1:30', 'p.m.'), 24),\n",
" ((',', '1'), 24),\n",
" (('of', 'housing'), 24),\n",
" (('ny', '10004'), 24),\n",
" (('of', 'transportation'), 24),\n",
" (('schedule', ','), 24),\n",
" (('million', 'dollars'), 24),\n",
" (('end', 'of'), 24),\n",
" (('100', 'church'), 24),\n",
" (('sections', '197-c'), 24),\n",
" (('meeting', 'is'), 24),\n",
" (('fourth', 'monday'), 24),\n",
" (('parks', 'and'), 24),\n",
" (('reconstruction', 'of'), 24),\n",
" (('of', 'contract'), 24),\n",
" (('telecommunications', 'description'), 24),\n",
" (('on', 'tuesdays'), 24),\n",
" (('building', '.'), 24),\n",
" (('a.m.', 'and'), 23),\n",
" (('to', 'renew'), 23),\n",
" (('is', 'a'), 23),\n",
" (('zoning', 'resolution'), 23),\n",
" (('(', 'ii'), 23),\n",
" (('building', 'located'), 23),\n",
" (('been', 'selected'), 23),\n",
" (('at', '100'), 23),\n",
" ((')', 'a'), 23),\n",
" (('island', 'city'), 23),\n",
" (('14', ','), 23),\n",
" (('queens', ','), 23),\n",
" (('197-c', 'and'), 23),\n",
" (('district', '1'), 23),\n",
" (('should', 'call'), 23),\n",
" (('of', 'city'), 23),\n",
" (('provision', 'of'), 23),\n",
" (('two', 'years'), 23),\n",
" (('11', ','), 23),\n",
" (('ii', ')'), 23),\n",
" (('design', 'commission'), 23),\n",
" (('hold', 'a'), 23),\n",
" (('and', 'construction'), 23),\n",
" (('code', 'of'), 23),\n",
" ((',', 'east'), 23),\n",
" (('.', 'start'), 23),\n",
" (('copies', 'of'), 22),\n",
" ((',', '12th'), 22),\n",
" (('at', '6:00'), 22),\n",
" (('contract', 'is'), 22),\n",
" (('(', 'c'), 22),\n",
" ((',', 'lots'), 22),\n",
" (('to', 'replace'), 22),\n",
" (('-', 'block'), 22),\n",
" (('meeting', 'on'), 22),\n",
" (('up', 'to'), 22),\n",
" (('the', 'end'), 22),\n",
" (('.', 'if'), 22),\n",
" (('unit', ','), 22),\n",
" (('division', 'of'), 22),\n",
" (('tdd', 'users'), 22),\n",
" ((',', '150'), 22),\n",
" (('pier55', ','), 22),\n",
" (('none', 'reason'), 22),\n",
" (('the', 'zoning'), 22),\n",
" (('28', ','), 22),\n",
" (('the', 'building'), 22),\n",
" (('design', 'services'), 22),\n",
" ((',', '10:00'), 22),\n",
" (('28th', 'street'), 22),\n",
" (('law', ','), 22),\n",
" (('29', ','), 22),\n",
" (('the', 'next'), 22),\n",
" (('zoned', 'r6'), 22),\n",
" ((',', 'city'), 22),\n",
" (('lot', '1'), 22),\n",
" (('users', 'should'), 22),\n",
" (('street', '.'), 22),\n",
" (('(', '7'), 22),\n",
" (('and', 'development'), 22),\n",
" (('extended', 'contract'), 22),\n",
" (('a', 'portion'), 22),\n",
" (('adjacent', 'to'), 22),\n",
" (('issuance', 'of'), 22),\n",
" (('.', 'to'), 22),\n",
" (('r6', 'community'), 22),\n",
" (('proposed', 'extended'), 22),\n",
" (('floor', 'conference'), 22),\n",
" ((':', 'amendment'), 22),\n",
" (('10004', ','), 22),\n",
" (('should', 'be'), 22),\n",
" (('the', 'provision'), 21),\n",
" (('a.m', '.'), 21),\n",
" (('on', 'nycha'), 21),\n",
" (('amendment', 'extension'), 21),\n",
" (('tenant', ','), 21),\n",
" (('operation', 'of'), 21),\n",
" (('the', 'issuance'), 21),\n",
" (('the', 'state'), 21),\n",
" ((',', '2024'), 21),\n",
" (('2014', 'through'), 21),\n",
" (('listed', 'below'), 21),\n",
" (('land', 'located'), 21),\n",
" (('c', ')'), 21),\n",
" ((')', 'dpr'), 21),\n",
" (('788-7490', ','), 21),\n",
" (('at', 'a'), 21),\n",
" (('16', ','), 21),\n",
" ((')', '788-7490'), 21),\n",
" (('a', 'reasonable'), 21),\n",
" (('public', 'meeting'), 21),\n",
" (('and', 'concession'), 21),\n",
" (('by', 'a'), 21),\n",
" (('17th', 'floor'), 21),\n",
" (('january', '1'), 21),\n",
" (('option', 'to'), 21),\n",
" (('website', 'or'), 21),\n",
" (('the', 'landmarks'), 21),\n",
" (('rear', 'yard'), 21),\n",
" (('hearings', 'unit'), 21),\n",
" (('proposed', 'contractor'), 21),\n",
" (('2014', 'special'), 21),\n",
" (('principal', 'amount'), 21),\n",
" (('seven', '('), 21),\n",
" (('board', 'meeting'), 21),\n",
" (('below', '.'), 21),\n",
" (('services', 'personnel'), 21),\n",
" (('management', ','), 21),\n",
" (('line', 'of'), 21),\n",
" (('to', 'renew/extend'), 20),\n",
" (('park', ','), 20),\n",
" (('is', 'available'), 20),\n",
" (('at', 'city'), 20),\n",
" (('proceeds', 'of'), 20),\n",
" (('201', 'of'), 20),\n",
" (('with', 'section'), 20),\n",
" ((',', '6th'), 20),\n",
" (('the', 'second'), 20),\n",
" (('of', 'east'), 20),\n",
" (('42-09', '28th'), 20),\n",
" ((',', '2017'), 20),\n",
" (('zoning', 'map'), 20),\n",
" (('this', 'contract'), 20),\n",
" (('be', 'used'), 20),\n",
" (('street', '('), 20),\n",
" (('renew/extend', 'the'), 20),\n",
" (('rentable', 'square'), 20),\n",
" ((',', 'which'), 20),\n",
" (('of', 'probation'), 20),\n",
" (('per', 'square'), 20),\n",
" (('23', ','), 20),\n",
" (('preservation', 'and'), 20),\n",
" (('amendment', 'to'), 20),\n",
" (('borough', 'president'), 20),\n",
" (('used', 'to'), 20),\n",
" (('from', 'december'), 20),\n",
" (('2015', 'at'), 20),\n",
" (('development', 'corporation'), 20),\n",
" (('than', 'seven'), 19),\n",
" (('into', 'the'), 19),\n",
" (('.', 'individuals'), 19),\n",
" (('a.m.', 'in'), 19),\n",
" (('to', 'lot'), 19),\n",
" (('renewal/extension', 'the'), 19),\n",
" (('verizon', 'relay'), 19),\n",
" (('(', 'e'), 19),\n",
" ((',', 'long'), 19),\n",
" (('hudson', 'river'), 19),\n",
" (('of', 'renewal/extension'), 19),\n",
" (('economic', 'development'), 19),\n",
" (('lease', 'for'), 19),\n",
" (('engineer', ','), 19),\n",
" (('.', 'tdd'), 19),\n",
" (('250', 'broadway'), 19),\n",
" (('contract', 'services'), 19),\n",
" (('or', 'at'), 19),\n",
" (('13', ','), 19),\n",
" (('of', 'approximately'), 19),\n",
" (('note', ':'), 19),\n",
" (('and', '('), 19),\n",
" (('two', 'million'), 19),\n",
" (('by', 'means'), 19),\n",
" (('draft', 'contract'), 19),\n",
" (('revival', 'style'), 19),\n",
" (('2,000,000', ')'), 19),\n",
" (('pm', '.'), 19),\n",
" (('preliminary', ')'), 19),\n",
" (('and', 'maintenance'), 19),\n",
" (('$', '2,000,000'), 19),\n",
" (('call', 'verizon'), 19),\n",
" (('and', '201'), 19),\n",
" (('also', 'be'), 19),\n",
" (('notice', '.'), 19),\n",
" (('to', ','), 19),\n",
" (('floor', 'area'), 19),\n",
" (('to', 'a'), 19),\n",
" (('in', 'writing'), 19),\n",
" (('2015', 'to'), 19),\n",
" (('e', ')'), 19),\n",
" (('acquisition', 'extension'), 18),\n",
" ((',', 'flushing'), 18),\n",
" (('river', 'park'), 18),\n",
" (('brooklyn', '('), 18),\n",
" (('recreation', 'nature'), 18),\n",
" (('proposed', 'local'), 18),\n",
" (('side', 'of'), 18),\n",
" (('24', ','), 18),\n",
" (('0', 'notice'), 18),\n",
" (('hearing', 'or'), 18),\n",
" (('4', ','), 18),\n",
" (('third', 'floor'), 18),\n",
" (('and', 'on'), 18),\n",
" (('owner', ';'), 18),\n",
" (('local', 'laws'), 18),\n",
" (('the', 'extent'), 18),\n",
" (('physical', 'culture'), 18),\n",
" (('of', '('), 18),\n",
" (('718', ')'), 18),\n",
" (('of', 'procurement'), 18),\n",
" (('time', 'equivalent'), 18),\n",
" (('contract', '.'), 18),\n",
" (('review', 'and'), 18),\n",
" ((')', 'at'), 18),\n",
" (('(', '718'), 18),\n",
" (('full', 'time'), 18),\n",
" (('the', 'trust'), 18),\n",
" (('be', 'from'), 18),\n",
" (('iii', ')'), 18),\n",
" (('contract', 'for'), 18),\n",
" (('technology', 'and'), 18),\n",
" (('bsa', '#'), 18),\n",
" (('2015', ','), 18),\n",
" (('city', 'housing'), 18),\n",
" (('a', 'real'), 18),\n",
" (('landscape', 'architect'), 18),\n",
" (('prior', 'written'), 18),\n",
" (('at', '10:30'), 18),\n",
" (('services', 'to'), 18),\n",
" (('part', 'of'), 18),\n",
" (('on', 'december'), 18),\n",
" (('(', 'iii'), 18),\n",
" (('11101', ','), 18),\n",
" ((',', 'community'), 18),\n",
" (('to', ':'), 18),\n",
" (('the', 'south'), 18),\n",
" ((':', 'competitive'), 18),\n",
" (('2:30', 'p.m.'), 18),\n",
" (('10:30', 'a.m.'), 18),\n",
" (('floor', 'new'), 18),\n",
" (('12', ','), 17),\n",
" ((',', '42-09'), 17),\n",
" ((',', 'lessee'), 17),\n",
" ((',', '2020'), 17),\n",
" (('installments', 'at'), 17),\n",
" (('board', 'room'), 17),\n",
" (('and', 'use'), 17),\n",
" ((':', 'construction'), 17),\n",
" (('and', 'telecommunications'), 17),\n",
" ((')', 'floor'), 17),\n",
" (('(', '1'), 17),\n",
" (('calendar', 'year'), 17),\n",
" (('plans', 'and'), 17),\n",
" (('follows', ':'), 17),\n",
" (('of', 'gross'), 17),\n",
" (('term', 'shall'), 17),\n",
" (('franchise', 'and'), 17),\n",
" ((',', '33'), 17),\n",
" ((':', '1/1/15'), 17),\n",
" ((',', 'citywide'), 17),\n",
" (('flushing', ','), 17),\n",
" (('civil', 'engineer'), 17),\n",
" (('at', 'http'), 17),\n",
" (('culture', 'establishment'), 17),\n",
" (('obtained', 'at'), 17),\n",
" (('exempt', 'from'), 17),\n",
" (('as', 'follows'), 17),\n",
" (('not-for-profit', 'corporation'), 17),\n",
" (('extend', 'the'), 17),\n",
" ((')', 'designation'), 17),\n",
" (('one', 'centre'), 17),\n",
" (('york', 'and'), 17),\n",
" (('of', 'education'), 17),\n",
" (('east', 'side'), 17),\n",
" (('original', 'principal'), 17),\n",
" ((',', 'tuesday'), 17),\n",
" ((')', 'is'), 17),\n",
" (('payable', 'in'), 17),\n",
" (('in', 'addition'), 17),\n",
" (('p.m', '.'), 17),\n",
" (('the', 'school'), 17),\n",
" ((';', '('), 17),\n",
" (('#', ':'), 17),\n",
" (('this', 'notice'), 17),\n",
" ((':', 'individuals'), 17),\n",
" (('friday', ','), 17),\n",
" (('review', 'committee'), 17),\n",
" (('3', 'of'), 17),\n",
" (('concept', 'paper'), 17),\n",
" ((',', 'associate'), 17),\n",
" (('monthly', 'installments'), 17),\n",
" (('the', 'west'), 17),\n",
" (('space', 'on'), 17),\n",
" (('lessee', '.'), 17),\n",
" (('services', 'of'), 17),\n",
" (('.', 'project'), 17),\n",
" (('street', 'to'), 17),\n",
" (('description', ':'), 17),\n",
" (('to', 'install'), 17),\n",
" (('month', '.'), 17),\n",
" (('years', 'from'), 17),\n",
" (('bonds', '.'), 17),\n",
" (('concession', 'review'), 17),\n",
" (('gross', 'receipts'), 17),\n",
" ((',', 'january'), 17),\n",
" (('brooklyn', 'community'), 16),\n",
" (('days', 'from'), 16),\n",
" (('as', 'tenant'), 16),\n",
" (('for', 'each'), 16),\n",
" ...]"
]
}
],
"prompt_number": 26
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Let's see tri-grams!\n",
"corpusTrigrams = list(ngrams(lowerTokens,3))\n",
"corpusTrigramFreqs = nltk.FreqDist(corpusTrigrams)\n",
"corpusTrigramFreqs.most_common()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 27,
"text": [
"[((',', 'new', 'york'), 457),\n",
" (('new', 'york', ','), 372),\n",
" (('new', 'york', 'city'), 321),\n",
" (('of', 'the', 'proposed'), 307),\n",
" (('date', 'of', 'the'), 274),\n",
" (('in', 'substantially', 'similar'), 272),\n",
" (('personnel', 'in', 'substantially'), 272),\n",
" (('substantially', 'similar', 'titles'), 272),\n",
" (('similar', 'titles', 'within'), 269),\n",
" (('within', 'agency', ':'), 264),\n",
" (('titles', 'within', 'agency'), 264),\n",
" (('borough', 'of', 'manhattan'), 223),\n",
" (('notice', 'is', 'hereby'), 213),\n",
" (('is', 'hereby', 'given'), 212),\n",
" (('the', 'new', 'york'), 206),\n",
" (('--', '--', '--'), 204),\n",
" (('the', 'proposed', 'contract'), 201),\n",
" (('(', 's', ')'), 196),\n",
" (('proposed', 'contract', ':'), 189),\n",
" (('in', 'the', 'borough'), 187),\n",
" (('the', 'borough', 'of'), 187),\n",
" (('hereby', 'given', 'that'), 185),\n",
" (('york', ',', 'ny'), 173),\n",
" (('agency', 'intends', 'to'), 169),\n",
" (('the', 'agency', 'intends'), 166),\n",
" (('of', 'new', 'york'), 165),\n",
" (('end', 'date', 'of'), 145),\n",
" ((',', 'borough', 'of'), 144),\n",
" (('to', 'utilize', ':'), 137),\n",
" (('intends', 'to', 'utilize'), 137),\n",
" (('a', 'term', 'of'), 136),\n",
" (('headcount', 'of', 'personnel'), 136),\n",
" (('of', 'personnel', 'in'), 136),\n",
" (('for', 'a', 'term'), 136),\n",
" (('start', 'date', 'of'), 133),\n",
" (('not', 'included', 'in'), 128),\n",
" (('annual', 'contracting', 'plan'), 126),\n",
" (('contracting', 'plan', 'and'), 126),\n",
" (('s', ')', 'not'), 126),\n",
" (('plan', 'and', 'schedule'), 126),\n",
" ((')', 'not', 'included'), 126),\n",
" (('and', 'operate', 'an'), 125),\n",
" ((',', 'and', 'operate'), 124),\n",
" (('caf', 'for', 'a'), 124),\n",
" (('fy', '2015', 'annual'), 124),\n",
" (('2015', 'annual', 'contracting'), 124),\n",
" (('maintain', ',', 'and'), 124),\n",
" (('sidewalk', 'caf', 'for'), 124),\n",
" (('years', '.', ')'), 123),\n",
" (('unenclosed', 'sidewalk', 'caf'), 120),\n",
" (('at', '10:00', 'a.m.'), 120),\n",
" ((',', 'manhattan', ','), 120),\n",
" (('given', 'that', 'the'), 116),\n",
" (('york', 'city', 'charter'), 116),\n",
" (('(', '212', ')'), 115),\n",
" (('in', 'the', 'matter'), 114),\n",
" (('operate', 'an', 'unenclosed'), 112),\n",
" (('an', 'unenclosed', 'sidewalk'), 112),\n",
" (('the', 'matter', 'of'), 110),\n",
" (('22', 'reade', 'street'), 109),\n",
" (('reade', 'street', ','), 109),\n",
" (('city', 'of', 'new'), 109),\n",
" (('to', 'continue', 'to'), 107),\n",
" (('method', 'of', 'solicitation'), 106),\n",
" (('the', 'city', 'of'), 106),\n",
" (('services', 'sought', ':'), 105),\n",
" (('of', 'services', 'sought'), 104),\n",
" (('of', 'solicitation', 'the'), 103),\n",
" (('solicitation', 'the', 'agency'), 103),\n",
" (('(', 'to', 'continue'), 103),\n",
" (('term', 'of', 'four'), 102),\n",
" (('of', 'four', 'years'), 102),\n",
" (('four', 'years', '.'), 101),\n",
" ((':', 'department', 'of'), 101),\n",
" (('agency', ':', 'department'), 101),\n",
" ((',', '22', 'reade'), 100),\n",
" ((',', '2014', 'at'), 100),\n",
" (('of', 'manhattan', '('), 100),\n",
" (('manhattan', '(', 'to'), 99),\n",
" (('to', 'maintain', ','), 98),\n",
" (('floor', ',', 'new'), 97),\n",
" (('solicitation', '(', 's'), 94),\n",
" (('continue', 'to', 'maintain'), 94),\n",
" (('agency', ':', 'none'), 94),\n",
" (('description', 'of', 'services'), 94),\n",
" (('none', 'headcount', 'of'), 92),\n",
" ((':', 'none', 'headcount'), 92),\n",
" (('pursuant', 'to', 'section'), 90),\n",
" (('the', 'department', 'of'), 89),\n",
" ((',', '2014', ','), 88),\n",
" (('june', '30', ','), 88),\n",
" (('(', 'a', ')'), 88),\n",
" ((',', 'ny', '10007'), 88),\n",
" (('call', 'of', 'the'), 87),\n",
" (('will', 'be', 'held'), 87),\n",
" (('.', 'application', 'is'), 87),\n",
" (('application', 'is', 'to'), 86),\n",
" (('10:00', 'a.m.', ','), 86),\n",
" (('agency', ':', '0'), 85),\n",
" (('a', 'public', 'hearing'), 85),\n",
" (('of', 'the', 'new'), 85),\n",
" (('spector', 'hall', ','), 84),\n",
" (('hall', ',', '22'), 82),\n",
" (('to', 'june', '30'), 81),\n",
" (('certificate', 'of', 'appropriateness'), 81),\n",
" (('in', 'spector', 'hall'), 81),\n",
" (('of', 'the', 'city'), 81),\n",
" (('of', 'each', 'month'), 77),\n",
" (('street', ',', 'new'), 76),\n",
" (('.', 'the', 'proposed'), 75),\n",
" (('at', 'the', 'call'), 75),\n",
" (('the', 'call', 'of'), 75),\n",
" (('nature', 'of', 'services'), 73),\n",
" (('of', 'manhattan', ','), 73),\n",
" (('borough', 'of', 'brooklyn'), 73),\n",
" ((',', '9th', 'floor'), 72),\n",
" (('july', '1', ','), 71),\n",
" (('for', 'the', 'period'), 68),\n",
" (('of', 'appropriateness', 'a'), 66),\n",
" (('that', 'the', 'mayor'), 65),\n",
" (('on', 'the', 'following'), 65),\n",
" (('of', 'intent', 'to'), 65),\n",
" (('notice', 'of', 'intent'), 65),\n",
" (('included', 'in', 'the'), 65),\n",
" (('to', 'new', 'york'), 64),\n",
" ((',', 'brooklyn', ','), 64),\n",
" (('the', 'contract', ':'), 64),\n",
" (('312', '(', 'a'), 63),\n",
" (('pursuant', 'to', 'new'), 63),\n",
" (('published', 'pursuant', 'to'), 63),\n",
" ((')', ':', 'agency'), 63),\n",
" (('of', 'the', 'chairman'), 63),\n",
" (('the', 'mayor', 'will'), 63),\n",
" (('that', 'is', 'published'), 63),\n",
" ((':', 'agency', ':'), 63),\n",
" (('schedule', 'notice', 'is'), 63),\n",
" (('mayor', 'will', 'be'), 63),\n",
" (('schedule', 'that', 'is'), 63),\n",
" (('charter', '312', '('), 63),\n",
" (('york', ',', 'n.y.'), 63),\n",
" (('and', 'schedule', 'that'), 63),\n",
" (('in', 'the', 'fy'), 63),\n",
" (('is', 'published', 'pursuant'), 63),\n",
" (('city', 'charter', '312'), 63),\n",
" (('and', 'schedule', 'notice'), 63),\n",
" (('included', 'in', 'fy'), 63),\n",
" (('a', ')', ':'), 63),\n",
" (('the', 'fy', '2015'), 62),\n",
" (('40', 'rector', 'street'), 62),\n",
" (('in', 'fy', '2015'), 62),\n",
" (('the', 'chairman', '.'), 62),\n",
" (('the', 'period', 'july'), 61),\n",
" ((')', 'of', 'the'), 61),\n",
" (('period', 'july', '1'), 61),\n",
" ((',', 'times', 'and'), 60),\n",
" (('meets', 'in', 'spector'), 60),\n",
" (('no', 'later', 'than'), 59),\n",
" (('street', ',', 'manhattan'), 58),\n",
" (('and', 'built', 'in'), 57),\n",
" (('the', 'following', 'matters'), 57),\n",
" ((')', '(', 'cc'), 57),\n",
" ((',', 'pursuant', 'to'), 56),\n",
" ((',', 'and', 'other'), 56),\n",
" (('street', ',', '9th'), 56),\n",
" ((',', 'on', 'the'), 55),\n",
" ((',', '2nd', 'floor'), 53),\n",
" (('york', ',', 'new'), 53),\n",
" (('(', '5', ')'), 53),\n",
" ((',', 'in', 'the'), 52),\n",
" (('children', \"'s\", 'services'), 52),\n",
" (('has', 'received', 'an'), 52),\n",
" (('rector', 'street', ','), 51),\n",
" (('ave', 'in', 'the'), 51),\n",
" (('(', 'the', '``'), 51),\n",
" (('municipal', 'building', ','), 51),\n",
" (('hearing', 'will', 'be'), 51),\n",
" (('for', 'children', \"'s\"), 51),\n",
" (('.', 'the', 'new'), 50),\n",
" (('.', 'subject', 'application'), 50),\n",
" (('office', 'of', 'environmental'), 50),\n",
" (('.', 'premises', 'affected'), 50),\n",
" (('of', 'environmental', 'remediation'), 50),\n",
" (('york', 'city', 'office'), 50),\n",
" (('(', 'oer', ')'), 50),\n",
" (('city', 'office', 'of'), 50),\n",
" (('administration', 'for', 'children'), 50),\n",
" (('manhattan', ',', 'new'), 50),\n",
" (('street', ',', 'main'), 50),\n",
" (('remediation', '(', 'oer'), 50),\n",
" (('environmental', 'remediation', '('), 50),\n",
" (('main', 'floor', ','), 50),\n",
" ((',', 'main', 'floor'), 50),\n",
" (('will', 'be', 'issuing'), 49),\n",
" (('utilize', ':', 'task'), 49),\n",
" ((':', 'task', 'order'), 49),\n",
" (('.', 'site', 'no'), 49),\n",
" (('task', 'order', 'personnel'), 49),\n",
" (('program', '(', 'vcp'), 49),\n",
" (('vcp', ')', 'application'), 49),\n",
" (('for', 'a', 'site'), 49),\n",
" (('at', '(', '212'), 49),\n",
" (('oer', ')', 'has'), 49),\n",
" (('this', 'project', '.'), 49),\n",
" (('a', 'site', 'located'), 49),\n",
" (('community', 'board', '#'), 49),\n",
" ((')', 'has', 'received'), 49),\n",
" (('matter', 'of', 'a'), 49),\n",
" (('cleanup', 'program', '('), 49),\n",
" (('site', 'no', '.'), 49),\n",
" (('nyc', 'voluntary', 'cleanup'), 49),\n",
" (('(', 'vcp', ')'), 49),\n",
" (('voluntary', 'cleanup', 'program'), 49),\n",
" (('received', 'an', 'nyc'), 49),\n",
" (('given', 'that', 'a'), 49),\n",
" (('order', 'personnel', 'in'), 49),\n",
" (('is', 'assigned', 'to'), 49),\n",
" (('to', 'this', 'project'), 49),\n",
" (('an', 'nyc', 'voluntary'), 49),\n",
" (('assigned', 'to', 'this'), 49),\n",
" ((',', 'municipal', 'building'), 48),\n",
" (('location', 'as', 'warranted'), 48),\n",
" (('and', 'other', 'days'), 48),\n",
" (('times', 'and', 'location'), 48),\n",
" (('as', 'warranted', '.'), 48),\n",
" (('new', 'york', '.'), 48),\n",
" (('site', 'located', 'at'), 48),\n",
" (('district', '.', 'premises'), 48),\n",
" (('days', ',', 'times'), 48),\n",
" (('public', 'hearing', 'will'), 48),\n",
" (('zoning', 'district', '.'), 48),\n",
" (('and', 'location', 'as'), 48),\n",
" ((')', 'application', 'from'), 48),\n",
" (('the', 'public', 'hearing'), 48),\n",
" (('other', 'days', ','), 48),\n",
" (('square', 'feet', 'of'), 47),\n",
" ((':', '0', 'agency'), 47),\n",
" ((',', 'manhattan', 'certificate'), 47),\n",
" (('to', 'issue', 'new'), 47),\n",
" (('following', 'solicitation', '('), 47),\n",
" (('issue', 'new', 'solicitation'), 47),\n",
" (('prior', 'to', 'the'), 47),\n",
" (('centre', 'street', ','), 47),\n",
" (('be', 'issuing', 'the'), 47),\n",
" (('intent', 'to', 'issue'), 47),\n",
" (('0', 'agency', ':'), 47),\n",
" (('new', 'solicitation', '('), 47),\n",
" (('issuing', 'the', 'following'), 47),\n",
" (('five', '(', '5'), 47),\n",
" (('the', 'following', 'solicitation'), 47),\n",
" (('new', 'york', '10007'), 47),\n",
" (('manhattan', 'certificate', 'of'), 47),\n",
" ((',', 'n.y.', '10007'), 46),\n",
" (('.', 'community', 'board'), 46),\n",
" (('project', '.', 'the'), 46),\n",
" (('at', '9:30', 'a.m.'), 45),\n",
" (('to', 'the', 'public'), 45),\n",
" (('on', 'thursday', ','), 45),\n",
" (('should', 'contact', 'the'), 44),\n",
" (('.', '(', 'preliminary'), 43),\n",
" ((',', 'please', 'visit'), 43),\n",
" (('street', ',', 'brooklyn'), 42),\n",
" (('be', 'held', 'at'), 42),\n",
" (('of', 'information', 'technology'), 42),\n",
" ((',', 'for', 'the'), 42),\n",
" (('city', 'department', 'of'), 41),\n",
" (('york', 'city', 'department'), 41),\n",
" (('the', 'office', 'of'), 41),\n",
" (('a.m.', 'on', 'the'), 41),\n",
" (('department', 'of', 'information'), 41),\n",
" (('application', 'submitted', 'by'), 40),\n",
" (('renewed/extended', 'contract', ':'), 40),\n",
" (('proposed', 'renewed/extended', 'contract'), 40),\n",
" (('borough', 'of', 'queens'), 40),\n",
" (('manhattan', ',', 'ny'), 40),\n",
" (('the', 'proposed', 'renewed/extended'), 40),\n",
" (('matter', 'of', 'an'), 39),\n",
" (('ny', '10007', ','), 39),\n",
" (('been', 'scheduled', 'for'), 39),\n",
" (('public', 'notice', 'is'), 39),\n",
" (('that', 'the', 'following'), 39),\n",
" (('public', 'hearing', 'by'), 39),\n",
" (('have', 'been', 'scheduled'), 39),\n",
" (('days', 'prior', 'to'), 39),\n",
" (('of', 'an', 'application'), 38),\n",
" (('mayor', \"'s\", 'office'), 38),\n",
" (('street', ',', '2nd'), 38),\n",
" (('the', 'mayor', \"'s\"), 38),\n",
" (('at', '40', 'rector'), 38),\n",
" (('york', '10007', ','), 38),\n",
" (('public', 'hearing', '.'), 38),\n",
" (('final', ')', '('), 38),\n",
" (('of', 'a', 'proposed'), 37),\n",
" (('.', 'board', 'of'), 37),\n",
" (('brooklyn', ',', 'ny'), 37),\n",
" ((':', 'borough', 'of'), 37),\n",
" (('wednesday', 'of', 'each'), 36),\n",
" (('each', 'month', 'at'), 36),\n",
" (('hearing', 'by', 'community'), 36),\n",
" ((')', 'business', 'days'), 36),\n",
" (('a.m.', ',', 'and'), 36),\n",
" (('following', 'matters', 'have'), 36),\n",
" (('nan', 'nan', 'nan'), 36),\n",
" (('commencing', '10:00', 'a.m.'), 36),\n",
" (('floor', ',', 'manhattan'), 36),\n",
" ((',', 'no', 'later'), 36),\n",
" (('william', 'street', ','), 36),\n",
" (('building', ',', 'manhattan'), 36),\n",
" (('city', 'planning', 'commission'), 36),\n",
" (('scheduled', 'for', 'public'), 36),\n",
" (('each', 'month', ','), 36),\n",
" (('10007', ',', 'at'), 36),\n",
" (('10:00', 'a.m.', 'on'), 36),\n",
" (('nycha', \"'s\", 'website'), 36),\n",
" (('commission', 'meets', 'in'), 36),\n",
" (('meets', 'in', 'room'), 36),\n",
" (('chairman', '.', 'board'), 36),\n",
" (('matters', 'have', 'been'), 36),\n",
" ((',', 'commencing', '10:00'), 36),\n",
" (('the', 'date', 'of'), 36),\n",
" (('for', 'public', 'hearing'), 36),\n",
" (('meets', 'in', 'the'), 36),\n",
" (('sign', 'language', 'interpreters'), 35),\n",
" (('by', 'community', 'board'), 35),\n",
" (('language', 'interpreters', 'should'), 35),\n",
" (('community', 'board', ':'), 35),\n",
" (('individuals', 'requesting', 'sign'), 35),\n",
" (('in', 'accordance', 'with'), 35),\n",
" (('office', 'of', 'the'), 35),\n",
" ((',', 'commencing', 'at'), 35),\n",
" (('fort', 'hamilton', 'parkway'), 35),\n",
" (('requesting', 'sign', 'language'), 35),\n",
" (('city', 'hall', ','), 35),\n",
" (('an', 'application', 'submitted'), 35),\n",
" (('board', ':', 'borough'), 35),\n",
" (('on', 'wednesday', ','), 35),\n",
" ((\"'s\", 'office', 'of'), 35),\n",
" (('public', 'hearing', ','), 34),\n",
" ((',', 'office', 'of'), 34),\n",
" (('project', 'manager', ','), 34),\n",
" (('landmarks', 'preservation', 'commission'), 34),\n",
" (('that', 'a', 'public'), 34),\n",
" (('department', 'of', 'environmental'), 33),\n",
" ((',', 'owner', '.'), 33),\n",
" ((',', '2014', '.'), 33),\n",
" (('of', 'environmental', 'protection'), 33),\n",
" (('1', 'centre', 'street'), 33),\n",
" (('building', 'designed', 'by'), 33),\n",
" (('owner', '.', 'subject'), 33),\n",
" ((\"''\", ')', ','), 33),\n",
" (('be', 'held', 'on'), 33),\n",
" (('procurement', 'policy', 'board'), 33),\n",
" (('s', ')', 'the'), 32),\n",
" (('new', 'end', 'date'), 32),\n",
" (('the', 'proposed', 'lease'), 32),\n",
" ((')', 'the', 'agency'), 32),\n",
" (('reason', '(', 's'), 32),\n",
" (('services', 'performed', 'under'), 32),\n",
" (('of', 'the', 'procurement'), 32),\n",
" (('performed', 'under', 'the'), 32),\n",
" (('modifications', 'sought', 'to'), 32),\n",
" (('floor', ',', 'borough'), 32),\n",
" (('new', 'start', 'date'), 32),\n",
" (('contract', '(', 's'), 32),\n",
" (('2nd', 'floor', ','), 32),\n",
" (('public', 'hearing', 'on'), 32),\n",
" (('under', 'the', 'contract'), 32),\n",
" (('(', '2', ')'), 32),\n",
" (('of', 'services', 'performed'), 32),\n",
" (('the', 'procurement', 'policy'), 32),\n",
" (('9:30', 'a.m.', ','), 32),\n",
" (('contract', 'between', 'the'), 31),\n",
" (('sought', 'to', 'the'), 31),\n",
" (('the', 'hours', 'of'), 31),\n",
" (('the', 'administration', 'for'), 31),\n",
" (('to', 'the', 'nature'), 31),\n",
" (('the', 'following', ':'), 31),\n",
" (('interpreters', 'should', 'contact'), 31),\n",
" (('brooklyn', ',', 'new'), 31),\n",
" (('of', 'services', ':'), 31),\n",
" (('the', 'nature', 'of'), 31),\n",
" (('in', 'relation', 'to'), 31),\n",
" (('state', 'of', 'new'), 30),\n",
" (('copy', 'of', 'the'), 30),\n",
" (('between', 'the', 'hours'), 30),\n",
" (('notice', 'of', 'public'), 30),\n",
" ((',', 'at', 'the'), 30),\n",
" (('york', '.', 'site'), 30),\n",
" (('policy', 'board', 'rules'), 30),\n",
" (('room', 'on', 'the'), 30),\n",
" (('in', 'order', 'to'), 30),\n",
" (('1', ',', '2014'), 30),\n",
" (('proposed', 'contract', 'between'), 30),\n",
" (('of', 'public', 'hearing'), 30),\n",
" (('9th', 'floor', ','), 29),\n",
" (('parcel', 'of', 'land'), 29),\n",
" (('business', 'days', 'prior'), 29),\n",
" (('of', 'manhattan', '.'), 29),\n",
" ((')', '.', 'the'), 29),\n",
" ((',', '2014', 'to'), 29),\n",
" ((',', 'unless', 'otherwise'), 29),\n",
" ((':', 'in', 'the'), 29),\n",
" ((':', 'installation', 'of'), 29),\n",
" (('st', 'in', 'the'), 29),\n",
" (('information', 'technology', '&'), 29),\n",
" (('1', ',', '2015'), 28),\n",
" (('on', 'the', 'third'), 28),\n",
" (('technology', '&', 'telecommunications'), 28),\n",
" (('city', 'and', 'state'), 28),\n",
" ((\"'s\", 'services', ','), 28),\n",
" (('(', '3', ')'), 28),\n",
" (('later', 'than', 'five'), 28),\n",
" (('n.y.', '10007', ','), 28),\n",
" (('new', 'york', '('), 27),\n",
" ((',', '253', 'broadway'), 27),\n",
" ((',', 'between', 'the'), 27),\n",
" ((',', 'on', 'thursday'), 27),\n",
" ((',', 'staten', 'island'), 27),\n",
" (('information', ',', 'please'), 27),\n",
" ((',', 'will', 'be'), 27),\n",
" (('253', 'broadway', ','), 27),\n",
" (('for', 'additional', 'information'), 27),\n",
" (('street', ',', 'room'), 27),\n",
" (('square', 'foot', 'parcel'), 27),\n",
" (('foot', 'parcel', 'of'), 27),\n",
" (('contact', 'the', 'mayor'), 27),\n",
" (('human', 'resources', 'administration'), 27),\n",
" (('150', 'william', 'street'), 26),\n",
" (('of', 'original', 'contract'), 26),\n",
" (('citywide', 'administrative', 'services'), 26),\n",
" (('dollars', '(', '$'), 26),\n",
" (('extension', 'new', 'start'), 26),\n",
" (('conference', 'room', ','), 26),\n",
" (('square', 'foot', ')'), 26),\n",
" (('manhattan', ',', 'on'), 26),\n",
" (('5', ')', 'years'), 26),\n",
" (('-', 'in', 'relation'), 26),\n",
" (('.', 'notice', 'of'), 26),\n",
" (('a', 'copy', 'of'), 26),\n",
" (('(', 'b', ')'), 26),\n",
" (('original', 'contract', ':'), 26),\n",
" (('december', '31', ','), 26),\n",
" (('on', 'tuesday', ','), 26),\n",
" (('of', 'brooklyn', '.'), 26),\n",
" (('llc', 'for', 'a'), 26),\n",
" (('department', 'of', 'parks'), 25),\n",
" (('lease', 'may', 'be'), 25),\n",
" (('inspection', 'at', 'the'), 25),\n",
" (('community', 'district', '2'), 25),\n",
" ((',', 'brooklyn', 'certificate'), 25),\n",
" ((',', '(', '212'), 25),\n",
" (('will', 'be', 'posted'), 25),\n",
" (('staten', 'island', ','), 25),\n",
" (('district', '2', ','), 25),\n",
" (('pursuant', 'to', 'sections'), 25),\n",
" (('brooklyn', 'certificate', 'of'), 25),\n",
" (('pursuant', 'to', 'the'), 24),\n",
" (('fourth', 'monday', 'in'), 24),\n",
" (('on', 'wednesdays', ','), 24),\n",
" ((',', 'monthly', 'on'), 24),\n",
" ((',', 'ny', '10004'), 24),\n",
" (('board', 'meets', 'in'), 24),\n",
" ((',', 'at', '1:30'), 24),\n",
" (('a.m.', 'board', 'of'), 24),\n",
" (('parks', 'and', 'recreation'), 24),\n",
" (('telecommunications', 'description', 'of'), 24),\n",
" (('100', 'church', 'street'), 24),\n",
" (('from', 'the', 'date'), 24),\n",
" (('manhattan', ',', 'monthly'), 24),\n",
" (('million', 'dollars', '('), 24),\n",
" (('and', 'final', ')'), 24),\n",
" (('commission', 'meets', 'at'), 24),\n",
" (('of', 'parks', 'and'), 24),\n",
" ((',', 'ny', '.'), 24),\n",
" (('(', 'preliminary', 'and'), 24),\n",
" (('on', 'fourth', 'monday'), 24),\n",
" (('bounded', 'on', 'the'), 24),\n",
" (('to', 'sections', '197-c'), 24),\n",
" ((',', 'bronx', ','), 24),\n",
" (('department', 'of', 'transportation'), 24),\n",
" (('proposed', 'revocable', 'consent'), 24),\n",
" ((',', 'ny', '10006'), 24),\n",
" ((',', 'maintain', ','), 24),\n",
" (('at', '1:30', 'p.m.'), 24),\n",
" (('nan', 'notice', 'of'), 24),\n",
" (('agency', ':', 'ddc'), 24),\n",
" (('month', ',', 'at'), 24),\n",
" (('10007', ',', '('), 24),\n",
" (('a.m.', ',', 'unless'), 24),\n",
" (('avenue', ',', 'brooklyn'), 24),\n",
" (('preliminary', 'and', 'final'), 24),\n",
" (('by', 'the', 'commission'), 24),\n",
" (('wednesdays', ',', 'commencing'), 24),\n",
" ((',', 'at', '10:00'), 24),\n",
" (('following', ':', 'in'), 24),\n",
" (('city', 'charter', 'for'), 24),\n",
" (('the', 'commission', '.'), 24),\n",
" (('.', 'the', 'contract'), 24),\n",
" (('board', 'rules', '.'), 24),\n",
" (('month', 'at', 'the'), 24),\n",
" (('.', 'start', 'date'), 23),\n",
" (('district', '1', ','), 23),\n",
" (('special', 'permit', '('), 23),\n",
" (('(', 'ii', ')'), 23),\n",
" (('water', 'street', ','), 23),\n",
" (('&', 'telecommunications', 'description'), 23),\n",
" (('manhattan', '.', '('), 23),\n",
" (('in', 'the', 'hearing'), 23),\n",
" (('portion', 'of', 'the'), 23),\n",
" (('at', 'the', 'new'), 23),\n",
" ((',', 'manhattan', '.'), 23),\n",
" (('of', 'the', 'general'), 23),\n",
" (('community', 'district', '1'), 23),\n",
" (('office', 'of', 'contract'), 23),\n",
" (('a', 'portion', 'of'), 22),\n",
" (('island', 'city', ','), 22),\n",
" ((',', '12th', 'floor'), 22),\n",
" (('ny', '10004', ','), 22),\n",
" (('available', 'for', 'public'), 22),\n",
" (('none', 'reason', '('), 22),\n",
" (('term', 'of', 'two'), 22),\n",
" ((',', 'inc.', ','), 22),\n",
" (('held', 'at', 'the'), 22),\n",
" (('utilize', ':', 'amendment'), 22),\n",
" (('will', 'hold', 'a'), 22),\n",
" (('r6', 'community', 'district'), 22),\n",
" (('proposed', 'extended', 'contract'), 22),\n",
" ((',', 'zoned', 'r6'), 22),\n",
" ((':', 'none', 'reason'), 22),\n",
" (('tdd', 'users', 'should'), 22),\n",
" (('city', 'charter', ','), 22),\n",
" (('(', '7', ')'), 22),\n",
" ((',', '10:00', 'a.m.'), 22),\n",
" (('zoned', 'r6', 'community'), 22),\n",
" (('2014', ',', 'at'), 22),\n",
" (('of', 'the', 'bronx'), 22),\n",
" (('pier55', ',', 'inc.'), 22),\n",
" (('long', 'island', 'city'), 22),\n",
" (('of', 'two', 'years'), 22),\n",
" (('extended', 'contract', ':'), 22),\n",
" (('users', 'should', 'call'), 22),\n",
" (('amount', 'of', '$'), 22),\n",
" (('hamilton', 'parkway', ','), 22),\n",
" (('commencing', 'at', '10:00'), 22),\n",
" (('28th', 'street', ','), 22),\n",
" (('floor', 'conference', 'room'), 22),\n",
" (('at', 'the', 'end'), 22),\n",
" (('the', 'end', 'of'), 22),\n",
" (('department', 'of', 'housing'), 22),\n",
" (('two', 'years', '.'), 22),\n",
" ((',', '150', 'william'), 22),\n",
" (('6th', 'floor', ','), 22),\n",
" (('the', 'proposed', 'extended'), 22),\n",
" ((',', '1', 'centre'), 22),\n",
" (('sections', '197-c', 'and'), 22),\n",
" (('.', 'a', 'copy'), 22),\n",
" (('contract', ':', 'none'), 22),\n",
" (('the', 'proposed', 'contractor'), 21),\n",
" (('on', 'nycha', \"'s\"), 21),\n",
" ((',', '2015', '.'), 21),\n",
" ((',', '2014', 'special'), 21),\n",
" (('to', 'the', 'following'), 21),\n",
" (('services', 'personnel', 'in'), 21),\n",
" (('788-7490', ',', 'no'), 21),\n",
" (('the', 'issuance', 'of'), 21),\n",
" (('to', 'the', 'city'), 21),\n",
" (('church', 'street', ','), 21),\n",
" (('services', ',', 'public'), 21),\n",
" (('of', 'the', 'zoning'), 21),\n",
" (('2014', 'special', 'permit'), 21),\n",
" (('of', 'land', 'located'), 21),\n",
" (('the', 'state', 'of'), 21),\n",
" (('hearings', 'unit', ','), 21),\n",
" ((':', 'amendment', 'extension'), 21),\n",
" (('public', 'hearings', 'unit'), 21),\n",
" (('land', 'located', 'at'), 21),\n",
" (('unit', ',', '253'), 21),\n",
" (('of', 'housing', 'preservation'), 21),\n",
" ((',', 'public', 'hearings'), 21),\n",
" ((')', '788-7490', ','), 21),\n",
" (('seven', '(', '7'), 21),\n",
" (('rules', '.', 'a'), 21),\n",
" (('york', ',', 'as'), 21),\n",
" ((')', 'for', 'the'), 21),\n",
" (('212', ')', '788-7490'), 21),\n",
" ((',', '2014', 'through'), 21),\n",
" (('(', 'c', ')'), 21),\n",
" ((',', 'located', 'at'), 21),\n",
" ((\"'s\", 'website', 'or'), 21),\n",
" (('january', '1', ','), 21),\n",
" (('for', 'the', 'provision'), 21),\n",
" (('at', 'city', 'hall'), 20),\n",
" (('been', 'selected', 'by'), 20),\n",
" (('services', ',', 'office'), 20),\n",
" (('housing', 'preservation', 'and'), 20),\n",
" (('of', 'the', 'lease'), 20),\n",
" (('12th', 'floor', ','), 20),\n",
" (('of', 'a', 'public'), 20),\n",
" (('before', 'the', 'hearing'), 20),\n",
" (('accordance', 'with', 'section'), 20),\n",
" (('department', 'of', 'probation'), 20),\n",
" (('preservation', 'and', 'development'), 20),\n",
" ((',', '2015', 'at'), 20),\n",
" (('intends', 'to', 'renew/extend'), 20),\n",
" (('per', 'square', 'foot'), 20),\n",
" (('amendment', 'extension', 'new'), 20),\n",
" (('renew/extend', 'the', 'contract'), 20),\n",
" (('for', 'public', 'inspection'), 20),\n",
" (('to', 'construct', 'a'), 20),\n",
" (('a', 'proposed', 'contract'), 20),\n",
" (('to', 'renew/extend', 'the'), 20),\n",
" ((',', '6th', 'floor'), 20),\n",
" (('of', 'the', 'draft'), 20),\n",
" (('42-09', '28th', 'street'), 20),\n",
" (('201', 'of', 'the'), 20),\n",
" (('located', 'on', 'a'), 20),\n",
" (('2', ')', '('), 20),\n",
" (('by', 'the', 'tenant'), 20),\n",
" (('the', 'provision', 'of'), 20),\n",
" (('the', 'hearing', '.'), 20),\n",
" (('nan', 'notice', 'is'), 20),\n",
" (('later', 'than', 'seven'), 19),\n",
" (('(', 'e', ')'), 19),\n",
" ((\"'s\", 'website', 'at'), 19),\n",
" (('public', 'inspection', 'at'), 19),\n",
" (('street', 'in', 'the'), 19),\n",
" (('the', 'term', 'of'), 19),\n",
" (('a.m.', 'in', 'the'), 19),\n",
" (('adjacent', 'to', 'lot'), 19),\n",
" (('call', 'verizon', 'relay'), 19),\n",
" (('of', 'the', 'state'), 19),\n",
" (('by', 'means', 'of'), 19),\n",
" (('charter', 'for', 'the'), 19),\n",
" (('ny', '.', 'site'), 19),\n",
" (('is', 'to', 'construct'), 19),\n",
" (('is', 'to', 'replace'), 19),\n",
" (('250', 'broadway', ','), 19),\n",
" (('the', 'draft', 'contract'), 19),\n",
" (('selected', 'by', 'means'), 19),\n",
" (('renewal/extension', 'the', 'agency'), 19),\n",
" (('street', ',', '12th'), 19),\n",
" (('borough', 'of', 'the'), 19),\n",
" (('7', ')', 'business'), 19),\n",
" (('197-c', 'and', '201'), 19),\n",
" (('method', 'of', 'renewal/extension'), 19),\n",
" ((',', 'and', 'a'), 19),\n",
" (('of', 'services', 'personnel'), 19),\n",
" (('and', '201', 'of'), 19),\n",
" (('.', 'tdd', 'users'), 19),\n",
" ((',', 'long', 'island'), 19),\n",
" (('street', ',', 'block'), 19),\n",
" (('b', ')', '('), 19),\n",
" ((',', '2015', 'to'), 19),\n",
" (('(', 'preliminary', ')'), 19),\n",
" ((')', 'years', ','), 19),\n",
" (('two', 'million', 'dollars'), 19),\n",
" (('of', 'renewal/extension', 'the'), 19),\n",
" (('15', ',', '2014'), 19),\n",
" (('should', 'call', 'verizon'), 19),\n",
" (('preliminary', ')', '('), 19),\n",
" (('than', 'seven', '('), 19),\n",
" (('of', 'the', 'contract'), 18),\n",
" (('york', 'city', 'housing'), 18),\n",
" (('the', 'project', 'site'), 18),\n",
" (('.', 'int', '.'), 18),\n",
" (('(', '$', '2,000,000'), 18),\n",
" (('street', ',', '6th'), 18),\n",
" (('full', 'time', 'equivalent'), 18),\n",
" (('at', '100', 'church'), 18),\n",
" (('.', 'the', 'lease'), 18),\n",
" (('.', 'individuals', 'requesting'), 18),\n",
" (('option', 'to', 'renew'), 18),\n",
" (('(', '718', ')'), 18),\n",
" ((':', 'competitive', 'sealed'), 18),\n",
" ((',', 'in', 'accordance'), 18),\n",
" ((',', 'owner', ';'), 18),\n",
" (('at', '10:30', 'a.m.'), 18),\n",
" (('(', 'iii', ')'), 18),\n",
" (('office', 'of', 'procurement'), 18),\n",
" (('and', 'recreation', 'nature'), 18),\n",
" (('17', ',', '2014'), 18),\n",
" (('contract', 'services', ','), 18),\n",
" (('in', 'the', 'board'), 18),\n",
" (('of', 'the', 'public'), 18),\n",
" (('negotiated', 'acquisition', 'extension'), 18),\n",
" (('information', 'technology', 'and'), 18),\n",
" (('floor', 'new', 'york'), 18),\n",
" (('design', 'and', 'construction'), 18),\n",
" (('proposed', 'local', 'laws'), 18),\n",
" (('is', 'available', 'for'), 18),\n",
" (('$', '2,000,000', ')'), 18),\n",
" (('for', 'the', 'city'), 18),\n",
" (('recreation', 'nature', 'of'), 18),\n",
" (('of', 'contract', 'services'), 18),\n",
" (('hudson', 'river', 'park'), 18),\n",
" ((':', '0', 'notice'), 18),\n",
" (('the', 'construction', 'of'), 17),\n",
" (('brooklyn', '.', 'community'), 17),\n",
" (('on', 'the', 'first'), 17),\n",
" (('held', 'in', 'the'), 17),\n",
" (('18', ',', '2014'), 17),\n",
" (('one', 'centre', 'street'), 17),\n",
" ((',', '42-09', '28th'), 17),\n",
" (('concession', 'review', 'committee'), 17),\n",
" (('new', 'york', 'and'), 17),\n",
" (('through', 'december', '31'), 17),\n",
" (('and', 'concession', 'review'), 17),\n",
" (('e', ')', 'designation'), 17),\n",
" ((')', 'in', 'the'), 17),\n",
" (('by', 'the', 'mayor'), 17),\n",
" (('franchise', 'and', 'concession'), 17),\n",
" (('technology', 'and', 'telecommunications'), 17),\n",
" (('at', 'http', ':'), 17),\n",
" ((';', 'and', '('), 17),\n",
" ((',', 'flushing', ','), 17),\n",
" ((':', 'individuals', 'requesting'), 17),\n",
" (('5', ')', 'business'), 17),\n",
" (('at', 'the', 'department'), 17),\n",
" (('principal', 'amount', 'of'), 17),\n",
" (('2', ',', 'manhattan'), 17),\n",
" (('as', 'follows', ':'), 17),\n",
" (('to', 'the', 'extent'), 17),\n",
" ((',', 'lessee', '.'), 17),\n",
" (('rentable', 'square', 'feet'), 17),\n",
" (('monthly', 'installments', 'at'), 17),\n",
" (('s', ')', 'of'), 17),\n",
" (('physical', 'culture', 'establishment'), 17),\n",
" (('each', 'month', '.'), 17),\n",
" (('of', 'gross', 'receipts'), 17),\n",
" (('hearing', 'on', 'the'), 17),\n",
" (('10', ',', '2014'), 17),\n",
" (('22', ',', '2014'), 17),\n",
" ((\"''\", ')', '.'), 17),\n",
" (('of', 'an', 'existing'), 17),\n",
" (('(', '1', ')'), 17),\n",
" (('note', ':', 'individuals'), 17),\n",
" (('2014', ',', '10:00'), 17),\n",
" (('contract', ':', '1/1/15'), 17),\n",
" (('end', 'of', 'each'), 17),\n",
" (('will', 'be', 'entering'), 16),\n",
" (('of', 'the', 'bonds'), 16),\n",
" (('installments', 'at', 'the'), 16),\n",
" (('and', 'state', 'mortgage'), 16),\n",
" (('board', 'of', 'health'), 16),\n",
" (('as', 'tenant', ','), 16),\n",
" (('mortgage', 'recording', 'taxes'), 16),\n",
" (('original', 'principal', 'amount'), 16),\n",
" (('hearing', '.', 'tdd'), 16),\n",
" (('associate', 'project', 'manager'), 16),\n",
" ((',', 'as', 'tenant'), 16),\n",
" ((',', '17th', 'floor'), 16),\n",
" ((',', 'as', 'amended'), 16),\n",
" (('2014', 'at', '10:00'), 16),\n",
" ((':', 'to', 'be'), 16),\n",
" (('lessee', '.', 'subject'), 16),\n",
" (('a', 'physical', 'culture'), 16),\n",
" (('3', ')', 'of'), 16),\n",
" (('of', '(', 'a'), 16),\n",
" (('on', 'business', 'days'), 16),\n",
" ((',', 'on', 'tuesday'), 16),\n",
" (('the', 'hearing', 'or'), 16),\n",
" (('.', 'the', 'term'), 16),\n",
" (('is', 'to', 'install'), 16),\n",
" (('has', 'been', 'selected'), 16),\n",
" (('by', 'the', 'city'), 16),\n",
" (('equal', 'monthly', 'installments'), 16),\n",
" (('month', '.', 'the'), 16),\n",
" (('to', 'extend', 'contract'), 16),\n",
" (('nan', 'nan', 'notice'), 16),\n",
" (('of', 'brooklyn', '('), 16),\n",
" (('to', 'be', 'determined'), 16),\n",
" (('extension', '(', 's'), 16),\n",
" (('(', 'i', ')'), 16),\n",
" (('14', ',', '2014'), 16),\n",
" (('the', 'city', 'planning'), 16),\n",
" (('terminated', 'by', 'the'), 16),\n",
" (('n.y.', '10007', '.'), 16),\n",
" ((',', '14th', 'floor'), 16),\n",
" (('time', 'equivalent', 'jobs'), 16),\n",
" (('at', 'an', 'annual'), 16),\n",
" (('utilize', ':', 'competitive'), 16),\n",
" (('proposed', 'contractor', 'has'), 16),\n",
" (('brooklyn', 'community', 'board'), 16),\n",
" (('to', ',', 'maintain'), 16),\n",
" (('hereby', 'given', 'of'), 16),\n",
" (('a', ')', 'contract'), 16),\n",
" (('in', 'equal', 'monthly'), 16),\n",
" (('department', 'of', 'citywide'), 16),\n",
" (('city', 'housing', 'authority'), 16),\n",
" (('entering', 'into', 'the'), 16),\n",
" (('island', ',', 'new'), 16),\n",
" (('following', 'extension', '('), 16),\n",
" (('10:00', 'a.m.', 'in'), 16),\n",
" (('the', 'following', 'extension'), 16),\n",
" ((',', 'associate', 'project'), 16),\n",
" (('website', 'at', 'http'), 16),\n",
" (('continue', 'to', ','), 16),\n",
" (('state', 'mortgage', 'recording'), 16),\n",
" (('c', ')', '('), 16),\n",
" (('of', 'fort', 'hamilton'), 16),\n",
" (('amendment', 'of', 'the'), 16),\n",
" (('in', 'conjunction', 'with'), 16),\n",
" ((',', 'in', 'spector'), 16),\n",
" ((')', 'contract', '('), 16),\n",
" (('3', 'of', 'the'), 16),\n",
" (('55', 'water', 'street'), 16),\n",
" (('a', 'reasonable', 'time'), 16),\n",
" (('ny', '10007', '('), 16),\n",
" (('maintenance', 'of', 'a'), 16),\n",
" (('to', 'participate', 'in'), 16),\n",
" ((')', '(', '3'), 16),\n",
" (('than', 'five', '('), 16),\n",
" ((')', '(', '2'), 16),\n",
" (('212', ')', '306-6088'), 16),\n",
" (('.', 'pursuant', 'to'), 16),\n",
" (('manhattan', '.', 'community'), 16),\n",
" (('.', 'any', 'person'), 16),\n",
" (('the', 'operation', 'of'), 16),\n",
" ((')', 'of', '('), 16),\n",
" (('beaver', 'street', ','), 16),\n",
" (('%', 'of', 'gross'), 16),\n",
" (('on', 'behalf', 'of'), 16),\n",
" (('term', 'shall', 'be'), 16),\n",
" (('into', 'the', 'following'), 16),\n",
" (('intent', 'to', 'extend'), 16),\n",
" (('be', 'entering', 'into'), 16),\n",
" (('payable', 'in', 'equal'), 16),\n",
" (('extend', 'contract', '('), 16),\n",
" (('contractor', 'has', 'been'), 16),\n",
" (('services', 'start', 'date'), 15),\n",
" ((':', '0', 'nan'), 15),\n",
" (('be', 'obtained', 'at'), 15),\n",
" ((',', '21st', 'floor'), 15),\n",
" (('between', 'the', 'department'), 15),\n",
" (('street', ',', '21st'), 15),\n",
" (('training', 'room', '#'), 15),\n",
" (('schedule', 'will', 'be'), 15),\n",
" (('members', 'of', 'the'), 15),\n",
" (('environmental', 'control', 'board'), 15),\n",
" (('or', 'contact', '('), 15),\n",
" (('be', 'posted', 'here'), 15),\n",
" (('.', 'the', 'annual'), 15),\n",
" ((',', 'training', 'room'), 15),\n",
" (('at', 'the', 'board'), 15),\n",
" (('following', 'matters', ':'), 15),\n",
" (('of', 'brooklyn', 'community'), 15),\n",
" (('extent', 'practicable', 'at'), 15),\n",
" (('at', 'a', 'reasonable'), 15),\n",
" (('contact', '(', '212'), 15),\n",
" (('and', 'maintenance', 'of'), 15),\n",
" (('standards', 'and', 'appeals'), 15),\n",
" (('room', '#', '143'), 15),\n",
" (('square', 'foot', 'facility'), 15),\n",
" (('additional', 'information', ','), 15),\n",
" (('21st', 'floor', ','), 15),\n",
" (('department', 'of', 'education'), 15),\n",
" (('time', 'before', 'the'), 15),\n",
" (('and', 'on', 'nycha'), 15),\n",
" (('.', 'any', 'changes'), 15),\n",
" (('//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the'),\n",
" 15),\n",
" (('(', 'unless', 'otherwise'), 15),\n",
" ((',', 'and', 'the'), 15),\n",
" (('meeting', '.', 'for'), 15),\n",
" (('floor', 'of', '250'), 15),\n",
" ((',', 'llc', 'for'), 15),\n",
" (('.', 'project', 'description'), 15),\n",
" (('before', 'the', 'meeting'), 15),\n",
" (('noted', ')', '.'), 15),\n",
" (('the', 'board', 'room'), 15),\n",
" (('to', 'use', 'as'), 15),\n",
" (('operation', 'of', 'a'), 15),\n",
" (('department', 'of', 'design'), 15),\n",
" (('practicable', 'at', 'a'), 15),\n",
" (('.', 'for', 'additional'), 15),\n",
" (('3', ',', '2014'), 15),\n",
" (('hold', 'a', 'public'), 15),\n",
" (('website', 'or', 'contact'), 15),\n",
" (('on', 'the', 'proposed'), 15),\n",
" (('of', 'standards', 'and'), 15),\n",
" (('hearing', ',', 'tuesday'), 15),\n",
" ((':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to'),\n",
" 15),\n",
" (('33', 'beaver', 'street'), 15),\n",
" (('143', ',', 'new'), 15),\n",
" ((',', '33', 'beaver'), 15),\n",
" (('at', 'the', 'office'), 15),\n",
" (('at', 'one', 'centre'), 15),\n",
" (('hearing', 'in', 'the'), 15),\n",
" (('verizon', 'relay', 'services'), 15),\n",
" (('not', 'limited', 'to'), 15),\n",
" (('and', 'at', 'the'), 15),\n",
" (('the', 'meeting', '.'), 15),\n",
" (('date', 'of', 'approval'), 15),\n",
" (('.', 'notice', 'is'), 15),\n",
" (('changes', 'to', 'the'), 15),\n",
" (('a', 'special', 'permit'), 15),\n",
" (('reasonable', 'time', 'before'), 15),\n",
" (('adams', 'street', ','), 15),\n",
" (('north', ',', 'new'), 15),\n",
" (('12th', 'floor', 'of'), 15),\n",
" (('nyc', 'department', 'of'), 15),\n",
" (('any', 'changes', 'to'), 15),\n",
" (('be', 'submitted', 'to'), 15),\n",
" (('board', 'of', 'standards'), 15),\n",
" (('the', 'schedule', 'will'), 15),\n",
" (('avenue', 'in', 'the'), 15),\n",
" (('here', 'and', 'on'), 15),\n",
" (('submitted', 'by', 'the'), 15),\n",
" (('http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml'),\n",
" 15),\n",
" (('.', '(', 'final'), 15),\n",
" (('construction', 'of', 'a'), 15),\n",
" (('room', ',', 'borough'), 15),\n",
" (('conjunction', 'with', 'the'), 15),\n",
" (('project', 'description', ':'), 15),\n",
" (('on', 'the', '12th'), 15),\n",
" (('3-04', '(', 'b'), 15),\n",
" (('of', '250', 'broadway'), 15),\n",
" (('unless', 'otherwise', 'noted'), 15),\n",
" (('#', '143', ','), 15),\n",
" (('2nd', 'floor', 'conference'), 15),\n",
" (('ny', '10007', '.'), 15),\n",
" (('york', 'city', 'administration'), 15),\n",
" (('to', 'the', 'schedule'), 15),\n",
" (('conference', 'room', 'on'), 15),\n",
" (('board', 'room', 'on'), 15),\n",
" (('broadway', ',', 'new'), 15),\n",
" (('(', 'final', ')'), 15),\n",
" (('the', 'extent', 'practicable'), 15),\n",
" (('bronx', ',', 'new'), 15),\n",
" (('charter', ',', 'will'), 15),\n",
" (('facility', 'located', 'on'), 15),\n",
" (('posted', 'here', 'and'), 15),\n",
" ((',', 'tuesday', 'morning'), 15),\n",
" (('visit', 'nycha', \"'s\"), 15),\n",
" (('relay', 'services', '.'), 15),\n",
" (('may', 'be', 'obtained'), 15),\n",
" (('floor', ',', 'training'), 15),\n",
" (('terms', 'and', 'conditions'), 15),\n",
" (('or', 'at', 'the'), 15),\n",
" (('the', 'general', 'municipal'), 15),\n",
" (('to', 'extend', 'the'), 15),\n",
" (('foot', 'facility', 'located'), 15),\n",
" (('tenant', ',', 'of'), 15),\n",
" (('please', 'visit', 'nycha'), 15),\n",
" (('otherwise', 'noted', ')'), 15),\n",
" (('to', 'section', '3-04'), 15),\n",
" (('section', '3-04', '('), 15),\n",
" (('tuesday', 'morning', ','), 15),\n",
" (('public', 'hearing', 'in'), 15),\n",
" (('given', 'of', 'a'), 15),\n",
" (('contract', 'is', 'available'), 15),\n",
" (('the', '12th', 'floor'), 15),\n",
" (('that', 'a', 'real'), 14),\n",
" (('the', 'commission', \"'s\"), 14),\n",
" ((',', '2015', ','), 14),\n",
" (('may', 'determine', '.'), 14),\n",
" ((')', ',', 'and'), 14),\n",
" ((',', 'a', 'line'), 14),\n",
" (('in', 'the', 'commission'), 14),\n",
" (('the', 'contract', 'term'), 14),\n",
" (('manager', ',', 'associate'), 14),\n",
" (('information', ',', 'including'), 14),\n",
" (('2000', 'north', ','), 14),\n",
" (('december', '15', ','), 14),\n",
" (('york', 'having', 'an'), 14),\n",
" (('to', 'schedule', 'an'), 14),\n",
" ((':', 'ddc', 'description'), 14),\n",
" (('gold', 'street', ','), 14),\n",
" ((')', '386-0315', '.'), 14),\n",
" (('hearing', ',', 'in'), 14),\n",
" (('junction', 'boulevard', ','), 14),\n",
" (('and', 'dispositions', 'public'), 14),\n",
" (('of', 'approval', 'by'), 14),\n",
" (('obtained', 'at', 'one'), 14),\n",
" (('property', 'acquisitions', 'and'), 14),\n",
" (('of', 'the', 'board'), 14),\n",
" (('of', 'staten', 'island'), 14),\n",
" (('including', 'public', 'inspection'), 14),\n",
" (('.', 'in', 'addition'), 14),\n",
" ((',', 'queens', ','), 14),\n",
" (('an', 'approximate', 'original'), 14),\n",
" (('for', 'a', 'period'), 14),\n",
" ((',', 'brooklyn', '.'), 14),\n",
" (('recording', 'taxes', '.'), 14),\n",
" (('the', 'proceeds', 'of'), 14),\n",
" ((')', 'to', 'allow'), 14),\n",
" (('a', 'period', 'of'), 14),\n",
" (('approximate', 'original', 'principal'), 14),\n",
" ((',', 'please', 'contact'), 14),\n",
" (('new', 'york', 'state'), 14),\n",
" (('economic', 'development', 'corporation'), 14),\n",
" (('brooklyn', '(', 'to'), 14),\n",
" (('having', 'an', 'approximate'), 14),\n",
" (('at', '9:15', 'a.m.'), 14),\n",
" (('with', 'section', '824'), 14),\n",
" (('the', 'human', 'resources'), 14),\n",
" (('30', ',', '2016'), 14),\n",
" (('dispositions', 'public', 'hearing'), 14),\n",
" (('floor', ',', 'and'), 14),\n",
" (('floor', 'north', ','), 14),\n",
" (('gotham', 'center', ','), 14),\n",
" (('new', 'york', 'having'), 14),\n",
" ...]"
]
}
],
"prompt_number": 27
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#We can keep going!\n",
"corpus4grams = list(ngrams(lowerTokens,4))\n",
"corpus4gramFreqs = nltk.FreqDist(corpus4grams)\n",
"corpus4gramFreqs.most_common()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 28,
"text": [
"[(('personnel', 'in', 'substantially', 'similar'), 272),\n",
" (('in', 'substantially', 'similar', 'titles'), 272),\n",
" (('substantially', 'similar', 'titles', 'within'), 269),\n",
" ((',', 'new', 'york', ','), 269),\n",
" (('titles', 'within', 'agency', ':'), 264),\n",
" (('similar', 'titles', 'within', 'agency'), 264),\n",
" (('date', 'of', 'the', 'proposed'), 264),\n",
" (('notice', 'is', 'hereby', 'given'), 212),\n",
" (('the', 'new', 'york', 'city'), 199),\n",
" (('of', 'the', 'proposed', 'contract'), 199),\n",
" (('--', '--', '--', '--'), 198),\n",
" (('the', 'proposed', 'contract', ':'), 186),\n",
" (('is', 'hereby', 'given', 'that'), 185),\n",
" (('in', 'the', 'borough', 'of'), 183),\n",
" (('new', 'york', ',', 'ny'), 173),\n",
" (('the', 'agency', 'intends', 'to'), 166),\n",
" (('agency', 'intends', 'to', 'utilize'), 137),\n",
" (('intends', 'to', 'utilize', ':'), 137),\n",
" (('for', 'a', 'term', 'of'), 136),\n",
" (('headcount', 'of', 'personnel', 'in'), 136),\n",
" (('of', 'personnel', 'in', 'substantially'), 136),\n",
" (('start', 'date', 'of', 'the'), 131),\n",
" (('end', 'date', 'of', 'the'), 131),\n",
" (('s', ')', 'not', 'included'), 126),\n",
" (('(', 's', ')', 'not'), 126),\n",
" (('annual', 'contracting', 'plan', 'and'), 126),\n",
" ((')', 'not', 'included', 'in'), 126),\n",
" (('contracting', 'plan', 'and', 'schedule'), 126),\n",
" (('sidewalk', 'caf', 'for', 'a'), 124),\n",
" ((',', 'and', 'operate', 'an'), 124),\n",
" (('fy', '2015', 'annual', 'contracting'), 124),\n",
" (('caf', 'for', 'a', 'term'), 124),\n",
" (('maintain', ',', 'and', 'operate'), 124),\n",
" (('2015', 'annual', 'contracting', 'plan'), 124),\n",
" (('the', 'borough', 'of', 'manhattan'), 123),\n",
" (('unenclosed', 'sidewalk', 'caf', 'for'), 120),\n",
" (('new', 'york', 'city', 'charter'), 116),\n",
" (('hereby', 'given', 'that', 'the'), 116),\n",
" (('operate', 'an', 'unenclosed', 'sidewalk'), 112),\n",
" (('an', 'unenclosed', 'sidewalk', 'caf'), 112),\n",
" (('and', 'operate', 'an', 'unenclosed'), 112),\n",
" (('22', 'reade', 'street', ','), 109),\n",
" (('city', 'of', 'new', 'york'), 108),\n",
" (('in', 'the', 'matter', 'of'), 106),\n",
" (('the', 'city', 'of', 'new'), 105),\n",
" (('of', 'services', 'sought', ':'), 104),\n",
" (('solicitation', 'the', 'agency', 'intends'), 103),\n",
" (('method', 'of', 'solicitation', 'the'), 103),\n",
" (('of', 'solicitation', 'the', 'agency'), 103),\n",
" (('a', 'term', 'of', 'four'), 102),\n",
" (('term', 'of', 'four', 'years'), 102),\n",
" (('(', 'to', 'continue', 'to'), 102),\n",
" (('of', 'four', 'years', '.'), 101),\n",
" (('four', 'years', '.', ')'), 101),\n",
" (('agency', ':', 'department', 'of'), 101),\n",
" (('borough', 'of', 'manhattan', '('), 100),\n",
" ((',', '22', 'reade', 'street'), 100),\n",
" (('of', 'manhattan', '(', 'to'), 99),\n",
" (('to', 'maintain', ',', 'and'), 98),\n",
" (('floor', ',', 'new', 'york'), 97),\n",
" (('solicitation', '(', 's', ')'), 94),\n",
" (('within', 'agency', ':', 'none'), 93),\n",
" (('agency', ':', 'none', 'headcount'), 92),\n",
" ((',', 'borough', 'of', 'manhattan'), 92),\n",
" ((':', 'none', 'headcount', 'of'), 92),\n",
" (('none', 'headcount', 'of', 'personnel'), 92),\n",
" (('to', 'continue', 'to', 'maintain'), 91),\n",
" (('continue', 'to', 'maintain', ','), 89),\n",
" (('manhattan', '(', 'to', 'continue'), 87),\n",
" (('.', 'application', 'is', 'to'), 86),\n",
" (('of', 'the', 'new', 'york'), 84),\n",
" (('within', 'agency', ':', '0'), 83),\n",
" (('hall', ',', '22', 'reade'), 82),\n",
" (('spector', 'hall', ',', '22'), 82),\n",
" (('to', 'june', '30', ','), 81),\n",
" (('in', 'spector', 'hall', ','), 81),\n",
" (('description', 'of', 'services', 'sought'), 80),\n",
" (('street', ',', 'new', 'york'), 76),\n",
" (('the', 'call', 'of', 'the'), 75),\n",
" (('at', 'the', 'call', 'of'), 75),\n",
" (('borough', 'of', 'manhattan', ','), 71),\n",
" (('york', ',', 'ny', '10007'), 68),\n",
" (('certificate', 'of', 'appropriateness', 'a'), 66),\n",
" (('given', 'that', 'the', 'mayor'), 65),\n",
" (('of', 'the', 'city', 'of'), 65),\n",
" (('notice', 'of', 'intent', 'to'), 65),\n",
" (('to', 'new', 'york', 'city'), 64),\n",
" (('not', 'included', 'in', 'the'), 64),\n",
" (('of', 'new', 'york', ','), 64),\n",
" (('the', 'mayor', 'will', 'be'), 63),\n",
" (('(', 'a', ')', ':'), 63),\n",
" (('schedule', 'notice', 'is', 'hereby'), 63),\n",
" (('312', '(', 'a', ')'), 63),\n",
" (('call', 'of', 'the', 'chairman'), 63),\n",
" (('that', 'the', 'mayor', 'will'), 63),\n",
" (('york', 'city', 'charter', '312'), 63),\n",
" (('pursuant', 'to', 'new', 'york'), 63),\n",
" (('charter', '312', '(', 'a'), 63),\n",
" (('published', 'pursuant', 'to', 'new'), 63),\n",
" (('a', ')', ':', 'agency'), 63),\n",
" ((')', ':', 'agency', ':'), 63),\n",
" (('that', 'is', 'published', 'pursuant'), 63),\n",
" (('and', 'schedule', 'that', 'is'), 63),\n",
" (('city', 'charter', '312', '('), 63),\n",
" (('plan', 'and', 'schedule', 'notice'), 63),\n",
" (('plan', 'and', 'schedule', 'that'), 63),\n",
" (('is', 'published', 'pursuant', 'to'), 63),\n",
" (('and', 'schedule', 'notice', 'is'), 63),\n",
" (('new', 'york', ',', 'n.y.'), 63),\n",
" (('not', 'included', 'in', 'fy'), 63),\n",
" (('schedule', 'that', 'is', 'published'), 63),\n",
" (('included', 'in', 'the', 'fy'), 63),\n",
" (('the', 'fy', '2015', 'annual'), 62),\n",
" (('included', 'in', 'fy', '2015'), 62),\n",
" (('of', 'the', 'chairman', '.'), 62),\n",
" (('in', 'fy', '2015', 'annual'), 62),\n",
" (('in', 'the', 'fy', '2015'), 62),\n",
" (('for', 'the', 'period', 'july'), 61),\n",
" (('period', 'july', '1', ','), 61),\n",
" (('the', 'period', 'july', '1'), 61),\n",
" (('meets', 'in', 'spector', 'hall'), 60),\n",
" (('street', ',', '9th', 'floor'), 54),\n",
" (('new', 'york', ',', 'new'), 53),\n",
" (('york', ',', 'new', 'york'), 53),\n",
" (('ave', 'in', 'the', 'borough'), 51),\n",
" (('for', 'children', \"'s\", 'services'), 50),\n",
" (('new', 'york', 'city', 'office'), 50),\n",
" (('hearing', 'will', 'be', 'held'), 50),\n",
" ((',', 'main', 'floor', ','), 50),\n",
" (('40', 'rector', 'street', ','), 50),\n",
" (('manhattan', ',', 'new', 'york'), 50),\n",
" (('reade', 'street', ',', 'main'), 50),\n",
" (('street', ',', 'main', 'floor'), 50),\n",
" (('of', 'environmental', 'remediation', '('), 50),\n",
" (('remediation', '(', 'oer', ')'), 50),\n",
" (('office', 'of', 'environmental', 'remediation'), 50),\n",
" (('environmental', 'remediation', '(', 'oer'), 50),\n",
" (('york', 'city', 'office', 'of'), 50),\n",
" (('city', 'office', 'of', 'environmental'), 49),\n",
" (('is', 'assigned', 'to', 'this'), 49),\n",
" (('utilize', ':', 'task', 'order'), 49),\n",
" (('oer', ')', 'has', 'received'), 49),\n",
" (('has', 'received', 'an', 'nyc'), 49),\n",
" (('program', '(', 'vcp', ')'), 49),\n",
" (('cleanup', 'program', '(', 'vcp'), 49),\n",
" (('(', 'vcp', ')', 'application'), 49),\n",
" (('for', 'a', 'site', 'located'), 49),\n",
" (('assigned', 'to', 'this', 'project'), 49),\n",
" (('to', 'this', 'project', '.'), 49),\n",
" (('.', 'site', 'no', '.'), 49),\n",
" (('administration', 'for', 'children', \"'s\"), 49),\n",
" ((':', 'task', 'order', 'personnel'), 49),\n",
" (('received', 'an', 'nyc', 'voluntary'), 49),\n",
" (('to', 'utilize', ':', 'task'), 49),\n",
" (('order', 'personnel', 'in', 'substantially'), 49),\n",
" (('task', 'order', 'personnel', 'in'), 49),\n",
" (('(', 'oer', ')', 'has'), 49),\n",
" (('the', 'matter', 'of', 'a'), 49),\n",
" ((')', 'has', 'received', 'an'), 49),\n",
" (('nyc', 'voluntary', 'cleanup', 'program'), 49),\n",
" (('at', '(', '212', ')'), 49),\n",
" (('voluntary', 'cleanup', 'program', '('), 49),\n",
" (('an', 'nyc', 'voluntary', 'cleanup'), 49),\n",
" (('location', 'as', 'warranted', '.'), 48),\n",
" ((',', 'times', 'and', 'location'), 48),\n",
" (('hereby', 'given', 'that', 'a'), 48),\n",
" (('a', 'site', 'located', 'at'), 48),\n",
" (('district', '.', 'premises', 'affected'), 48),\n",
" (('zoning', 'district', '.', 'premises'), 48),\n",
" (('and', 'location', 'as', 'warranted'), 48),\n",
" ((',', 'and', 'other', 'days'), 48),\n",
" (('days', ',', 'times', 'and'), 48),\n",
" (('other', 'days', ',', 'times'), 48),\n",
" (('vcp', ')', 'application', 'from'), 48),\n",
" (('and', 'other', 'days', ','), 48),\n",
" ((',', 'municipal', 'building', ','), 48),\n",
" (('times', 'and', 'location', 'as'), 48),\n",
" (('of', 'intent', 'to', 'issue'), 47),\n",
" (('new', 'solicitation', '(', 's'), 47),\n",
" ((',', 'new', 'york', '10007'), 47),\n",
" (('five', '(', '5', ')'), 47),\n",
" (('will', 'be', 'issuing', 'the'), 47),\n",
" (('issuing', 'the', 'following', 'solicitation'), 47),\n",
" (('public', 'hearing', 'will', 'be'), 47),\n",
" (('to', 'issue', 'new', 'solicitation'), 47),\n",
" (('the', 'following', 'solicitation', '('), 47),\n",
" (('following', 'solicitation', '(', 's'), 47),\n",
" (('intent', 'to', 'issue', 'new'), 47),\n",
" ((',', 'manhattan', 'certificate', 'of'), 47),\n",
" (('mayor', 'will', 'be', 'issuing'), 47),\n",
" (('be', 'issuing', 'the', 'following'), 47),\n",
" ((':', '0', 'agency', ':'), 47),\n",
" (('issue', 'new', 'solicitation', '('), 47),\n",
" (('york', ',', 'n.y.', '10007'), 46),\n",
" (('agency', ':', '0', 'agency'), 46),\n",
" (('manhattan', 'certificate', 'of', 'appropriateness'), 46),\n",
" (('.', 'community', 'board', '#'), 46),\n",
" (('this', 'project', '.', 'the'), 45),\n",
" (('.', 'the', 'new', 'york'), 45),\n",
" (('project', '.', 'the', 'new'), 45),\n",
" ((':', 'agency', ':', 'department'), 44),\n",
" ((',', 'manhattan', ',', 'new'), 44),\n",
" (('will', 'be', 'held', 'at'), 42),\n",
" ((':', 'department', 'of', 'information'), 41),\n",
" (('new', 'york', 'city', 'department'), 41),\n",
" (('york', 'city', 'department', 'of'), 41),\n",
" (('department', 'of', 'information', 'technology'), 41),\n",
" (('of', 'the', 'proposed', 'renewed/extended'), 40),\n",
" (('the', 'proposed', 'renewed/extended', 'contract'), 40),\n",
" ((',', 'manhattan', ',', 'ny'), 40),\n",
" (('proposed', 'renewed/extended', 'contract', ':'), 40),\n",
" (('at', '10:00', 'a.m.', ','), 39),\n",
" (('days', 'prior', 'to', 'the'), 39),\n",
" (('public', 'notice', 'is', 'hereby'), 39),\n",
" (('have', 'been', 'scheduled', 'for'), 39),\n",
" ((',', 'ny', '10007', ','), 39),\n",
" (('the', 'matter', 'of', 'an'), 38),\n",
" (('final', ')', '(', 'cc'), 38),\n",
" (('new', 'york', '10007', ','), 38),\n",
" (('at', '40', 'rector', 'street'), 38),\n",
" (('matter', 'of', 'an', 'application'), 38),\n",
" ((',', 'in', 'the', 'borough'), 38),\n",
" (('the', 'public', 'hearing', '.'), 38),\n",
" (('a', 'public', 'hearing', 'will'), 37),\n",
" ((',', 'pursuant', 'to', 'section'), 37),\n",
" ((',', 'no', 'later', 'than'), 36),\n",
" (('chairman', '.', 'board', 'of'), 36),\n",
" (('floor', ',', 'manhattan', ','), 36),\n",
" (('a.m.', ',', 'and', 'other'), 36),\n",
" (('the', 'following', 'matters', 'have'), 36),\n",
" (('public', 'hearing', 'by', 'community'), 36),\n",
" (('been', 'scheduled', 'for', 'public'), 36),\n",
" (('that', 'the', 'following', 'matters'), 36),\n",
" (('10:00', 'a.m.', ',', 'and'), 36),\n",
" ((',', 'commencing', '10:00', 'a.m.'), 36),\n",
" (('scheduled', 'for', 'public', 'hearing'), 36),\n",
" (('wednesday', 'of', 'each', 'month'), 36),\n",
" (('following', 'matters', 'have', 'been'), 36),\n",
" (('matters', 'have', 'been', 'scheduled'), 36),\n",
" (('building', ',', 'manhattan', ','), 36),\n",
" (('the', 'chairman', '.', 'board'), 36),\n",
" (('given', 'that', 'the', 'following'), 36),\n",
" (('municipal', 'building', ',', 'manhattan'), 36),\n",
" (('for', 'public', 'hearing', 'by'), 36),\n",
" (('at', '10:00', 'a.m.', 'on'), 36),\n",
" (('commencing', '10:00', 'a.m.', ','), 36),\n",
" (('main', 'floor', ',', 'manhattan'), 36),\n",
" (('prior', 'to', 'the', 'public'), 35),\n",
" (('sign', 'language', 'interpreters', 'should'), 35),\n",
" (('street', ',', 'manhattan', ','), 35),\n",
" (('community', 'board', ':', 'borough'), 35),\n",
" (('the', 'borough', 'of', 'brooklyn'), 35),\n",
" (('the', 'mayor', \"'s\", 'office'), 35),\n",
" (('reade', 'street', ',', 'new'), 35),\n",
" (('individuals', 'requesting', 'sign', 'language'), 35),\n",
" (('by', 'community', 'board', ':'), 35),\n",
" (('hearing', 'by', 'community', 'board'), 35),\n",
" (('board', ':', 'borough', 'of'), 35),\n",
" (('requesting', 'sign', 'language', 'interpreters'), 35),\n",
" (('mayor', \"'s\", 'office', 'of'), 34),\n",
" (('to', 'the', 'public', 'hearing'), 34),\n",
" (('of', 'an', 'application', 'submitted'), 34),\n",
" (('that', 'a', 'public', 'hearing'), 34),\n",
" (('an', 'application', 'submitted', 'by'), 34),\n",
" (('street', ',', '2nd', 'floor'), 34),\n",
" (('matter', 'of', 'a', 'proposed'), 33),\n",
" ((',', 'owner', '.', 'subject'), 33),\n",
" ((',', 'new', 'york', '.'), 33),\n",
" (('department', 'of', 'environmental', 'protection'), 33),\n",
" (('owner', '.', 'subject', 'application'), 33),\n",
" (('contract', '(', 's', ')'), 32),\n",
" (('services', 'performed', 'under', 'the'), 32),\n",
" (('floor', ',', 'borough', 'of'), 32),\n",
" ((',', 'brooklyn', ',', 'ny'), 32),\n",
" ((')', 'the', 'agency', 'intends'), 32),\n",
" (('at', '9:30', 'a.m.', ','), 32),\n",
" (('new', 'start', 'date', 'of'), 32),\n",
" ((',', '2nd', 'floor', ','), 32),\n",
" (('s', ')', 'the', 'agency'), 32),\n",
" (('0', 'agency', ':', 'department'), 32),\n",
" (('(', 's', ')', 'the'), 32),\n",
" (('new', 'end', 'date', 'of'), 32),\n",
" (('of', 'services', 'performed', 'under'), 32),\n",
" (('of', 'the', 'procurement', 'policy'), 32),\n",
" (('street', ',', 'brooklyn', ','), 32),\n",
" (('10:00', 'a.m.', 'on', 'the'), 32),\n",
" (('performed', 'under', 'the', 'contract'), 32),\n",
" (('the', 'procurement', 'policy', 'board'), 32),\n",
" (('reason', '(', 's', ')'), 32),\n",
" (('under', 'the', 'contract', ':'), 32),\n",
" (('nature', 'of', 'services', 'performed'), 32),\n",
" (('will', 'be', 'held', 'on'), 31),\n",
" (('the', 'nature', 'of', 'services'), 31),\n",
" (('modifications', 'sought', 'to', 'the'), 31),\n",
" (('sought', 'to', 'the', 'nature'), 31),\n",
" (('language', 'interpreters', 'should', 'contact'), 31),\n",
" (('to', 'the', 'nature', 'of'), 31),\n",
" (('brooklyn', ',', 'new', 'york'), 31),\n",
" (('the', 'administration', 'for', 'children'), 31),\n",
" (('state', 'of', 'new', 'york'), 30),\n",
" (('procurement', 'policy', 'board', 'rules'), 30),\n",
" (('interpreters', 'should', 'contact', 'the'), 30),\n",
" (('notice', 'of', 'public', 'hearing'), 30),\n",
" (('new', 'york', '.', 'site'), 30),\n",
" (('proposed', 'contract', 'between', 'the'), 30),\n",
" (('york', '.', 'site', 'no'), 30),\n",
" (('between', 'the', 'hours', 'of'), 30),\n",
" ((',', 'brooklyn', ',', 'new'), 30),\n",
" (('business', 'days', 'prior', 'to'), 29),\n",
" (('borough', 'of', 'manhattan', '.'), 29),\n",
" (('of', 'information', 'technology', '&'), 29),\n",
" (('st', 'in', 'the', 'borough'), 29),\n",
" (('a.m.', 'on', 'the', 'following'), 29),\n",
" ((':', 'in', 'the', 'matter'), 29),\n",
" ((',', '9th', 'floor', ','), 29),\n",
" ((',', 'n.y.', '10007', ','), 28),\n",
" (('information', 'technology', '&', 'telecommunications'), 28),\n",
" (('children', \"'s\", 'services', ','), 28),\n",
" (('no', 'later', 'than', 'five'), 28),\n",
" (('2nd', 'floor', ',', 'new'), 28),\n",
" (('on', 'the', 'following', ':'), 27),\n",
" (('should', 'contact', 'the', 'mayor'), 27),\n",
" (('contact', 'the', 'mayor', \"'s\"), 27),\n",
" ((',', '253', 'broadway', ','), 27),\n",
" (('square', 'foot', 'parcel', 'of'), 27),\n",
" (('foot', 'parcel', 'of', 'land'), 27),\n",
" ((',', 'on', 'thursday', ','), 27),\n",
" (('borough', 'of', 'brooklyn', '.'), 26),\n",
" (('extension', 'new', 'start', 'date'), 26),\n",
" ((')', 'business', 'days', 'prior'), 26),\n",
" ((',', 'on', 'the', 'following'), 26),\n",
" (('william', 'street', ',', '9th'), 26),\n",
" ((',', 'at', 'the', 'call'), 26),\n",
" (('given', 'that', 'a', 'public'), 26),\n",
" (('of', 'manhattan', ',', 'on'), 26),\n",
" (('150', 'william', 'street', ','), 26),\n",
" (('of', 'original', 'contract', ':'), 26),\n",
" (('-', 'in', 'relation', 'to'), 26),\n",
" (('(', '5', ')', 'years'), 26),\n",
" ((',', 'brooklyn', 'certificate', 'of'), 25),\n",
" ((',', '(', '212', ')'), 25),\n",
" (('community', 'district', '2', ','), 25),\n",
" (('llc', 'for', 'a', 'site'), 25),\n",
" ((',', 'between', 'the', 'hours'), 25),\n",
" (('a', 'public', 'hearing', 'on'), 24),\n",
" ((',', 'maintain', ',', 'and'), 24),\n",
" (('department', 'of', 'parks', 'and'), 24),\n",
" (('of', 'parks', 'and', 'recreation'), 24),\n",
" (('month', 'at', 'the', 'call'), 24),\n",
" (('.', '(', 'preliminary', 'and'), 24),\n",
" (('on', 'wednesdays', ',', 'commencing'), 24),\n",
" (('on', 'fourth', 'monday', 'in'), 24),\n",
" (('brooklyn', 'certificate', 'of', 'appropriateness'), 24),\n",
" ((',', 'at', '10:00', 'a.m.'), 24),\n",
" (('following', ':', 'in', 'the'), 24),\n",
" (('from', 'the', 'date', 'of'), 24),\n",
" (('of', 'each', 'month', 'at'), 24),\n",
" (('manhattan', ',', 'monthly', 'on'), 24),\n",
" (('of', 'each', 'month', ','), 24),\n",
" (('telecommunications', 'description', 'of', 'services'), 24),\n",
" (('each', 'month', ',', 'at'), 24),\n",
" (('policy', 'board', 'rules', '.'), 24),\n",
" (('10007', ',', '(', '212'), 24),\n",
" (('a', 'copy', 'of', 'the'), 24),\n",
" (('a.m.', ',', 'unless', 'otherwise'), 24),\n",
" (('york', ',', 'ny', '10004'), 24),\n",
" (('york', ',', 'ny', '10006'), 24),\n",
" (('preliminary', 'and', 'final', ')'), 24),\n",
" (('the', 'following', ':', 'in'), 24),\n",
" ((',', 'at', '1:30', 'p.m.'), 24),\n",
" (('(', 'preliminary', 'and', 'final'), 24),\n",
" (('pursuant', 'to', 'sections', '197-c'), 24),\n",
" (('nature', 'of', 'services', 'sought'), 24),\n",
" (('by', 'the', 'commission', '.'), 24),\n",
" (('at', 'the', 'new', 'york'), 23),\n",
" (('million', 'dollars', '(', '$'), 23),\n",
" (('&', 'telecommunications', 'description', 'of'), 23),\n",
" (('.', 'notice', 'of', 'intent'), 23),\n",
" (('technology', '&', 'telecommunications', 'description'), 23),\n",
" (('york', 'city', 'charter', 'for'), 23),\n",
" ((',', 'manhattan', '.', '('), 23),\n",
" (('.', 'start', 'date', 'of'), 23),\n",
" (('and', 'final', ')', '('), 23),\n",
" (('community', 'district', '1', ','), 23),\n",
" ((')', 'of', 'the', 'procurement'), 22),\n",
" (('long', 'island', 'city', ','), 22),\n",
" (('none', 'reason', '(', 's'), 22),\n",
" (('of', 'the', 'proposed', 'extended'), 22),\n",
" (('contract', ':', 'none', 'reason'), 22),\n",
" (('a', 'term', 'of', 'two'), 22),\n",
" (('proposed', 'extended', 'contract', ':'), 22),\n",
" (('the', 'contract', ':', 'none'), 22),\n",
" (('to', 'sections', '197-c', 'and'), 22),\n",
" (('york', '10007', ',', 'at'), 22),\n",
" (('.', 'a', 'copy', 'of'), 22),\n",
" ((':', 'none', 'reason', '('), 22),\n",
" (('to', 'utilize', ':', 'amendment'), 22),\n",
" (('be', 'held', 'at', 'the'), 22),\n",
" ((',', '1', 'centre', 'street'), 22),\n",
" (('the', 'proposed', 'extended', 'contract'), 22),\n",
" ((',', 'ny', '10004', ','), 22),\n",
" (('at', 'the', 'end', 'of'), 22),\n",
" (('two', 'years', '.', ')'), 22),\n",
" ((',', 'zoned', 'r6', 'community'), 22),\n",
" (('tdd', 'users', 'should', 'call'), 22),\n",
" (('term', 'of', 'two', 'years'), 22),\n",
" (('fort', 'hamilton', 'parkway', ','), 22),\n",
" ((',', '2014', ',', 'at'), 22),\n",
" (('floor', 'conference', 'room', ','), 22),\n",
" (('york', 'city', 'charter', ','), 22),\n",
" (('of', 'two', 'years', '.'), 22),\n",
" (('zoned', 'r6', 'community', 'district'), 22),\n",
" (('of', 'new', 'york', '('), 21),\n",
" (('9th', 'floor', ',', 'borough'), 21),\n",
" (('hearings', 'unit', ',', '253'), 21),\n",
" (('parcel', 'of', 'land', 'located'), 21),\n",
" (('new', 'york', ',', 'as'), 21),\n",
" (('of', 'land', 'located', 'at'), 21),\n",
" (('nycha', \"'s\", 'website', 'or'), 21),\n",
" (('788-7490', ',', 'no', 'later'), 21),\n",
" (('on', 'the', 'following', 'matters'), 21),\n",
" (('commencing', 'at', '10:00', 'a.m.'), 21),\n",
" (('100', 'church', 'street', ','), 21),\n",
" ((',', 'borough', 'of', 'brooklyn'), 21),\n",
" (('public', 'hearings', 'unit', ','), 21),\n",
" (('services', ',', 'public', 'hearings'), 21),\n",
" (('212', ')', '788-7490', ','), 21),\n",
" ((')', '788-7490', ',', 'no'), 21),\n",
" (('seven', '(', '7', ')'), 21),\n",
" (('unit', ',', '253', 'broadway'), 21),\n",
" (('department', 'of', 'housing', 'preservation'), 21),\n",
" ((',', 'public', 'hearings', 'unit'), 21),\n",
" (('the', 'office', 'of', 'the'), 21),\n",
" (('services', 'personnel', 'in', 'substantially'), 21),\n",
" (('on', 'nycha', \"'s\", 'website'), 21),\n",
" (('utilize', ':', 'amendment', 'extension'), 21),\n",
" ((',', '2014', 'special', 'permit'), 21),\n",
" (('(', '212', ')', '788-7490'), 21),\n",
" (('the', 'state', 'of', 'new'), 21),\n",
" (('2014', 'special', 'permit', '('), 20),\n",
" (('of', 'housing', 'preservation', 'and'), 20),\n",
" ((',', '150', 'william', 'street'), 20),\n",
" (('nan', 'notice', 'of', 'intent'), 20),\n",
" (('agency', 'intends', 'to', 'renew/extend'), 20),\n",
" (('(', '2', ')', '('), 20),\n",
" (('201', 'of', 'the', 'new'), 20),\n",
" (('to', 'renew/extend', 'the', 'contract'), 20),\n",
" (('of', 'a', 'proposed', 'contract'), 20),\n",
" ((':', 'amendment', 'extension', 'new'), 20),\n",
" (('42-09', '28th', 'street', ','), 20),\n",
" (('renew/extend', 'the', 'contract', ':'), 20),\n",
" (('amendment', 'extension', 'new', 'start'), 20),\n",
" (('for', 'the', 'provision', 'of'), 20),\n",
" (('a', 'proposed', 'contract', 'between'), 20),\n",
" (('services', ',', 'office', 'of'), 20),\n",
" (('per', 'square', 'foot', ')'), 20),\n",
" ((',', '12th', 'floor', ','), 20),\n",
" (('the', 'department', 'of', 'probation'), 20),\n",
" (('available', 'for', 'public', 'inspection'), 20),\n",
" (('intends', 'to', 'renew/extend', 'the'), 20),\n",
" (('in', 'accordance', 'with', 'section'), 20),\n",
" (('housing', 'preservation', 'and', 'development'), 20),\n",
" (('nan', 'notice', 'is', 'hereby'), 20),\n",
" (('application', 'is', 'to', 'replace'), 19),\n",
" (('(', 'b', ')', '('), 19),\n",
" (('been', 'selected', 'by', 'means'), 19),\n",
" (('.', '(', 'preliminary', ')'), 19),\n",
" (('two', 'million', 'dollars', '('), 19),\n",
" (('of', 'renewal/extension', 'the', 'agency'), 19),\n",
" (('manhattan', ',', 'ny', '10007'), 19),\n",
" (('public', 'inspection', 'at', 'the'), 19),\n",
" (('of', 'services', 'personnel', 'in'), 19),\n",
" (('selected', 'by', 'means', 'of'), 19),\n",
" (('city', 'charter', 'for', 'the'), 19),\n",
" (('application', 'is', 'to', 'construct'), 19),\n",
" (('than', 'seven', '(', '7'), 19),\n",
" (('(', 'preliminary', ')', '('), 19),\n",
" ((',', 'long', 'island', 'city'), 19),\n",
" (('method', 'of', 'renewal/extension', 'the'), 19),\n",
" (('and', '201', 'of', 'the'), 19),\n",
" ((\"'s\", 'office', 'of', 'contract'), 19),\n",
" (('no', 'later', 'than', 'seven'), 19),\n",
" (('.', 'tdd', 'users', 'should'), 19),\n",
" (('7', ')', 'business', 'days'), 19),\n",
" ((\"'s\", 'services', ',', 'office'), 19),\n",
" (('(', '7', ')', 'business'), 19),\n",
" (('should', 'call', 'verizon', 'relay'), 19),\n",
" (('preliminary', ')', '(', 'cc'), 19),\n",
" (('street', ',', '12th', 'floor'), 19),\n",
" (('borough', 'of', 'the', 'bronx'), 19),\n",
" (('renewal/extension', 'the', 'agency', 'intends'), 19),\n",
" (('for', 'public', 'inspection', 'at'), 19),\n",
" (('of', 'the', 'state', 'of'), 19),\n",
" ((',', 'ny', '.', 'site'), 19),\n",
" (('users', 'should', 'call', 'verizon'), 19),\n",
" (('ny', '.', 'site', 'no'), 19),\n",
" (('later', 'than', 'seven', '('), 19),\n",
" ((':', 'department', 'of', 'parks'), 19),\n",
" (('197-c', 'and', '201', 'of'), 19),\n",
" ((',', 'borough', 'of', 'queens'), 18),\n",
" (('contract', 'services', ',', 'public'), 18),\n",
" (('1', 'centre', 'street', ','), 18),\n",
" (('sections', '197-c', 'and', '201'), 18),\n",
" (('dollars', '(', '$', '2,000,000'), 18),\n",
" (('of', 'contract', 'services', ','), 18),\n",
" (('(', '$', '2,000,000', ')'), 18),\n",
" (('nan', 'nan', 'nan', 'nan'), 18),\n",
" ((',', 'for', 'the', 'provision'), 18),\n",
" (('for', 'the', 'city', 'of'), 18),\n",
" (('agency', ':', '0', 'notice'), 18),\n",
" ((',', 'staten', 'island', ','), 18),\n",
" (('office', 'of', 'contract', 'services'), 18),\n",
" (('at', 'city', 'hall', ','), 18),\n",
" (('at', '100', 'church', 'street'), 18),\n",
" (('manhattan', '.', '(', 'preliminary'), 18),\n",
" (('parks', 'and', 'recreation', 'nature'), 18),\n",
" (('street', ',', '6th', 'floor'), 18),\n",
" (('new', 'york', 'city', 'housing'), 18),\n",
" (('and', 'recreation', 'nature', 'of'), 18),\n",
" (('.', 'individuals', 'requesting', 'sign'), 18),\n",
" ((',', 'in', 'accordance', 'with'), 18),\n",
" (('5', ')', 'business', 'days'), 17),\n",
" (('2', ',', 'manhattan', 'certificate'), 17),\n",
" (('franchise', 'and', 'concession', 'review'), 17),\n",
" ((':', 'individuals', 'requesting', 'sign'), 17),\n",
" (('of', 'brooklyn', '.', 'community'), 17),\n",
" (('of', 'new', 'york', 'and'), 17),\n",
" (('at', 'the', 'department', 'of'), 17),\n",
" (('of', 'the', 'proposed', 'lease'), 17),\n",
" (('(', '5', ')', 'business'), 17),\n",
" (('of', 'a', 'public', 'hearing'), 17),\n",
" (('street', 'in', 'the', 'borough'), 17),\n",
" (('rules', '.', 'a', 'copy'), 17),\n",
" (('a', 'portion', 'of', 'the'), 17),\n",
" (('through', 'december', '31', ','), 17),\n",
" (('nature', 'of', 'services', ':'), 17),\n",
" (('(', 's', ')', 'of'), 17),\n",
" ((',', '42-09', '28th', 'street'), 17),\n",
" (('inspection', 'at', 'the', 'new'), 17),\n",
" (('centre', 'street', ',', 'room'), 17),\n",
" (('information', 'technology', 'and', 'telecommunications'), 17),\n",
" (('of', 'each', 'month', '.'), 17),\n",
" (('(', 'e', ')', 'designation'), 17),\n",
" (('district', '2', ',', 'manhattan'), 17),\n",
" (('2014', ',', '10:00', 'a.m.'), 17),\n",
" (('brooklyn', '.', 'community', 'board'), 17),\n",
" (('of', 'the', 'draft', 'contract'), 17),\n",
" ((',', '6th', 'floor', ','), 17),\n",
" (('floor', 'new', 'york', ','), 17),\n",
" (('end', 'of', 'each', 'month'), 17),\n",
" (('one', 'centre', 'street', ','), 17),\n",
" (('and', 'concession', 'review', 'committee'), 17),\n",
" (('note', ':', 'individuals', 'requesting'), 17),\n",
" (('to', 'extend', 'contract', '('), 16),\n",
" (('(', '3', ')', 'of'), 16),\n",
" (('(', '212', ')', '306-6088'), 16),\n",
" ((',', 'in', 'spector', 'hall'), 16),\n",
" ((',', 'n.y.', '10007', '.'), 16),\n",
" (('hearing', '.', 'tdd', 'users'), 16),\n",
" (('monthly', 'installments', 'at', 'the'), 16),\n",
" (('borough', 'of', 'brooklyn', '('), 16),\n",
" (('entering', 'into', 'the', 'following'), 16),\n",
" ((')', 'contract', '(', 's'), 16),\n",
" (('the', 'following', 'extension', '('), 16),\n",
" ((')', 'of', '(', 'a'), 16),\n",
" (('utilize', ':', 'competitive', 'sealed'), 16),\n",
" (('recreation', 'nature', 'of', 'services'), 16),\n",
" ((',', 'on', 'tuesday', ','), 16),\n",
" (('s', ')', 'of', '('), 16),\n",
" ((',', 'associate', 'project', 'manager'), 16),\n",
" (('(', 'c', ')', '('), 16),\n",
" (('and', 'state', 'mortgage', 'recording'), 16),\n",
" ((',', 'ny', '10007', '('), 16),\n",
" (('manhattan', '.', 'community', 'board'), 16),\n",
" (('mayor', 'will', 'be', 'entering'), 16),\n",
" (('of', '(', 'a', ')'), 16),\n",
" (('the', 'end', 'of', 'each'), 16),\n",
" (('york', ',', 'as', 'tenant'), 16),\n",
" (('the', 'proposed', 'contractor', 'has'), 16),\n",
" (('%', 'of', 'gross', 'receipts'), 16),\n",
" (('city', 'and', 'state', 'mortgage'), 16),\n",
" (('public', 'hearing', '.', 'tdd'), 16),\n",
" (('extend', 'contract', '(', 's'), 16),\n",
" ((')', '(', '2', ')'), 16),\n",
" ((',', 'lessee', '.', 'subject'), 16),\n",
" (('extension', '(', 's', ')'), 16),\n",
" (('york', 'city', 'housing', 'authority'), 16),\n",
" (('staten', 'island', ',', 'new'), 16),\n",
" (('10:00', 'a.m.', 'in', 'the'), 16),\n",
" (('is', 'hereby', 'given', 'of'), 16),\n",
" (('a', ')', 'contract', '('), 16),\n",
" ((')', '(', '3', ')'), 16),\n",
" ((':', 'to', 'be', 'determined'), 16),\n",
" (('into', 'the', 'following', 'extension'), 16),\n",
" ((',', '2014', 'at', '10:00'), 16),\n",
" (('of', 'intent', 'to', 'extend'), 16),\n",
" (('of', 'fort', 'hamilton', 'parkway'), 16),\n",
" (('church', 'street', ',', '12th'), 16),\n",
" (('lessee', '.', 'subject', 'application'), 16),\n",
" (('installments', 'at', 'the', 'end'), 16),\n",
" (('to', ',', 'maintain', ','), 16),\n",
" (('payable', 'in', 'equal', 'monthly'), 16),\n",
" (('to', 'utilize', ':', 'competitive'), 16),\n",
" (('full', 'time', 'equivalent', 'jobs'), 16),\n",
" (('equal', 'monthly', 'installments', 'at'), 16),\n",
" (('proposed', 'contractor', 'has', 'been'), 16),\n",
" (('be', 'entering', 'into', 'the'), 16),\n",
" (('will', 'be', 'entering', 'into'), 16),\n",
" (('terminated', 'by', 'the', 'tenant'), 16),\n",
" (('principal', 'amount', 'of', '$'), 16),\n",
" (('street', ',', 'manhattan', '.'), 16),\n",
" (('intent', 'to', 'extend', 'contract'), 16),\n",
" (('in', 'equal', 'monthly', 'installments'), 16),\n",
" (('5', ')', 'years', ','), 16),\n",
" (('continue', 'to', ',', 'maintain'), 16),\n",
" (('each', 'month', '.', 'the'), 16),\n",
" (('than', 'five', '(', '5'), 16),\n",
" (('the', 'city', 'planning', 'commission'), 16),\n",
" (('application', 'is', 'to', 'install'), 16),\n",
" (('state', 'mortgage', 'recording', 'taxes'), 16),\n",
" (('to', 'continue', 'to', ','), 16),\n",
" (('contractor', 'has', 'been', 'selected'), 16),\n",
" (('of', 'manhattan', '.', 'community'), 16),\n",
" ((',', 'as', 'tenant', ','), 16),\n",
" (('(', 'a', ')', 'contract'), 16),\n",
" (('following', 'extension', '(', 's'), 16),\n",
" (('later', 'than', 'five', '('), 16),\n",
" (('island', ',', 'new', 'york'), 16),\n",
" (('original', 'principal', 'amount', 'of'), 16),\n",
" (('3', ')', 'of', 'the'), 16),\n",
" (('at', '10:00', 'a.m.', 'in'), 16),\n",
" (('avenue', ',', 'brooklyn', ','), 16),\n",
" (('c', ')', '(', '3'), 16),\n",
" (('website', 'at', 'http', ':'), 16),\n",
" (('1', ',', '2015', 'to'), 15),\n",
" (('reasonable', 'time', 'before', 'the'), 15),\n",
" (('143', ',', 'new', 'york'), 15),\n",
" (('.', 'the', 'proposed', 'lease'), 15),\n",
" (('beaver', 'street', ',', '21st'), 15),\n",
" ((':', 'borough', 'of', 'brooklyn'), 15),\n",
" (('verizon', 'relay', 'services', '.'), 15),\n",
" (('practicable', 'at', 'a', 'reasonable'), 15),\n",
" (('unless', 'otherwise', 'noted', ')'), 15),\n",
" (('the', 'following', 'matters', ':'), 15),\n",
" (('changes', 'to', 'the', 'schedule'), 15),\n",
" (('conference', 'room', ',', 'borough'), 15),\n",
" ((\"'s\", 'website', 'at', 'http'), 15),\n",
" ((',', '33', 'beaver', 'street'), 15),\n",
" (('of', 'the', 'general', 'municipal'), 15),\n",
" (('hereby', 'given', 'of', 'a'), 15),\n",
" (('for', 'additional', 'information', ','), 15),\n",
" (('schedule', 'will', 'be', 'posted'), 15),\n",
" (('board', 'room', 'on', 'the'), 15),\n",
" (('the', '12th', 'floor', 'of'), 15),\n",
" (('3-04', '(', 'b', ')'), 15),\n",
" (('posted', 'here', 'and', 'on'), 15),\n",
" (('at', 'the', 'office', 'of'), 15),\n",
" (('meeting', '.', 'for', 'additional'), 15),\n",
" (('of', 'brooklyn', 'community', 'board'), 15),\n",
" (('.', '(', 'final', ')'), 15),\n",
" (('pursuant', 'to', 'section', '3-04'), 15),\n",
" (('a.m.', 'in', 'the', 'board'), 15),\n",
" (('12th', 'floor', 'of', '250'), 15),\n",
" (('(', 'unless', 'otherwise', 'noted'), 15),\n",
" (('in', 'conjunction', 'with', 'the'), 15),\n",
" (('hearing', ',', 'tuesday', 'morning'), 15),\n",
" (('in', 'the', 'board', 'room'), 15),\n",
" (('as', 'tenant', ',', 'of'), 15),\n",
" (('square', 'foot', 'facility', 'located'), 15),\n",
" (('at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml'),\n",
" 15),\n",
" ((',', 'llc', 'for', 'a'), 15),\n",
" (('be', 'posted', 'here', 'and'), 15),\n",
" (('to', 'the', 'schedule', 'will'), 15),\n",
" (('otherwise', 'noted', ')', '.'), 15),\n",
" (('website', 'or', 'contact', '('), 15),\n",
" (('members', 'of', 'the', 'public'), 15),\n",
" (('to', 'section', '3-04', '('), 15),\n",
" (('conference', 'room', 'on', 'the'), 15),\n",
" ((',', 'please', 'visit', 'nycha'), 15),\n",
" (('a', 'public', 'hearing', ','), 15),\n",
" (('training', 'room', '#', '143'), 15),\n",
" (('the', 'board', 'room', 'on'), 15),\n",
" (('of', '250', 'broadway', ','), 15),\n",
" (('extent', 'practicable', 'at', 'a'), 15),\n",
" (('contact', '(', '212', ')'), 15),\n",
" (('public', 'hearing', ',', 'tuesday'), 15),\n",
" (('at', 'a', 'reasonable', 'time'), 15),\n",
" (('.', 'any', 'changes', 'to'), 15),\n",
" (('board', 'of', 'standards', 'and'), 15),\n",
" (('of', 'standards', 'and', 'appeals'), 15),\n",
" (('call', 'verizon', 'relay', 'services'), 15),\n",
" (('//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent'),\n",
" 15),\n",
" (('of', 'new', 'york', '.'), 15),\n",
" (('nycha', \"'s\", 'website', 'at'), 15),\n",
" (('a', 'physical', 'culture', 'establishment'), 15),\n",
" (('is', 'to', 'construct', 'a'), 15),\n",
" (('borough', 'of', 'brooklyn', 'community'), 15),\n",
" ((\"'s\", 'website', 'or', 'contact'), 15),\n",
" ((',', 'training', 'room', '#'), 15),\n",
" (('city', 'charter', ',', 'will'), 15),\n",
" (('any', 'changes', 'to', 'the'), 15),\n",
" ((',', 'tuesday', 'morning', ','), 15),\n",
" (('b', ')', '(', '2'), 15),\n",
" (('additional', 'information', ',', 'please'), 15),\n",
" (('2nd', 'floor', 'conference', 'room'), 15),\n",
" (('on', 'the', '12th', 'floor'), 15),\n",
" (('room', '#', '143', ','), 15),\n",
" (('broadway', ',', 'new', 'york'), 15),\n",
" (('before', 'the', 'meeting', '.'), 15),\n",
" (('public', 'hearing', 'in', 'the'), 15),\n",
" (('visit', 'nycha', \"'s\", 'website'), 15),\n",
" (('will', 'hold', 'a', 'public'), 15),\n",
" (('room', ',', 'borough', 'of'), 15),\n",
" (('north', ',', 'new', 'york'), 15),\n",
" (('.', 'for', 'additional', 'information'), 15),\n",
" (('will', 'be', 'posted', 'here'), 15),\n",
" (('(', 'final', ')', '('), 15),\n",
" ((',', '21st', 'floor', ','), 15),\n",
" (('bronx', ',', 'new', 'york'), 15),\n",
" ((',', 'bronx', ',', 'new'), 15),\n",
" ((':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the'),\n",
" 15),\n",
" (('the', 'schedule', 'will', 'be'), 15),\n",
" (('please', 'visit', 'nycha', \"'s\"), 15),\n",
" (('services', 'start', 'date', 'of'), 15),\n",
" (('.', 'project', 'description', ':'), 15),\n",
" (('agency', ':', '0', 'nan'), 15),\n",
" ((',', 'ny', '10007', '.'), 15),\n",
" (('250', 'broadway', ',', 'new'), 15),\n",
" (('to', 'the', 'extent', 'practicable'), 15),\n",
" (('33', 'beaver', 'street', ','), 15),\n",
" ((',', 'office', 'of', 'procurement'), 15),\n",
" (('may', 'be', 'obtained', 'at'), 15),\n",
" (('information', ',', 'please', 'visit'), 15),\n",
" (('the', 'date', 'of', 'approval'), 15),\n",
" (('floor', 'of', '250', 'broadway'), 15),\n",
" (('new', 'york', 'city', 'administration'), 15),\n",
" (('here', 'and', 'on', 'nycha'), 15),\n",
" (('floor', ',', 'training', 'room'), 15),\n",
" ((',', '2nd', 'floor', 'conference'), 15),\n",
" (('and', 'on', 'nycha', \"'s\"), 15),\n",
" (('at', 'one', 'centre', 'street'), 15),\n",
" (('12th', 'floor', ',', 'training'), 15),\n",
" (('foot', 'facility', 'located', 'on'), 15),\n",
" (('a', 'reasonable', 'time', 'before'), 15),\n",
" (('reade', 'street', ',', '2nd'), 15),\n",
" (('section', '3-04', '(', 'b'), 15),\n",
" (('the', 'extent', 'practicable', 'at'), 15),\n",
" (('street', ',', '21st', 'floor'), 15),\n",
" (('room', 'on', 'the', '12th'), 15),\n",
" ((',', '2014', ',', '10:00'), 15),\n",
" (('contract', 'is', 'available', 'for'), 15),\n",
" (('or', 'contact', '(', '212'), 15),\n",
" (('facility', 'located', 'on', 'a'), 15),\n",
" (('given', 'of', 'a', 'public'), 15),\n",
" (('http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to'),\n",
" 15),\n",
" (('time', 'before', 'the', 'meeting'), 15),\n",
" (('#', '143', ',', 'new'), 15),\n",
" (('in', 'the', 'commission', \"'s\"), 14),\n",
" (('of', 'approval', 'by', 'the'), 14),\n",
" (('824', 'of', 'the', 'new'), 14),\n",
" (('physical', 'culture', 'establishment', '('), 14),\n",
" (('inspection', ',', 'please', 'contact'), 14),\n",
" ((':', 'ddc', 'description', 'of'), 14),\n",
" (('board', 'rules', '.', 'a'), 14),\n",
" (('approval', 'by', 'the', 'mayor'), 14),\n",
" (('real', 'property', 'acquisitions', 'and'), 14),\n",
" (('flushing', ',', 'new', 'york'), 14),\n",
" (('0', 'agency', ':', 'ddc'), 14),\n",
" (('dispositions', 'public', 'hearing', ','), 14),\n",
" (('a', 'real', 'property', 'acquisitions'), 14),\n",
" (('386-0315', '.', 'individuals', 'requesting'), 14),\n",
" (('2014', 'at', '10:00', 'a.m.'), 14),\n",
" (('.', 'notice', 'is', 'hereby'), 14),\n",
" (('n.y.', '10007', '.', 'to'), 14),\n",
" (('to', 'schedule', 'an', 'inspection'), 14),\n",
" (('.', 'to', 'schedule', 'an'), 14),\n",
" ((',', 'as', 'amended', ','), 14),\n",
" (('please', 'contact', 'chris', 'fleming'), 14),\n",
" ((':', 'department', 'of', 'environmental'), 14),\n",
" ((',', 'please', 'contact', 'chris'), 14),\n",
" (('application', 'submitted', 'by', 'the'), 14),\n",
" (('inspection', 'of', 'the', 'proposed'), 14),\n",
" (('the', 'contract', 'term', 'shall'), 14),\n",
" (('date', 'of', 'approval', 'by'), 14),\n",
" (('street', ',', 'room', '2000'), 14),\n",
" ((',', '(', '718', ')'), 14),\n",
" (('with', 'section', '824', 'of'), 14),\n",
" (('project', 'manager', ',', 'associate'), 14),\n",
" (('room', '2000', 'north', ','), 14),\n",
" (('information', ',', 'including', 'public'), 14),\n",
" (('borough', 'of', 'queens', '.'), 14),\n",
" (('schedule', 'an', 'inspection', ','), 14),\n",
" (('obtained', 'at', 'one', 'centre'), 14),\n",
" (('december', '15', ',', '2014'), 14),\n",
" (('2000', 'north', ',', 'new'), 14),\n",
" ((',', 'room', '2000', 'north'), 14),\n",
" (('.', 'further', 'information', ','), 14),\n",
" (('an', 'inspection', ',', 'please'), 14),\n",
" (('broadway', ',', '2nd', 'floor'), 14),\n",
" (('center', ',', '42-09', '28th'), 14),\n",
" (('department', 'of', 'design', 'and'), 14),\n",
" (('accordance', 'with', 'section', '824'), 14),\n",
" (('including', 'public', 'inspection', 'of'), 14),\n",
" (('construction', 'description', 'of', 'services'), 14),\n",
" ((',', 'new', 'york', 'having'), 14),\n",
" (('new', 'york', 'having', 'an'), 14),\n",
" (('for', 'a', 'period', 'of'), 14),\n",
" (('public', 'hearing', ',', 'in'), 14),\n",
" (('.', 'the', 'contract', 'term'), 14),\n",
" (('agency', ':', 'ddc', 'description'), 14),\n",
" (('city', 'administration', 'for', 'children'), 14),\n",
" (('n.y.', '10007', ',', '('), 14),\n",
" (('of', 'brooklyn', '(', 'to'), 14),\n",
" ((':', 'department', 'of', 'design'), 14),\n",
" (('chris', 'fleming', 'at', '('), 14),\n",
" (('n.y.', '10007', ',', 'on'), 14),\n",
" (('the', 'proposed', 'lease', 'may'), 14),\n",
" ((',', 'bounded', 'on', 'the'), 14),\n",
" (('having', 'an', 'approximate', 'original'), 14),\n",
" (('hall', ',', 'third', 'floor'), 14),\n",
" (('10007', '.', 'to', 'schedule'), 14),\n",
" (('of', 'design', 'and', 'construction'), 14),\n",
" (('section', '824', 'of', 'the'), 14),\n",
" (('hearing', ',', 'in', 'accordance'), 14),\n",
" (('59-17', 'junction', 'boulevard', ','), 14),\n",
" (('description', 'of', 'services', ':'), 14),\n",
" (('and', 'dispositions', 'public', 'hearing'), 14),\n",
" (('contact', 'chris', 'fleming', 'at'), 14),\n",
" (('given', 'that', 'a', 'real'), 14),\n",
" (('york', 'having', 'an', 'approximate'), 14),\n",
" (('ddc', 'description', 'of', 'services'), 14),\n",
" (('lease', 'may', 'be', 'obtained'), 14),\n",
" (('mortgage', 'recording', 'taxes', '.'), 14),\n",
" (('acquisitions', 'and', 'dispositions', 'public'), 14),\n",
" (('charter', ',', 'will', 'be'), 14),\n",
" (('253', 'broadway', ',', '2nd'), 14),\n",
" ((',', 'will', 'be', 'held'), 14),\n",
" (('between', 'the', 'department', 'of'), 14),\n",
" ((',', '14th', 'floor', ','), 14),\n",
" (('method', ',', 'pursuant', 'to'), 14),\n",
" (('(', '212', ')', '386-0315'), 14),\n",
" (('an', 'approximate', 'original', 'principal'), 14),\n",
" ((',', 'at', '5:30', 'p.m.'), 14),\n",
" (('manager', ',', 'associate', 'project'), 14),\n",
" (('9th', 'floor', 'north', ','), 14),\n",
" (('10007', 'at', '9:15', 'a.m.'), 14),\n",
" (('be', 'obtained', 'at', 'one'), 14),\n",
" (('tenant', ',', 'of', 'approximately'), 14),\n",
" (('further', 'information', ',', 'including'), 14),\n",
" (('212', ')', '386-0315', '.'), 14),\n",
" ((':', 'competitive', 'sealed', 'bid'), 14),\n",
" ((')', '386-0315', '.', 'individuals'), 14),\n",
" (('fleming', 'at', '(', '212'), 14),\n",
" (('york', 'city', 'administration', 'for'), 14),\n",
" (('department', 'of', 'citywide', 'administrative'), 14),\n",
" ((',', 'flushing', ',', 'new'), 14),\n",
" (('of', 'citywide', 'administrative', 'services'), 14),\n",
" ((',', 'including', 'public', 'inspection'), 14),\n",
" (('the', 'human', 'resources', 'administration'), 14),\n",
" (('a.m.', ',', '22', 'reade'), 14),\n",
" (('that', 'a', 'real', 'property'), 14),\n",
" (('gotham', 'center', ',', '42-09'), 14),\n",
" (('public', 'inspection', 'of', 'the'), 14),\n",
" ((':', '0', 'notice', 'of'), 14),\n",
" (('property', 'acquisitions', 'and', 'dispositions'), 14),\n",
" (('city', 'hall', ',', 'third'), 14),\n",
" (('10007', ',', 'on', 'the'), 14),\n",
" (('at', 'gotham', 'center', ','), 14),\n",
" ((',', '9th', 'floor', 'north'), 14),\n",
" ((',', 'brooklyn', '.', '('), 14),\n",
" (('proposed', 'lease', 'may', 'be'), 14),\n",
" (('ny', '10007', ',', 'at'), 14),\n",
" (('the', 'department', 'of', 'citywide'), 14),\n",
" (('be', 'terminated', 'by', 'the'), 13),\n",
" (('from', 'january', '1', ','), 13),\n",
" (('date', 'of', 'original', 'contract'), 13),\n",
" (('ny', '10007', 'at', '9:15'), 13),\n",
" (('taxation', 'pursuant', 'to', 'section'), 13),\n",
" (('the', 'matter', 'of', 'the'), 13),\n",
" (('new', 'york', 'city', 'economic'), 13),\n",
" ((',', '2014', 'at', '7:00'), 13),\n",
" ((':', 'requirements', 'contract', 'for'), 13),\n",
" (('of', 'the', 'department', 'of'), 13),\n",
" (('york', 'city', 'economic', 'development'), 13),\n",
" (('1', ',', '2014', 'to'), 13),\n",
" (('section', '501', '(', 'c'), 13),\n",
" (('services', 'of', 'the', 'city'), 13),\n",
" (('501', '(', 'c', ')'), 13),\n",
" (('llc', 'pursuant', 'to', 'sections'), 13),\n",
" (('may', 'determine', '.', 'the'), 13),\n",
" (('method', 'of', 'original', 'contract'), 13),\n",
" (('york', ',', 'ny', '10038'), 13),\n",
" (('special', 'permit', 'pursuant', 'to'), 13),\n",
" (('permit', '(', '73-36', ')'), 13),\n",
" (('held', 'at', 'the', 'administration'), 13),\n",
" (('average', 'and', 'range', ':'), 13),\n",
" (('is', 'available', 'for', 'public'), 13),\n",
" (('to', 'participate', 'in', 'the'), 13),\n",
" (('corporation', 'exempt', 'from', 'federal'), 13),\n",
" (('the', 'borough', 'of', 'queens'), 13),\n",
" (('hourly', 'wage', 'average', 'and'), 13),\n",
" (('special', 'permit', '(', '73-36'), 13),\n",
" (('contract', 'term', 'shall', 'be'), 13),\n",
" (('the', 'nyc', 'department', 'of'), 13),\n",
" (('avenue', ',', 'staten', 'island'), 13),\n",
" (('are', 'scheduled', 'for', 'the'), 13),\n",
" ((',', 'ny', '10007', 'at'), 13),\n",
" (('212', ')', '306-6088', '.'), 13),\n",
" ((',', 'and', 'a', 'line'), 13),\n",
" (('at', 'the', 'administration', 'for'), 13),\n",
" (('services', ',', '150', 'william'), 13),\n",
" (('certificate', 'of', 'appropriateness', 'an'), 13),\n",
" (('children', \"'s\", 'services', 'of'), 13),\n",
" (('from', 'federal', 'taxation', 'pursuant'), 13),\n",
" ((',', '2011', 'to', 'present'), 13),\n",
" (('hearing', 'notice', 'is', 'hereby'), 13),\n",
" (('end', 'date', 'of', 'original'), 13),\n",
" (('exempt', 'from', 'federal', 'taxation'), 13),\n",
" (('has', 'been', 'selected', 'by'), 13),\n",
" (('by', 'means', 'of', 'the'), 13),\n",
" (('.', 'visit', 'http', ':'), 13),\n",
" (('with', 'respect', 'to', 'the'), 13),\n",
" (('.', 'the', 'proposed', 'contractor'), 13),\n",
" (('in', 'the', 'hearing', 'room'), 13),\n",
" (('may', 'be', 'terminated', 'by'), 13),\n",
" (('to', 'section', '501', '('), 13),\n",
" (('contract', 'between', 'the', 'department'), 13),\n",
" (('and', 'construction', 'description', 'of'), 13),\n",
" (('a.m.', ',', 'on', 'the'), 13),\n",
" (('federal', 'taxation', 'pursuant', 'to'), 13),\n",
" (('the', 'general', 'municipal', 'law'), 13),\n",
" (('approximate', 'original', 'principal', 'amount'), 13),\n",
" (('associate', 'project', 'manager', ','), 13),\n",
" (('wage', 'average', 'and', 'range'), 13),\n",
" (('.', 'board', 'of', 'health'), 13),\n",
" (('pursuant', 'to', 'section', '501'), 13),\n",
" (('determine', '.', 'the', 'proposed'), 13),\n",
" (('.', 'projected', 'jobs', ':'), 13),\n",
" (('between', 'the', 'administration', 'for'), 13),\n",
" (('.', 'hourly', 'wage', 'average'), 13),\n",
" (('design', 'and', 'construction', 'description'), 13),\n",
" (('city', 'economic', 'development', 'corporation'), 13),\n",
" ((\"'s\", 'services', 'of', 'the'), 13),\n",
" (('public', 'hearing', 'notice', 'is'), 13),\n",
" (('noted', ')', '.', 'any'), 12),\n",
" ((',', '7th', 'floor', ','), 12),\n",
" (('public', 'hearing', 'meets', 'in'), 12),\n",
" ((',', 'on', 'the', 'third'), 12),\n",
" (('meets', 'at', '40', 'rector'), 12),\n",
" ((',', 'at', '8:00', 'a.m'), 12),\n",
" (('noticed', 'by', 'the', 'commission'), 12),\n",
" ((',', 'unless', 'otherwise', 'ordered'), 12),\n",
" (('.', 'franchise', 'and', 'concession'), 12),\n",
" (('thursday', ',', 'commencing', '10:00'), 12),\n",
" (('annual', 'rent', 'of', '$'), 12),\n",
" (('at', '9:30', 'a.m.', 'and'), 12),\n",
" (('the', 'hall', 'of', 'the'), 12),\n",
" (('of', 'manhattan', ',', 'in'), 12),\n",
" (('meets', 'at', 'gotham', 'center'), 12),\n",
" (('in', 'councilman', \"'s\", 'chamber'), 12),\n",
" (('housing', 'authority', 'board', 'meetings'), 12),\n",
" (('2014', 'at', '7:00', 'p.m.'), 12),\n",
" (('business', 'days', 'before', 'the'), 12),\n",
" ((\"'\", 'retirement', 'system', 'meets'), 12),\n",
" ((',', 'unless', 'otherwise', 'noticed'), 12),\n",
" (('the', 'fourth', 'wednesday', 'of'), 12),\n",
" (('broadway', ',', '7th', 'floor'), 12),\n",
" (('tuesday', 'public', 'hearing', 'in'), 12),\n",
" (('tuesday', 'of', 'july', 'at'), 12),\n",
" (('or', 'call', '212-788-3071', '.'), 12),\n",
" (('the', 'commissioner', '.', 'environmental'), 12),\n",
" (('hearing', 'meets', 'in', 'spector'), 12),\n",
" (('at', '1:30', 'p.m.', 'and'), 12),\n",
" (('to', 'the', 'following', 'schedule'), 12),\n",
" ((':', 'this', 'is', 'a'), 12),\n",
" (('human', 'rights', 'meets', 'on'), 12),\n",
" (('administrative', 'services', 'may', 'determine'), 12),\n",
" (('board', 'meets', 'at', '100'), 12),\n",
" (('district', '1', ',', 'manhattan'), 12),\n",
" (('.', 'any', 'person', 'requiring'), 12),\n",
" ((',', 'at', '10:30', 'a.m.'), 12),\n",
" (('division', 'of', 'citywide', 'personnel'), 12),\n",
" (('meeting', 'schedule', ',', 'please'), 12),\n",
" (('twice', 'a', 'month', 'in'), 12),\n",
" (('among', 'other', 'terms', 'and'), 12),\n",
" ((',', 'weekly', ',', 'on'), 12),\n",
" (('a.m.', 'and', 'are', 'customarily'), 12),\n",
" (('health', 'meets', 'at', 'gotham'), 12),\n",
" (('.', 'for', 'meeting', 'schedule'), 12),\n",
" (('at', 'the', 'board', \"'s\"), 12),\n",
" (('the', 'president', '.', 'manhattan'), 12),\n",
" (('at', '6:00', 'p.m', '.'), 12),\n",
" (('hearing', 'room', ',', 'municipal'), 12),\n",
" (('10006', '.', 'visit', 'http'), 12),\n",
" (('copy', 'of', 'the', 'draft'), 12),\n",
" (('first', 'tuesday', 'of', 'july'), 12),\n",
" (('ordered', 'by', 'the', 'commission'), 12),\n",
" (('the', 'third', 'thursday', 'of'), 12),\n",
" (('offices', ',', 'at', '40'), 12),\n",
" (('www.nyc.gov/landmarks', '.', 'employees', \"'\"), 12),\n",
" ...]"
]
}
],
"prompt_number": 28
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"corpus5grams = list(ngrams(lowerTokens,5))\n",
"corpus5gramFreqs = nltk.FreqDist(corpus5grams)\n",
"corpus5gramFreqs.most_common()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 29,
"text": [
"[(('personnel', 'in', 'substantially', 'similar', 'titles'), 272),\n",
" (('in', 'substantially', 'similar', 'titles', 'within'), 269),\n",
" (('similar', 'titles', 'within', 'agency', ':'), 264),\n",
" (('substantially', 'similar', 'titles', 'within', 'agency'), 264),\n",
" (('--', '--', '--', '--', '--'), 192),\n",
" (('of', 'the', 'proposed', 'contract', ':'), 186),\n",
" (('date', 'of', 'the', 'proposed', 'contract'), 186),\n",
" (('notice', 'is', 'hereby', 'given', 'that'), 185),\n",
" ((',', 'new', 'york', ',', 'ny'), 152),\n",
" (('agency', 'intends', 'to', 'utilize', ':'), 137),\n",
" (('headcount', 'of', 'personnel', 'in', 'substantially'), 136),\n",
" (('of', 'personnel', 'in', 'substantially', 'similar'), 136),\n",
" (('the', 'agency', 'intends', 'to', 'utilize'), 134),\n",
" (('start', 'date', 'of', 'the', 'proposed'), 131),\n",
" (('end', 'date', 'of', 'the', 'proposed'), 131),\n",
" (('(', 's', ')', 'not', 'included'), 126),\n",
" (('annual', 'contracting', 'plan', 'and', 'schedule'), 126),\n",
" (('s', ')', 'not', 'included', 'in'), 126),\n",
" (('maintain', ',', 'and', 'operate', 'an'), 124),\n",
" (('caf', 'for', 'a', 'term', 'of'), 124),\n",
" (('2015', 'annual', 'contracting', 'plan', 'and'), 124),\n",
" (('fy', '2015', 'annual', 'contracting', 'plan'), 124),\n",
" (('sidewalk', 'caf', 'for', 'a', 'term'), 124),\n",
" (('in', 'the', 'borough', 'of', 'manhattan'), 121),\n",
" (('unenclosed', 'sidewalk', 'caf', 'for', 'a'), 120),\n",
" (('is', 'hereby', 'given', 'that', 'the'), 116),\n",
" (('an', 'unenclosed', 'sidewalk', 'caf', 'for'), 112),\n",
" (('operate', 'an', 'unenclosed', 'sidewalk', 'caf'), 112),\n",
" ((',', 'and', 'operate', 'an', 'unenclosed'), 112),\n",
" (('and', 'operate', 'an', 'unenclosed', 'sidewalk'), 112),\n",
" (('the', 'city', 'of', 'new', 'york'), 104),\n",
" (('method', 'of', 'solicitation', 'the', 'agency'), 103),\n",
" (('of', 'solicitation', 'the', 'agency', 'intends'), 103),\n",
" (('solicitation', 'the', 'agency', 'intends', 'to'), 103),\n",
" (('a', 'term', 'of', 'four', 'years'), 102),\n",
" (('for', 'a', 'term', 'of', 'four'), 102),\n",
" (('of', 'four', 'years', '.', ')'), 101),\n",
" (('term', 'of', 'four', 'years', '.'), 101),\n",
" (('the', 'borough', 'of', 'manhattan', '('), 100),\n",
" ((',', '22', 'reade', 'street', ','), 100),\n",
" (('borough', 'of', 'manhattan', '(', 'to'), 99),\n",
" (('to', 'maintain', ',', 'and', 'operate'), 98),\n",
" (('floor', ',', 'new', 'york', ','), 96),\n",
" (('solicitation', '(', 's', ')', 'not'), 94),\n",
" (('titles', 'within', 'agency', ':', 'none'), 93),\n",
" (('none', 'headcount', 'of', 'personnel', 'in'), 92),\n",
" (('agency', ':', 'none', 'headcount', 'of'), 92),\n",
" ((':', 'none', 'headcount', 'of', 'personnel'), 92),\n",
" (('within', 'agency', ':', 'none', 'headcount'), 91),\n",
" (('continue', 'to', 'maintain', ',', 'and'), 89),\n",
" (('of', 'manhattan', '(', 'to', 'continue'), 87),\n",
" (('to', 'continue', 'to', 'maintain', ','), 86),\n",
" (('manhattan', '(', 'to', 'continue', 'to'), 86),\n",
" (('(', 'to', 'continue', 'to', 'maintain'), 86),\n",
" (('of', 'the', 'new', 'york', 'city'), 83),\n",
" (('titles', 'within', 'agency', ':', '0'), 83),\n",
" (('spector', 'hall', ',', '22', 'reade'), 82),\n",
" (('hall', ',', '22', 'reade', 'street'), 82),\n",
" (('in', 'spector', 'hall', ',', '22'), 81),\n",
" (('description', 'of', 'services', 'sought', ':'), 80),\n",
" (('at', 'the', 'call', 'of', 'the'), 75),\n",
" (('street', ',', 'new', 'york', ','), 75),\n",
" (('new', 'york', ',', 'ny', '10007'), 68),\n",
" (('hereby', 'given', 'that', 'the', 'mayor'), 65),\n",
" (('of', 'the', 'city', 'of', 'new'), 64),\n",
" (('and', 'schedule', 'notice', 'is', 'hereby'), 63),\n",
" (('charter', '312', '(', 'a', ')'), 63),\n",
" (('contracting', 'plan', 'and', 'schedule', 'notice'), 63),\n",
" (('not', 'included', 'in', 'the', 'fy'), 63),\n",
" (('to', 'new', 'york', 'city', 'charter'), 63),\n",
" (('is', 'published', 'pursuant', 'to', 'new'), 63),\n",
" (('schedule', 'notice', 'is', 'hereby', 'given'), 63),\n",
" (('york', 'city', 'charter', '312', '('), 63),\n",
" (('and', 'schedule', 'that', 'is', 'published'), 63),\n",
" (('plan', 'and', 'schedule', 'notice', 'is'), 63),\n",
" (('312', '(', 'a', ')', ':'), 63),\n",
" (('city', 'charter', '312', '(', 'a'), 63),\n",
" (('(', 'a', ')', ':', 'agency'), 63),\n",
" (('published', 'pursuant', 'to', 'new', 'york'), 63),\n",
" (('plan', 'and', 'schedule', 'that', 'is'), 63),\n",
" (('a', ')', ':', 'agency', ':'), 63),\n",
" ((',', 'new', 'york', ',', 'n.y.'), 63),\n",
" (('new', 'york', 'city', 'charter', '312'), 63),\n",
" (('that', 'the', 'mayor', 'will', 'be'), 63),\n",
" ((')', 'not', 'included', 'in', 'the'), 63),\n",
" (('pursuant', 'to', 'new', 'york', 'city'), 63),\n",
" (('that', 'is', 'published', 'pursuant', 'to'), 63),\n",
" (('contracting', 'plan', 'and', 'schedule', 'that'), 63),\n",
" (('given', 'that', 'the', 'mayor', 'will'), 63),\n",
" (('schedule', 'that', 'is', 'published', 'pursuant'), 63),\n",
" ((')', 'not', 'included', 'in', 'fy'), 63),\n",
" (('not', 'included', 'in', 'fy', '2015'), 62),\n",
" (('the', 'fy', '2015', 'annual', 'contracting'), 62),\n",
" (('included', 'in', 'the', 'fy', '2015'), 62),\n",
" ((',', 'borough', 'of', 'manhattan', ','), 62),\n",
" (('in', 'fy', '2015', 'annual', 'contracting'), 62),\n",
" (('in', 'the', 'fy', '2015', 'annual'), 62),\n",
" (('call', 'of', 'the', 'chairman', '.'), 62),\n",
" (('included', 'in', 'fy', '2015', 'annual'), 62),\n",
" (('for', 'the', 'period', 'july', '1'), 61),\n",
" (('the', 'period', 'july', '1', ','), 61),\n",
" (('meets', 'in', 'spector', 'hall', ','), 60),\n",
" (('new', 'york', ',', 'new', 'york'), 53),\n",
" (('the', 'new', 'york', 'city', 'charter'), 53),\n",
" (('the', 'call', 'of', 'the', 'chairman'), 51),\n",
" (('ave', 'in', 'the', 'borough', 'of'), 51),\n",
" (('reade', 'street', ',', 'main', 'floor'), 50),\n",
" (('street', ',', 'main', 'floor', ','), 50),\n",
" (('22', 'reade', 'street', ',', 'main'), 50),\n",
" (('of', 'environmental', 'remediation', '(', 'oer'), 50),\n",
" (('environmental', 'remediation', '(', 'oer', ')'), 50),\n",
" (('new', 'york', 'city', 'office', 'of'), 50),\n",
" (('office', 'of', 'environmental', 'remediation', '('), 50),\n",
" (('in', 'the', 'matter', 'of', 'a'), 49),\n",
" ((':', 'task', 'order', 'personnel', 'in'), 49),\n",
" (('remediation', '(', 'oer', ')', 'has'), 49),\n",
" (('(', 'oer', ')', 'has', 'received'), 49),\n",
" (('order', 'personnel', 'in', 'substantially', 'similar'), 49),\n",
" (('the', 'new', 'york', 'city', 'office'), 49),\n",
" (('oer', ')', 'has', 'received', 'an'), 49),\n",
" (('assigned', 'to', 'this', 'project', '.'), 49),\n",
" (('received', 'an', 'nyc', 'voluntary', 'cleanup'), 49),\n",
" (('utilize', ':', 'task', 'order', 'personnel'), 49),\n",
" (('nyc', 'voluntary', 'cleanup', 'program', '('), 49),\n",
" (('is', 'assigned', 'to', 'this', 'project'), 49),\n",
" (('program', '(', 'vcp', ')', 'application'), 49),\n",
" (('task', 'order', 'personnel', 'in', 'substantially'), 49),\n",
" (('city', 'office', 'of', 'environmental', 'remediation'), 49),\n",
" (('york', 'city', 'office', 'of', 'environmental'), 49),\n",
" (('has', 'received', 'an', 'nyc', 'voluntary'), 49),\n",
" (('cleanup', 'program', '(', 'vcp', ')'), 49),\n",
" ((')', 'has', 'received', 'an', 'nyc'), 49),\n",
" (('intends', 'to', 'utilize', ':', 'task'), 49),\n",
" (('voluntary', 'cleanup', 'program', '(', 'vcp'), 49),\n",
" (('an', 'nyc', 'voluntary', 'cleanup', 'program'), 49),\n",
" (('to', 'utilize', ':', 'task', 'order'), 49),\n",
" ((',', 'times', 'and', 'location', 'as'), 48),\n",
" (('times', 'and', 'location', 'as', 'warranted'), 48),\n",
" (('administration', 'for', 'children', \"'s\", 'services'), 48),\n",
" (('days', ',', 'times', 'and', 'location'), 48),\n",
" (('and', 'location', 'as', 'warranted', '.'), 48),\n",
" (('other', 'days', ',', 'times', 'and'), 48),\n",
" (('for', 'a', 'site', 'located', 'at'), 48),\n",
" (('(', 'vcp', ')', 'application', 'from'), 48),\n",
" (('is', 'hereby', 'given', 'that', 'a'), 48),\n",
" (('zoning', 'district', '.', 'premises', 'affected'), 48),\n",
" ((',', 'and', 'other', 'days', ','), 48),\n",
" (('and', 'other', 'days', ',', 'times'), 48),\n",
" (('the', 'following', 'solicitation', '(', 's'), 47),\n",
" (('mayor', 'will', 'be', 'issuing', 'the'), 47),\n",
" (('of', 'intent', 'to', 'issue', 'new'), 47),\n",
" (('to', 'issue', 'new', 'solicitation', '('), 47),\n",
" (('new', 'solicitation', '(', 's', ')'), 47),\n",
" (('following', 'solicitation', '(', 's', ')'), 47),\n",
" (('issuing', 'the', 'following', 'solicitation', '('), 47),\n",
" (('will', 'be', 'issuing', 'the', 'following'), 47),\n",
" (('notice', 'of', 'intent', 'to', 'issue'), 47),\n",
" (('public', 'hearing', 'will', 'be', 'held'), 47),\n",
" (('the', 'mayor', 'will', 'be', 'issuing'), 47),\n",
" (('intent', 'to', 'issue', 'new', 'solicitation'), 47),\n",
" (('be', 'issuing', 'the', 'following', 'solicitation'), 47),\n",
" (('issue', 'new', 'solicitation', '(', 's'), 47),\n",
" (('agency', ':', '0', 'agency', ':'), 46),\n",
" (('new', 'york', ',', 'n.y.', '10007'), 46),\n",
" ((',', 'manhattan', 'certificate', 'of', 'appropriateness'), 46),\n",
" (('.', 'the', 'new', 'york', 'city'), 45),\n",
" (('project', '.', 'the', 'new', 'york'), 45),\n",
" (('this', 'project', '.', 'the', 'new'), 45),\n",
" (('within', 'agency', ':', '0', 'agency'), 45),\n",
" (('to', 'this', 'project', '.', 'the'), 45),\n",
" ((')', ':', 'agency', ':', 'department'), 44),\n",
" ((':', 'agency', ':', 'department', 'of'), 44),\n",
" ((',', 'manhattan', ',', 'new', 'york'), 44),\n",
" (('city', 'of', 'new', 'york', ','), 43),\n",
" ((':', 'department', 'of', 'information', 'technology'), 41),\n",
" (('new', 'york', 'city', 'department', 'of'), 41),\n",
" (('agency', ':', 'department', 'of', 'information'), 41),\n",
" (('of', 'the', 'proposed', 'renewed/extended', 'contract'), 40),\n",
" (('date', 'of', 'the', 'proposed', 'renewed/extended'), 40),\n",
" (('the', 'proposed', 'renewed/extended', 'contract', ':'), 40),\n",
" (('public', 'notice', 'is', 'hereby', 'given'), 39),\n",
" (('manhattan', 'certificate', 'of', 'appropriateness', 'a'), 38),\n",
" (('at', '40', 'rector', 'street', ','), 38),\n",
" ((',', 'new', 'york', '10007', ','), 38),\n",
" (('the', 'matter', 'of', 'an', 'application'), 37),\n",
" (('a', 'public', 'hearing', 'will', 'be'), 37),\n",
" ((',', 'new', 'york', ',', 'new'), 37),\n",
" (('main', 'floor', ',', 'manhattan', ','), 36),\n",
" (('a.m.', ',', 'and', 'other', 'days'), 36),\n",
" (('scheduled', 'for', 'public', 'hearing', 'by'), 36),\n",
" (('of', 'the', 'chairman', '.', 'board'), 36),\n",
" (('commencing', '10:00', 'a.m.', ',', 'and'), 36),\n",
" (('for', 'public', 'hearing', 'by', 'community'), 36),\n",
" (('the', 'following', 'matters', 'have', 'been'), 36),\n",
" (('10:00', 'a.m.', ',', 'and', 'other'), 36),\n",
" ((',', 'main', 'floor', ',', 'manhattan'), 36),\n",
" (('the', 'chairman', '.', 'board', 'of'), 36),\n",
" (('given', 'that', 'the', 'following', 'matters'), 36),\n",
" (('been', 'scheduled', 'for', 'public', 'hearing'), 36),\n",
" (('matters', 'have', 'been', 'scheduled', 'for'), 36),\n",
" ((',', 'commencing', '10:00', 'a.m.', ','), 36),\n",
" (('hereby', 'given', 'that', 'the', 'following'), 36),\n",
" (('that', 'the', 'following', 'matters', 'have'), 36),\n",
" (('have', 'been', 'scheduled', 'for', 'public'), 36),\n",
" ((',', 'municipal', 'building', ',', 'manhattan'), 36),\n",
" (('municipal', 'building', ',', 'manhattan', ','), 36),\n",
" (('following', 'matters', 'have', 'been', 'scheduled'), 36),\n",
" (('in', 'the', 'borough', 'of', 'brooklyn'), 35),\n",
" (('22', 'reade', 'street', ',', 'new'), 35),\n",
" (('in', 'the', 'matter', 'of', 'an'), 35),\n",
" (('reade', 'street', ',', 'new', 'york'), 35),\n",
" (('days', 'prior', 'to', 'the', 'public'), 35),\n",
" (('public', 'hearing', 'by', 'community', 'board'), 35),\n",
" (('by', 'community', 'board', ':', 'borough'), 35),\n",
" (('hearing', 'by', 'community', 'board', ':'), 35),\n",
" (('individuals', 'requesting', 'sign', 'language', 'interpreters'), 35),\n",
" ((',', 'in', 'the', 'borough', 'of'), 35),\n",
" (('community', 'board', ':', 'borough', 'of'), 35),\n",
" (('requesting', 'sign', 'language', 'interpreters', 'should'), 35),\n",
" (('matter', 'of', 'an', 'application', 'submitted'), 34),\n",
" ((',', 'owner', '.', 'subject', 'application'), 33),\n",
" (('the', 'matter', 'of', 'a', 'proposed'), 33),\n",
" (('hearing', 'will', 'be', 'held', 'at'), 33),\n",
" (('of', 'an', 'application', 'submitted', 'by'), 33),\n",
" (('at', '10:00', 'a.m.', 'on', 'the'), 32),\n",
" ((':', '0', 'agency', ':', 'department'), 32),\n",
" (('to', 'the', 'public', 'hearing', '.'), 32),\n",
" (('prior', 'to', 'the', 'public', 'hearing'), 32),\n",
" (('nature', 'of', 'services', 'performed', 'under'), 32),\n",
" (('s', ')', 'the', 'agency', 'intends'), 32),\n",
" (('new', 'start', 'date', 'of', 'the'), 32),\n",
" (('0', 'agency', ':', 'department', 'of'), 32),\n",
" (('of', 'the', 'procurement', 'policy', 'board'), 32),\n",
" (('new', 'end', 'date', 'of', 'the'), 32),\n",
" (('performed', 'under', 'the', 'contract', ':'), 32),\n",
" (('of', 'services', 'performed', 'under', 'the'), 32),\n",
" (('services', 'performed', 'under', 'the', 'contract'), 32),\n",
" (('the', 'new', 'york', 'city', 'department'), 32),\n",
" (('contract', '(', 's', ')', 'not'), 32),\n",
" (('floor', ',', 'borough', 'of', 'manhattan'), 32),\n",
" (('(', 's', ')', 'the', 'agency'), 32),\n",
" (('reason', '(', 's', ')', 'the'), 32),\n",
" ((')', 'the', 'agency', 'intends', 'to'), 32),\n",
" (('the', 'nature', 'of', 'services', 'performed'), 31),\n",
" (('sign', 'language', 'interpreters', 'should', 'contact'), 31),\n",
" (('to', 'the', 'nature', 'of', 'services'), 31),\n",
" (('the', 'mayor', \"'s\", 'office', 'of'), 31),\n",
" (('sought', 'to', 'the', 'nature', 'of'), 31),\n",
" (('modifications', 'sought', 'to', 'the', 'nature'), 31),\n",
" (('the', 'administration', 'for', 'children', \"'s\"), 31),\n",
" (('language', 'interpreters', 'should', 'contact', 'the'), 30),\n",
" (('york', '.', 'site', 'no', '.'), 30),\n",
" (('new', 'york', '.', 'site', 'no'), 30),\n",
" ((',', 'new', 'york', '.', 'site'), 30),\n",
" ((',', 'brooklyn', ',', 'new', 'york'), 30),\n",
" (('manhattan', ',', 'new', 'york', '10007'), 29),\n",
" (('st', 'in', 'the', 'borough', 'of'), 29),\n",
" (('department', 'of', 'information', 'technology', '&'), 29),\n",
" (('business', 'days', 'prior', 'to', 'the'), 29),\n",
" (('the', 'procurement', 'policy', 'board', 'rules'), 29),\n",
" (('for', 'children', \"'s\", 'services', ','), 28),\n",
" ((',', '2nd', 'floor', ',', 'new'), 28),\n",
" ((':', 'in', 'the', 'matter', 'of'), 28),\n",
" (('of', 'information', 'technology', '&', 'telecommunications'), 28),\n",
" (('2nd', 'floor', ',', 'new', 'york'), 28),\n",
" (('that', 'a', 'public', 'hearing', 'will'), 28),\n",
" (('york', ',', 'n.y.', '10007', ','), 28),\n",
" (('contact', 'the', 'mayor', \"'s\", 'office'), 27),\n",
" (('should', 'contact', 'the', 'mayor', \"'s\"), 27),\n",
" (('interpreters', 'should', 'contact', 'the', 'mayor'), 27),\n",
" (('square', 'foot', 'parcel', 'of', 'land'), 27),\n",
" (('william', 'street', ',', '9th', 'floor'), 26),\n",
" (('given', 'that', 'a', 'public', 'hearing'), 26),\n",
" ((',', 'at', 'the', 'call', 'of'), 26),\n",
" (('borough', 'of', 'manhattan', ',', 'on'), 26),\n",
" (('five', '(', '5', ')', 'years'), 26),\n",
" (('150', 'william', 'street', ',', '9th'), 26),\n",
" ((')', 'business', 'days', 'prior', 'to'), 26),\n",
" (('extension', 'new', 'start', 'date', 'of'), 26),\n",
" (('llc', 'for', 'a', 'site', 'located'), 25),\n",
" (('hereby', 'given', 'that', 'a', 'public'), 25),\n",
" ((',', 'between', 'the', 'hours', 'of'), 25),\n",
" (('.', '(', 'preliminary', 'and', 'final'), 24),\n",
" (('telecommunications', 'description', 'of', 'services', 'sought'), 24),\n",
" (('(', 'preliminary', 'and', 'final', ')'), 24),\n",
" ((',', 'at', '10:00', 'a.m.', ','), 24),\n",
" (('of', 'each', 'month', ',', 'at'), 24),\n",
" (('procurement', 'policy', 'board', 'rules', '.'), 24),\n",
" (('on', 'the', 'following', ':', 'in'), 24),\n",
" (('month', 'at', 'the', 'call', 'of'), 24),\n",
" (('10007', ',', '(', '212', ')'), 24),\n",
" (('nature', 'of', 'services', 'sought', ':'), 24),\n",
" (('the', 'following', ':', 'in', 'the'), 24),\n",
" (('street', ',', '9th', 'floor', ','), 24),\n",
" ((',', 'brooklyn', 'certificate', 'of', 'appropriateness'), 24),\n",
" (('following', ':', 'in', 'the', 'matter'), 24),\n",
" (('new', 'york', ',', 'ny', '10004'), 24),\n",
" (('department', 'of', 'parks', 'and', 'recreation'), 24),\n",
" ((',', 'maintain', ',', 'and', 'operate'), 24),\n",
" (('new', 'york', ',', 'ny', '10006'), 24),\n",
" (('new', 'york', 'city', 'charter', 'for'), 23),\n",
" (('preliminary', 'and', 'final', ')', '('), 23),\n",
" (('information', 'technology', '&', 'telecommunications', 'description'), 23),\n",
" (('.', 'start', 'date', 'of', 'the'), 23),\n",
" (('technology', '&', 'telecommunications', 'description', 'of'), 23),\n",
" (('&', 'telecommunications', 'description', 'of', 'services'), 23),\n",
" (('.', 'notice', 'of', 'intent', 'to'), 23),\n",
" (('and', 'final', ')', '(', 'cc'), 23),\n",
" (('at', 'the', 'new', 'york', 'city'), 23),\n",
" (('a.m.', 'on', 'the', 'following', ':'), 23),\n",
" (('contract', ':', 'none', 'reason', '('), 22),\n",
" (('term', 'of', 'two', 'years', '.'), 22),\n",
" (('for', 'a', 'term', 'of', 'two'), 22),\n",
" (('new', 'york', 'city', 'charter', ','), 22),\n",
" (('under', 'the', 'contract', ':', 'none'), 22),\n",
" (('of', 'the', 'proposed', 'extended', 'contract'), 22),\n",
" ((':', 'none', 'reason', '(', 's'), 22),\n",
" (('none', 'reason', '(', 's', ')'), 22),\n",
" (('intends', 'to', 'utilize', ':', 'amendment'), 22),\n",
" (('building', ',', 'manhattan', ',', 'new'), 22),\n",
" (('will', 'be', 'held', 'at', 'the'), 22),\n",
" (('york', ',', 'ny', '10004', ','), 22),\n",
" (('of', 'two', 'years', '.', ')'), 22),\n",
" (('pursuant', 'to', 'sections', '197-c', 'and'), 22),\n",
" ((')', 'of', 'the', 'procurement', 'policy'), 22),\n",
" (('a', 'term', 'of', 'two', 'years'), 22),\n",
" (('the', 'contract', ':', 'none', 'reason'), 22),\n",
" ((',', 'zoned', 'r6', 'community', 'district'), 22),\n",
" (('the', 'proposed', 'extended', 'contract', ':'), 22),\n",
" (('new', 'york', '10007', ',', 'at'), 22),\n",
" (('date', 'of', 'the', 'proposed', 'extended'), 22),\n",
" (('9th', 'floor', ',', 'borough', 'of'), 21),\n",
" (('the', 'state', 'of', 'new', 'york'), 21),\n",
" (('public', 'hearings', 'unit', ',', '253'), 21),\n",
" (('of', 'new', 'york', ',', 'as'), 21),\n",
" ((',', 'public', 'hearings', 'unit', ','), 21),\n",
" (('(', '212', ')', '788-7490', ','), 21),\n",
" (('788-7490', ',', 'no', 'later', 'than'), 21),\n",
" ((')', '788-7490', ',', 'no', 'later'), 21),\n",
" (('foot', 'parcel', 'of', 'land', 'located'), 21),\n",
" (('unit', ',', '253', 'broadway', ','), 21),\n",
" (('to', 'utilize', ':', 'amendment', 'extension'), 21),\n",
" (('hearings', 'unit', ',', '253', 'broadway'), 21),\n",
" (('services', ',', 'public', 'hearings', 'unit'), 21),\n",
" (('street', ',', 'brooklyn', ',', 'new'), 21),\n",
" ((',', '9th', 'floor', ',', 'borough'), 21),\n",
" (('parcel', 'of', 'land', 'located', 'at'), 21),\n",
" (('212', ')', '788-7490', ',', 'no'), 21),\n",
" (('services', 'personnel', 'in', 'substantially', 'similar'), 21),\n",
" (('nan', 'notice', 'of', 'intent', 'to'), 20),\n",
" (('of', 'housing', 'preservation', 'and', 'development'), 20),\n",
" (('utilize', ':', 'amendment', 'extension', 'new'), 20),\n",
" (('amendment', 'extension', 'new', 'start', 'date'), 20),\n",
" (('the', 'agency', 'intends', 'to', 'renew/extend'), 20),\n",
" (('york', ',', 'ny', '10007', ','), 20),\n",
" (('to', 'renew/extend', 'the', 'contract', ':'), 20),\n",
" ((',', 'borough', 'of', 'manhattan', '.'), 20),\n",
" (('department', 'of', 'housing', 'preservation', 'and'), 20),\n",
" (('intends', 'to', 'renew/extend', 'the', 'contract'), 20),\n",
" (('agency', 'intends', 'to', 'renew/extend', 'the'), 20),\n",
" (('matter', 'of', 'a', 'proposed', 'contract'), 20),\n",
" (('of', 'a', 'proposed', 'contract', 'between'), 20),\n",
" ((',', '150', 'william', 'street', ','), 20),\n",
" ((',', '2014', 'special', 'permit', '('), 20),\n",
" ((':', 'amendment', 'extension', 'new', 'start'), 20),\n",
" (('.', 'a', 'copy', 'of', 'the'), 20),\n",
" (('commencing', 'at', '10:00', 'a.m.', 'on'), 20),\n",
" (('street', ',', 'manhattan', ',', 'ny'), 20),\n",
" (('10:00', 'a.m.', 'on', 'the', 'following'), 20),\n",
" (('a', 'proposed', 'contract', 'between', 'the'), 20),\n",
" (('nan', 'notice', 'is', 'hereby', 'given'), 19),\n",
" (('york', 'city', 'charter', 'for', 'the'), 19),\n",
" (('children', \"'s\", 'services', ',', 'office'), 19),\n",
" (('been', 'selected', 'by', 'means', 'of'), 19),\n",
" ((\"'s\", 'services', ',', 'office', 'of'), 19),\n",
" (('later', 'than', 'seven', '(', '7'), 19),\n",
" (('than', 'seven', '(', '7', ')'), 19),\n",
" ((',', 'borough', 'of', 'brooklyn', '.'), 19),\n",
" (('seven', '(', '7', ')', 'business'), 19),\n",
" (('7', ')', 'business', 'days', 'prior'), 19),\n",
" (('(', 'preliminary', ')', '(', 'cc'), 19),\n",
" (('available', 'for', 'public', 'inspection', 'at'), 19),\n",
" ((',', 'no', 'later', 'than', 'seven'), 19),\n",
" (('no', 'later', 'than', 'seven', '('), 19),\n",
" (('201', 'of', 'the', 'new', 'york'), 19),\n",
" ((',', 'manhattan', ',', 'ny', '10007'), 19),\n",
" ((',', 'long', 'island', 'city', ','), 19),\n",
" (('.', '(', 'preliminary', ')', '('), 19),\n",
" (('.', 'tdd', 'users', 'should', 'call'), 19),\n",
" (('renewal/extension', 'the', 'agency', 'intends', 'to'), 19),\n",
" (('manhattan', ',', 'ny', '10007', ','), 19),\n",
" (('users', 'should', 'call', 'verizon', 'relay'), 19),\n",
" ((',', 'ny', '.', 'site', 'no'), 19),\n",
" (('mayor', \"'s\", 'office', 'of', 'contract'), 19),\n",
" (('for', 'public', 'inspection', 'at', 'the'), 19),\n",
" (('ny', '.', 'site', 'no', '.'), 19),\n",
" (('.', 'application', 'is', 'to', 'construct'), 19),\n",
" (('agency', ':', 'department', 'of', 'parks'), 19),\n",
" (('(', '7', ')', 'business', 'days'), 19),\n",
" (('.', 'application', 'is', 'to', 'replace'), 19),\n",
" (('197-c', 'and', '201', 'of', 'the'), 19),\n",
" (('tdd', 'users', 'should', 'call', 'verizon'), 19),\n",
" (('of', 'the', 'state', 'of', 'new'), 19),\n",
" (('of', 'renewal/extension', 'the', 'agency', 'intends'), 19),\n",
" (('and', '201', 'of', 'the', 'new'), 19),\n",
" (('of', 'services', 'personnel', 'in', 'substantially'), 19),\n",
" (('method', 'of', 'renewal/extension', 'the', 'agency'), 19),\n",
" (('for', 'the', 'city', 'of', 'new'), 18),\n",
" (('sections', '197-c', 'and', '201', 'of'), 18),\n",
" ((\"'s\", 'office', 'of', 'contract', 'services'), 18),\n",
" (('parks', 'and', 'recreation', 'nature', 'of'), 18),\n",
" (('within', 'agency', ':', '0', 'notice'), 18),\n",
" (('brooklyn', 'certificate', 'of', 'appropriateness', 'a'), 18),\n",
" (('office', 'of', 'contract', 'services', ','), 18),\n",
" (('dollars', '(', '$', '2,000,000', ')'), 18),\n",
" (('at', '100', 'church', 'street', ','), 18),\n",
" (('two', 'million', 'dollars', '(', '$'), 18),\n",
" (('contract', 'services', ',', 'public', 'hearings'), 18),\n",
" (('of', 'contract', 'services', ',', 'public'), 18),\n",
" ((':', 'department', 'of', 'parks', 'and'), 18),\n",
" ((',', '(', '212', ')', '788-7490'), 18),\n",
" (('of', 'parks', 'and', 'recreation', 'nature'), 18),\n",
" (('million', 'dollars', '(', '$', '2,000,000'), 18),\n",
" ((',', 'manhattan', '.', '(', 'preliminary'), 18),\n",
" (('to', 'sections', '197-c', 'and', '201'), 18),\n",
" (('.', 'individuals', 'requesting', 'sign', 'language'), 18),\n",
" (('inspection', 'at', 'the', 'new', 'york'), 17),\n",
" (('district', '2', ',', 'manhattan', 'certificate'), 17),\n",
" (('street', ',', '6th', 'floor', ','), 17),\n",
" (('rules', '.', 'a', 'copy', 'of'), 17),\n",
" ((':', 'individuals', 'requesting', 'sign', 'language'), 17),\n",
" (('note', ':', 'individuals', 'requesting', 'sign'), 17),\n",
" ((',', 'for', 'the', 'provision', 'of'), 17),\n",
" (('five', '(', '5', ')', 'business'), 17),\n",
" (('of', 'brooklyn', '.', 'community', 'board'), 17),\n",
" (('city', 'of', 'new', 'york', '('), 17),\n",
" (('city', 'of', 'new', 'york', 'and'), 17),\n",
" (('2', ',', 'manhattan', 'certificate', 'of'), 17),\n",
" (('(', '5', ')', 'business', 'days'), 17),\n",
" (('brooklyn', '.', 'community', 'board', '#'), 17),\n",
" (('york', ',', 'new', 'york', '10007'), 17),\n",
" (('one', 'centre', 'street', ',', 'room'), 17),\n",
" (('the', 'new', 'york', 'city', 'housing'), 17),\n",
" ((',', '42-09', '28th', 'street', ','), 17),\n",
" (('street', ',', '12th', 'floor', ','), 17),\n",
" (('street', 'in', 'the', 'borough', 'of'), 17),\n",
" (('franchise', 'and', 'concession', 'review', 'committee'), 17),\n",
" (('community', 'district', '2', ',', 'manhattan'), 17),\n",
" (('borough', 'of', 'brooklyn', '.', 'community'), 17),\n",
" (('end', 'of', 'each', 'month', '.'), 17),\n",
" (('to', 'continue', 'to', ',', 'maintain'), 16),\n",
" (('of', '(', 'a', ')', 'contract'), 16),\n",
" (('proposed', 'contractor', 'has', 'been', 'selected'), 16),\n",
" (('notice', 'of', 'intent', 'to', 'extend'), 16),\n",
" (('intent', 'to', 'extend', 'contract', '('), 16),\n",
" ((',', 'staten', 'island', ',', 'new'), 16),\n",
" (('entering', 'into', 'the', 'following', 'extension'), 16),\n",
" (('york', ',', 'n.y.', '10007', '.'), 16),\n",
" (('borough', 'of', 'manhattan', '.', 'community'), 16),\n",
" (('the', 'proposed', 'contractor', 'has', 'been'), 16),\n",
" (('extension', '(', 's', ')', 'of'), 16),\n",
" (('to', ',', 'maintain', ',', 'and'), 16),\n",
" (('in', 'equal', 'monthly', 'installments', 'at'), 16),\n",
" (('payable', 'in', 'equal', 'monthly', 'installments'), 16),\n",
" (('following', 'extension', '(', 's', ')'), 16),\n",
" (('street', ',', 'manhattan', '.', '('), 16),\n",
" (('equal', 'monthly', 'installments', 'at', 'the'), 16),\n",
" (('the', 'end', 'of', 'each', 'month'), 16),\n",
" (('(', '3', ')', 'of', 'the'), 16),\n",
" (('will', 'be', 'entering', 'into', 'the'), 16),\n",
" (('york', ',', 'as', 'tenant', ','), 16),\n",
" (('to', 'utilize', ':', 'competitive', 'sealed'), 16),\n",
" ((')', 'of', '(', 'a', ')'), 16),\n",
" ((',', 'lessee', '.', 'subject', 'application'), 16),\n",
" (('the', 'mayor', 'will', 'be', 'entering'), 16),\n",
" (('monthly', 'installments', 'at', 'the', 'end'), 16),\n",
" (('at', 'the', 'end', 'of', 'each'), 16),\n",
" (('(', '5', ')', 'years', ','), 16),\n",
" (('c', ')', '(', '3', ')'), 16),\n",
" ((',', 'no', 'later', 'than', 'five'), 16),\n",
" (('of', 'each', 'month', '.', 'the'), 16),\n",
" (('public', 'hearing', '.', 'tdd', 'users'), 16),\n",
" (('city', 'and', 'state', 'mortgage', 'recording'), 16),\n",
" (('staten', 'island', ',', 'new', 'york'), 16),\n",
" (('hearing', '.', 'tdd', 'users', 'should'), 16),\n",
" (('a', ')', 'contract', '(', 's'), 16),\n",
" (('mayor', 'will', 'be', 'entering', 'into'), 16),\n",
" (('(', 'c', ')', '(', '3'), 16),\n",
" ((')', 'contract', '(', 's', ')'), 16),\n",
" (('manhattan', '.', 'community', 'board', '#'), 16),\n",
" (('into', 'the', 'following', 'extension', '('), 16),\n",
" ((')', '(', '3', ')', 'of'), 16),\n",
" (('of', 'manhattan', '.', 'community', 'board'), 16),\n",
" (('the', 'following', 'extension', '(', 's'), 16),\n",
" (('intends', 'to', 'utilize', ':', 'competitive'), 16),\n",
" (('extend', 'contract', '(', 's', ')'), 16),\n",
" ((',', 'in', 'spector', 'hall', ','), 16),\n",
" (('original', 'principal', 'amount', 'of', '$'), 16),\n",
" (('s', ')', 'of', '(', 'a'), 16),\n",
" (('and', 'state', 'mortgage', 'recording', 'taxes'), 16),\n",
" (('(', 'a', ')', 'contract', '('), 16),\n",
" (('continue', 'to', ',', 'maintain', ','), 16),\n",
" (('(', 's', ')', 'of', '('), 16),\n",
" (('the', 'borough', 'of', 'brooklyn', '('), 16),\n",
" (('recreation', 'nature', 'of', 'services', 'sought'), 16),\n",
" (('church', 'street', ',', '12th', 'floor'), 16),\n",
" (('at', '10:00', 'a.m.', 'in', 'the'), 16),\n",
" (('installments', 'at', 'the', 'end', 'of'), 16),\n",
" (('notice', 'is', 'hereby', 'given', 'of'), 16),\n",
" (('than', 'five', '(', '5', ')'), 16),\n",
" (('100', 'church', 'street', ',', '12th'), 16),\n",
" (('the', 'public', 'hearing', '.', 'tdd'), 16),\n",
" (('(', 'to', 'continue', 'to', ','), 16),\n",
" (('york', ',', 'ny', '10007', '('), 16),\n",
" (('and', 'recreation', 'nature', 'of', 'services'), 16),\n",
" (('.', 'application', 'is', 'to', 'install'), 16),\n",
" (('new', 'york', 'city', 'housing', 'authority'), 16),\n",
" (('new', 'york', ',', 'as', 'tenant'), 16),\n",
" (('to', 'extend', 'contract', '(', 's'), 16),\n",
" (('no', 'later', 'than', 'five', '('), 16),\n",
" (('be', 'entering', 'into', 'the', 'following'), 16),\n",
" (('of', 'intent', 'to', 'extend', 'contract'), 16),\n",
" (('later', 'than', 'five', '(', '5'), 16),\n",
" (('room', '#', '143', ',', 'new'), 15),\n",
" (('here', 'and', 'on', 'nycha', \"'s\"), 15),\n",
" (('for', 'additional', 'information', ',', 'please'), 15),\n",
" (('at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to'),\n",
" 15),\n",
" (('room', ',', 'borough', 'of', 'manhattan'), 15),\n",
" (('on', 'nycha', \"'s\", 'website', 'at'), 15),\n",
" ((',', 'training', 'room', '#', '143'), 15),\n",
" ((',', '33', 'beaver', 'street', ','), 15),\n",
" (('nycha', \"'s\", 'website', 'or', 'contact'), 15),\n",
" (('2nd', 'floor', 'conference', 'room', ','), 15),\n",
" (('within', 'agency', ':', '0', 'nan'), 15),\n",
" (('additional', 'information', ',', 'please', 'visit'), 15),\n",
" (('brooklyn', ',', 'new', 'york', '.'), 15),\n",
" (('schedule', 'will', 'be', 'posted', 'here'), 15),\n",
" ((',', 'as', 'tenant', ',', 'of'), 15),\n",
" (('posted', 'here', 'and', 'on', 'nycha'), 15),\n",
" (('beaver', 'street', ',', '21st', 'floor'), 15),\n",
" (('of', 'a', 'public', 'hearing', ','), 15),\n",
" (('please', 'visit', 'nycha', \"'s\", 'website'), 15),\n",
" (('a', 'reasonable', 'time', 'before', 'the'), 15),\n",
" (('services', ',', 'office', 'of', 'procurement'), 15),\n",
" (('.', 'for', 'additional', 'information', ','), 15),\n",
" (('board', 'of', 'standards', 'and', 'appeals'), 15),\n",
" ((\"'s\", 'website', 'or', 'contact', '('), 15),\n",
" (('meeting', '.', 'for', 'additional', 'information'), 15),\n",
" (('//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable'),\n",
" 15),\n",
" (('a.m.', 'in', 'the', 'board', 'room'), 15),\n",
" (('http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the'),\n",
" 15),\n",
" (('york', 'city', 'charter', ',', 'will'), 15),\n",
" (('on', 'the', '12th', 'floor', 'of'), 15),\n",
" (('10:00', 'a.m.', 'in', 'the', 'board'), 15),\n",
" (('training', 'room', '#', '143', ','), 15),\n",
" (('board', 'room', 'on', 'the', '12th'), 15),\n",
" (('from', 'the', 'date', 'of', 'approval'), 15),\n",
" (('north', ',', 'new', 'york', ','), 15),\n",
" (('on', 'the', 'following', 'matters', ':'), 15),\n",
" (('3-04', '(', 'b', ')', '('), 15),\n",
" (('in', 'the', 'board', 'room', 'on'), 15),\n",
" (('hereby', 'given', 'of', 'a', 'public'), 15),\n",
" (('(', 'unless', 'otherwise', 'noted', ')'), 15),\n",
" (('hearing', ',', 'tuesday', 'morning', ','), 15),\n",
" (('street', ',', 'manhattan', ',', 'new'), 15),\n",
" (('the', 'new', 'york', 'city', 'administration'), 15),\n",
" (('reasonable', 'time', 'before', 'the', 'meeting'), 15),\n",
" (('services', 'start', 'date', 'of', 'the'), 15),\n",
" (('borough', 'of', 'brooklyn', 'community', 'board'), 15),\n",
" (('street', ',', '2nd', 'floor', 'conference'), 15),\n",
" ((',', 'in', 'accordance', 'with', 'section'), 15),\n",
" (('the', 'extent', 'practicable', 'at', 'a'), 15),\n",
" (('unless', 'otherwise', 'noted', ')', '.'), 15),\n",
" (('#', '143', ',', 'new', 'york'), 15),\n",
" (('will', 'be', 'posted', 'here', 'and'), 15),\n",
" (('12th', 'floor', ',', 'training', 'room'), 15),\n",
" (('public', 'hearing', ',', 'tuesday', 'morning'), 15),\n",
" (('given', 'of', 'a', 'public', 'hearing'), 15),\n",
" ((',', '2014', ',', '10:00', 'a.m.'), 15),\n",
" (('information', ',', 'please', 'visit', 'nycha'), 15),\n",
" (('floor', 'of', '250', 'broadway', ','), 15),\n",
" (('should', 'call', 'verizon', 'relay', 'services'), 15),\n",
" (('website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml'),\n",
" 15),\n",
" (('broadway', ',', 'new', 'york', ','), 15),\n",
" (('reade', 'street', ',', '2nd', 'floor'), 15),\n",
" (('street', ',', '21st', 'floor', ','), 15),\n",
" (('website', 'or', 'contact', '(', '212'), 15),\n",
" (('conference', 'room', ',', 'borough', 'of'), 15),\n",
" (('visit', 'nycha', \"'s\", 'website', 'or'), 15),\n",
" (('at', 'a', 'reasonable', 'time', 'before'), 15),\n",
" ((':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent'),\n",
" 15),\n",
" (('foot', 'facility', 'located', 'on', 'a'), 15),\n",
" (('room', 'on', 'the', '12th', 'floor'), 15),\n",
" (('application', 'is', 'to', 'construct', 'a'), 15),\n",
" ((',', 'on', 'the', 'following', 'matters'), 15),\n",
" (('.', 'any', 'changes', 'to', 'the'), 15),\n",
" (('nycha', \"'s\", 'website', 'at', 'http'), 15),\n",
" (('(', 'final', ')', '(', 'cc'), 15),\n",
" (('(', 'b', ')', '(', '2'), 15),\n",
" (('or', 'contact', '(', '212', ')'), 15),\n",
" (('at', 'one', 'centre', 'street', ','), 15),\n",
" (('12th', 'floor', 'of', '250', 'broadway'), 15),\n",
" (('section', '3-04', '(', 'b', ')'), 15),\n",
" (('250', 'broadway', ',', 'new', 'york'), 15),\n",
" ((',', 'bronx', ',', 'new', 'york'), 15),\n",
" (('to', 'the', 'schedule', 'will', 'be'), 15),\n",
" (('and', 'on', 'nycha', \"'s\", 'website'), 15),\n",
" ((',', '2nd', 'floor', 'conference', 'room'), 15),\n",
" (('the', '12th', 'floor', 'of', '250'), 15),\n",
" (('floor', 'conference', 'room', ',', 'borough'), 15),\n",
" (('changes', 'to', 'the', 'schedule', 'will'), 15),\n",
" (('to', 'section', '3-04', '(', 'b'), 15),\n",
" (('square', 'foot', 'facility', 'located', 'on'), 15),\n",
" ((',', 'please', 'visit', 'nycha', \"'s\"), 15),\n",
" (('floor', ',', 'training', 'room', '#'), 15),\n",
" (('pursuant', 'to', 'section', '3-04', '('), 15),\n",
" (('extent', 'practicable', 'at', 'a', 'reasonable'), 15),\n",
" ((':', 'borough', 'of', 'brooklyn', 'community'), 15),\n",
" (('be', 'posted', 'here', 'and', 'on'), 15),\n",
" (('.', '(', 'final', ')', '('), 15),\n",
" (('of', '250', 'broadway', ',', 'new'), 15),\n",
" (('any', 'changes', 'to', 'the', 'schedule'), 15),\n",
" (('b', ')', '(', '2', ')'), 15),\n",
" (('a', 'public', 'hearing', ',', 'tuesday'), 15),\n",
" (('practicable', 'at', 'a', 'reasonable', 'time'), 15),\n",
" (('time', 'before', 'the', 'meeting', '.'), 15),\n",
" (('33', 'beaver', 'street', ',', '21st'), 15),\n",
" (('to', 'the', 'extent', 'practicable', 'at'), 15),\n",
" (('call', 'verizon', 'relay', 'services', '.'), 15),\n",
" (('is', 'hereby', 'given', 'of', 'a'), 15),\n",
" (('143', ',', 'new', 'york', ','), 15),\n",
" (('the', 'board', 'room', 'on', 'the'), 15),\n",
" (('22', 'reade', 'street', ',', '2nd'), 15),\n",
" ((',', '12th', 'floor', ',', 'training'), 15),\n",
" (('board', ':', 'borough', 'of', 'brooklyn'), 15),\n",
" ((\"'s\", 'website', 'at', 'http', ':'), 15),\n",
" (('the', 'schedule', 'will', 'be', 'posted'), 15),\n",
" (('lease', 'may', 'be', 'obtained', 'at'), 14),\n",
" (('agency', ':', '0', 'notice', 'of'), 14),\n",
" ((',', 'n.y.', '10007', ',', '('), 14),\n",
" (('please', 'contact', 'chris', 'fleming', 'at'), 14),\n",
" (('section', '824', 'of', 'the', 'new'), 14),\n",
" (('may', 'be', 'obtained', 'at', 'one'), 14),\n",
" (('the', 'date', 'of', 'approval', 'by'), 14),\n",
" (('project', 'manager', ',', 'associate', 'project'), 14),\n",
" (('an', 'inspection', ',', 'please', 'contact'), 14),\n",
" (('further', 'information', ',', 'including', 'public'), 14),\n",
" (('fleming', 'at', '(', '212', ')'), 14),\n",
" (('contact', 'chris', 'fleming', 'at', '('), 14),\n",
" (('center', ',', '42-09', '28th', 'street'), 14),\n",
" (('in', 'accordance', 'with', 'section', '824'), 14),\n",
" (('a.m.', ',', '22', 'reade', 'street'), 14),\n",
" (('agency', ':', 'department', 'of', 'design'), 14),\n",
" (('policy', 'board', 'rules', '.', 'a'), 14),\n",
" (('new', 'york', 'city', 'administration', 'for'), 14),\n",
" ((',', 'new', 'york', 'having', 'an'), 14),\n",
" (('be', 'obtained', 'at', 'one', 'centre'), 14),\n",
" (('date', 'of', 'approval', 'by', 'the'), 14),\n",
" (('10007', '.', 'to', 'schedule', 'an'), 14),\n",
" (('agency', ':', 'ddc', 'description', 'of'), 14),\n",
" (('dispositions', 'public', 'hearing', ',', 'in'), 14),\n",
" (('as', 'tenant', ',', 'of', 'approximately'), 14),\n",
" (('manager', ',', 'associate', 'project', 'manager'), 14),\n",
" ((',', 'n.y.', '10007', '.', 'to'), 14),\n",
" ((':', '0', 'agency', ':', 'ddc'), 14),\n",
" (('street', ',', '2nd', 'floor', ','), 14),\n",
" (('n.y.', '10007', ',', 'on', 'the'), 14),\n",
" (('construction', 'description', 'of', 'services', 'sought'), 14),\n",
" (('public', 'hearing', ',', 'in', 'accordance'), 14),\n",
" (('schedule', 'an', 'inspection', ',', 'please'), 14),\n",
" (('department', 'of', 'citywide', 'administrative', 'services'), 14),\n",
" (('.', 'notice', 'is', 'hereby', 'given'), 14),\n",
" (('island', ',', 'new', 'york', 'having'), 14),\n",
" (('n.y.', '10007', '.', 'to', 'schedule'), 14),\n",
" (('to', 'schedule', 'an', 'inspection', ','), 14),\n",
" (('proposed', 'lease', 'may', 'be', 'obtained'), 14),\n",
" (('city', 'charter', ',', 'will', 'be'), 14),\n",
" (('borough', 'of', 'brooklyn', '(', 'to'), 14),\n",
" (('acquisitions', 'and', 'dispositions', 'public', 'hearing'), 14),\n",
" (('at', '(', '212', ')', '386-0315'), 14),\n",
" (('agency', ':', 'department', 'of', 'environmental'), 14),\n",
" (('information', ',', 'including', 'public', 'inspection'), 14),\n",
" (('.', 'further', 'information', ',', 'including'), 14),\n",
" (('.', 'the', 'contract', 'term', 'shall'), 14),\n",
" (('state', 'mortgage', 'recording', 'taxes', '.'), 14),\n",
" ((',', 'will', 'be', 'held', 'on'), 14),\n",
" (('inspection', ',', 'please', 'contact', 'chris'), 14),\n",
" (('broadway', ',', '2nd', 'floor', ','), 14),\n",
" ((',', 'ny', '10007', ',', 'at'), 14),\n",
" (('york', 'city', 'administration', 'for', 'children'), 14),\n",
" ((')', '(', '2', ')', '('), 14),\n",
" (('the', 'proposed', 'lease', 'may', 'be'), 14),\n",
" (('2000', 'north', ',', 'new', 'york'), 14),\n",
" (('york', ',', 'ny', '10007', '.'), 14),\n",
" (('room', '2000', 'north', ',', 'new'), 14),\n",
" (('a', 'real', 'property', 'acquisitions', 'and'), 14),\n",
" (('city', 'administration', 'for', 'children', \"'s\"), 14),\n",
" (('hearing', ',', 'in', 'accordance', 'with'), 14),\n",
" ((',', '253', 'broadway', ',', '2nd'), 14),\n",
" (('824', 'of', 'the', 'new', 'york'), 14),\n",
" (('.', 'to', 'schedule', 'an', 'inspection'), 14),\n",
" (('386-0315', '.', 'individuals', 'requesting', 'sign'), 14),\n",
" ((',', '2014', 'at', '10:00', 'a.m.'), 14),\n",
" (('real', 'property', 'acquisitions', 'and', 'dispositions'), 14),\n",
" (('with', 'section', '824', 'of', 'the'), 14),\n",
" (('253', 'broadway', ',', '2nd', 'floor'), 14),\n",
" (('inspection', 'of', 'the', 'proposed', 'lease'), 14),\n",
" (('method', ',', 'pursuant', 'to', 'section'), 14),\n",
" (('department', 'of', 'design', 'and', 'construction'), 14),\n",
" (('n.y.', '10007', ',', '(', '212'), 14),\n",
" (('including', 'public', 'inspection', 'of', 'the'), 14),\n",
" ((',', 'please', 'contact', 'chris', 'fleming'), 14),\n",
" (('of', 'approval', 'by', 'the', 'mayor'), 14),\n",
" (('having', 'an', 'approximate', 'original', 'principal'), 14),\n",
" (('chris', 'fleming', 'at', '(', '212'), 14),\n",
" ((',', 'pursuant', 'to', 'section', '3-04'), 14),\n",
" (('obtained', 'at', 'one', 'centre', 'street'), 14),\n",
" (('street', ',', 'room', '2000', 'north'), 14),\n",
" ((':', 'department', 'of', 'environmental', 'protection'), 14),\n",
" ((',', '9th', 'floor', 'north', ','), 14),\n",
" (('212', ')', '386-0315', '.', 'individuals'), 14),\n",
" (('ddc', 'description', 'of', 'services', 'sought'), 14),\n",
" (('given', 'that', 'a', 'real', 'property'), 14),\n",
" ((')', '386-0315', '.', 'individuals', 'requesting'), 14),\n",
" ((',', 'flushing', ',', 'new', 'york'), 14),\n",
" (('property', 'acquisitions', 'and', 'dispositions', 'public'), 14),\n",
" (('public', 'inspection', 'of', 'the', 'proposed'), 14),\n",
" (('10007', ',', 'on', 'the', 'following'), 14),\n",
" ((',', 'n.y.', '10007', ',', 'on'), 14),\n",
" (('hereby', 'given', 'that', 'a', 'real'), 14),\n",
" ((',', 'including', 'public', 'inspection', 'of'), 14),\n",
" (('and', 'dispositions', 'public', 'hearing', ','), 14),\n",
" (('gotham', 'center', ',', '42-09', '28th'), 14),\n",
" (('new', 'york', 'having', 'an', 'approximate'), 14),\n",
" (('of', 'the', 'proposed', 'lease', 'may'), 14),\n",
" (('building', ',', 'manhattan', ',', 'ny'), 14),\n",
" (('charter', ',', 'will', 'be', 'held'), 14),\n",
" (('(', '212', ')', '386-0315', '.'), 14),\n",
" (('the', 'department', 'of', 'citywide', 'administrative'), 14),\n",
" (('city', 'hall', ',', 'third', 'floor'), 14),\n",
" (('that', 'a', 'real', 'property', 'acquisitions'), 14),\n",
" (('york', 'having', 'an', 'approximate', 'original'), 14),\n",
" ((':', 'ddc', 'description', 'of', 'services'), 14),\n",
" (('at', 'gotham', 'center', ',', '42-09'), 14),\n",
" ((',', 'room', '2000', 'north', ','), 14),\n",
" (('accordance', 'with', 'section', '824', 'of'), 14),\n",
" ((',', 'llc', 'for', 'a', 'site'), 14),\n",
" (('centre', 'street', ',', 'room', '2000'), 14),\n",
" (('be', 'terminated', 'by', 'the', 'tenant'), 13),\n",
" (('state', 'of', 'new', 'york', ','), 13),\n",
" (('public', 'hearing', 'notice', 'is', 'hereby'), 13),\n",
" (('children', \"'s\", 'services', 'of', 'the'), 13),\n",
" (('exempt', 'from', 'federal', 'taxation', 'pursuant'), 13),\n",
" (('contact', '(', '212', ')', '306-6088'), 13),\n",
" (('special', 'permit', '(', '73-36', ')'), 13),\n",
" (('pursuant', 'to', 'section', '501', '('), 13),\n",
" (('contractor', 'has', 'been', 'selected', 'by'), 13),\n",
" (('board', 'rules', '.', 'a', 'copy'), 13),\n",
" (('held', 'at', 'the', 'administration', 'for'), 13),\n",
" (('llc', 'pursuant', 'to', 'sections', '197-c'), 13),\n",
" (('services', 'of', 'the', 'city', 'of'), 13),\n",
" (('to', 'section', '501', '(', 'c'), 13),\n",
" (('method', 'of', 'original', 'contract', ':'), 13),\n",
" (('york', 'city', 'economic', 'development', 'corporation'), 13),\n",
" (('in', 'the', 'matter', 'of', 'the'), 13),\n",
" ((',', 'ny', '10007', 'at', '9:15'), 13),\n",
" (('section', '501', '(', 'c', ')'), 13),\n",
" (('approximate', 'original', 'principal', 'amount', 'of'), 13),\n",
" (('at', 'the', 'administration', 'for', 'children'), 13),\n",
" (('.', 'hourly', 'wage', 'average', 'and'), 13),\n",
" (('may', 'be', 'terminated', 'by', 'the'), 13),\n",
" (('(', '212', ')', '306-6088', '.'), 13),\n",
" (('an', 'application', 'submitted', 'by', 'the'), 13),\n",
" (('date', 'of', 'original', 'contract', ':'), 13),\n",
" ((\"'s\", 'services', 'of', 'the', 'city'), 13),\n",
" (('of', 'design', 'and', 'construction', 'description'), 13),\n",
" (('between', 'the', 'administration', 'for', 'children'), 13),\n",
" (('contract', 'is', 'available', 'for', 'public'), 13),\n",
" (('may', 'determine', '.', 'the', 'proposed'), 13),\n",
" (('from', 'federal', 'taxation', 'pursuant', 'to'), 13),\n",
" (('and', 'construction', 'description', 'of', 'services'), 13),\n",
" (('for', 'children', \"'s\", 'services', 'of'), 13),\n",
" (('new', 'york', ',', 'ny', '10038'), 13),\n",
" (('taxation', 'pursuant', 'to', 'section', '501'), 13),\n",
" (('hourly', 'wage', 'average', 'and', 'range'), 13),\n",
" (('of', 'the', 'general', 'municipal', 'law'), 13),\n",
" (('new', 'york', 'city', 'economic', 'development'), 13),\n",
" (('be', 'held', 'at', 'the', 'administration'), 13),\n",
" (('the', 'contract', 'term', 'shall', 'be'), 13),\n",
" (('is', 'available', 'for', 'public', 'inspection'), 13),\n",
" (('wage', 'average', 'and', 'range', ':'), 13),\n",
" (('end', 'date', 'of', 'original', 'contract'), 13),\n",
" (('york', ',', 'ny', '10007', 'at'), 13),\n",
" ((',', 'associate', 'project', 'manager', ','), 13),\n",
" (('selected', 'by', 'means', 'of', 'the'), 13),\n",
" (('corporation', 'exempt', 'from', 'federal', 'taxation'), 13),\n",
" (('501', '(', 'c', ')', '('), 13),\n",
" (('in', 'the', 'borough', 'of', 'queens'), 13),\n",
" ((':', 'department', 'of', 'design', 'and'), 13),\n",
" (('hearing', 'notice', 'is', 'hereby', 'given'), 13),\n",
" (('ny', '10007', 'at', '9:15', 'a.m.'), 13),\n",
" (('design', 'and', 'construction', 'description', 'of'), 13),\n",
" (('federal', 'taxation', 'pursuant', 'to', 'section'), 13),\n",
" (('an', 'approximate', 'original', 'principal', 'amount'), 13),\n",
" (('10:00', 'a.m.', 'on', 'the', 'second'), 12),\n",
" (('commission', 'meets', 'at', 'its', 'office'), 12),\n",
" (('of', 'public', 'hearing', 'notice', 'is'), 12),\n",
" (('as', 'needed', 'in', 'room', '2203'), 12),\n",
" (('manhattan', ',', 'weekly', ',', 'on'), 12),\n",
" (('the', 'first', 'tuesday', 'of', 'july'), 12),\n",
" (('bi-weekly', ',', 'on', 'wednesdays', ','), 12),\n",
" (('at', '10:00', 'a.m.', ',', '22'), 12),\n",
" ((')', 'at', '10:00', 'a.m.', 'in'), 12),\n",
" (('three', 'tuesday', \"'s\", 'each', 'month'), 12),\n",
" (('40', 'rector', 'street', ',', '6th'), 12),\n",
" (('the', 'chairman', '.', 'housing', 'authority'), 12),\n",
" (('p.m', '.', 'the', 'annual', 'meeting'), 12),\n",
" (('of', 'the', 'president', '.', 'manhattan'), 12),\n",
" (('tuesday', \"'s\", 'each', 'month', ','), 12),\n",
" (('accommodation', 'in', 'order', 'to', 'participate'), 12),\n",
" (('hearings', 'as', 'needed', 'in', 'room'), 12),\n",
" (('of', 'the', 'administrative', 'code', 'of'), 12),\n",
" (('936', ',', 'municipal', 'building', ','), 12),\n",
" (('floor', ',', 'manhattan', ',', 'bi-weekly'), 12),\n",
" (('warranted', '.', 'landmarks', 'preservation', 'commission'), 12),\n",
" (('december', '.', 'annual', 'meeting', 'held'), 12),\n",
" (('municipal', 'building', ',', '9th', 'floor'), 12),\n",
" (('human', 'rights', 'meets', 'on', '10th'), 12),\n",
" (('preceding', 'a', 'tuesday', 'public', 'hearing'), 12),\n",
" (('otherwise', 'ordered', 'by', 'the', 'commission'), 12),\n",
" (('floor', 'north', ',', '1', 'centre'), 12),\n",
" (('control', 'board', 'meets', 'at', '100'), 12),\n",
" (('between', 'the', 'hours', 'of', '10'), 12),\n",
" (('on', '10th', 'floor', 'in', 'the'), 12),\n",
" (('hearing', 'room', ',', 'municipal', 'building'), 12),\n",
" (('january', ',', 'february', ',', 'march'), 12),\n",
" ((',', 'ny', '10007', ',', 'twice'), 12),\n",
" (('10', 'am', 'and', '4', 'pm'), 12),\n",
" (('1:30', 'p.m.', 'and', 'at', 'the'), 12),\n",
" (('meets', 'at', '100', 'church', 'street'), 12),\n",
" ((',', 'on', 'fourth', 'monday', 'in'), 12),\n",
" (('as', 'warranted', '.', 'landmarks', 'preservation'), 12),\n",
" (('wednesday', 'of', 'each', 'month', '('), 12),\n",
" (('is', 'held', 'on', 'the', 'first'), 12),\n",
" (('board', 'generally', 'meets', 'at', '10:00'), 12),\n",
" (('tuesday', 'public', 'hearing', 'in', 'the'), 12),\n",
" ((')', 'in', 'the', 'borough', 'of'), 12),\n",
" (('as', 'warranted', '.', 'civilian', 'complaint'), 12),\n",
" (('.', 'manhattan', ',', 'monthly', 'on'), 12),\n",
" (('avenue', 'in', 'the', 'borough', 'of'), 12),\n",
" ((\"'s\", 'central', 'office', ',', '40'), 12),\n",
" (('customarily', 'held', 'on', 'mondays', 'preceding'), 12),\n",
" (('to', 'june', '30', ',', '2025'), 12),\n",
" (('lease', 'for', 'the', 'city', 'of'), 12),\n",
" (('10:00', 'a.m.', ',', 'unless', 'otherwise'), 12),\n",
" (('north', ',', '1', 'centre', 'street'), 12),\n",
" (('in', 'rem', 'foreclosure', 'release', 'board'), 12),\n",
" (('the', 'hall', 'of', 'the', 'board'), 12),\n",
" ((',', '335', 'adams', 'street', ','), 12),\n",
" (('meets', 'in', 'room', '936', ','), 12),\n",
" (('the', 'hours', 'of', '10', 'am'), 12),\n",
" (('10007', '(', 'unless', 'otherwise', 'noted'), 12),\n",
" (('october', ',', 'november', 'and', 'december'), 12),\n",
" (('floor', ',', 'and', 'other', 'days'), 12),\n",
" (('.', 'design', 'commission', 'meets', 'at'), 12),\n",
" (('application', 'desk', 'at', '(', '212'), 12),\n",
" (('ny', '10006', ',', 'on', 'the'), 12),\n",
" (('the', 'commission', '.', 'for', 'current'), 12),\n",
" (('10007', 'at', '9:15', 'a.m.', 'once'), 12),\n",
" (('meets', 'at', '40', 'rector', 'street'), 12),\n",
" (('office', ',', '40', 'rector', 'street'), 12),\n",
" (('2014', 'special', 'permit', '(', '73-36'), 12),\n",
" (('april', ',', 'june', ',', 'september'), 12),\n",
" (('.', 'board', 'of', 'standards', 'and'), 12),\n",
" (('standards', 'and', 'appeals', 'meets', 'at'), 12),\n",
" (('new', 'york', ',', 'n.y.', '10004'), 12),\n",
" (('on', 'the', '9th', 'floor', 'of'), 12),\n",
" ((',', 'monthly', 'on', 'wednesdays', ','), 12),\n",
" (('proposed', 'contract', 'between', 'the', 'department'), 12),\n",
" (('wednesday', 'of', 'each', 'month', 'at'), 12),\n",
" (('in', 'the', 'hearing', 'room', ','), 12),\n",
" (('floor', ',', '335', 'adams', 'street'), 12),\n",
" (('in', 'room', '603', ',', 'municipal'), 12),\n",
" ((',', '7th', 'floor', ',', 'new'), 12),\n",
" (('matter', 'of', 'a', 'proposed', 'revocable'), 12),\n",
" (('borough', 'of', 'manhattan', ',', 'in'), 12),\n",
" (('wednesdays', ',', 'commencing', '10:00', 'a.m.'), 12),\n",
" (('in', 'the', 'schedule', ',', 'or'), 12),\n",
" ((',', 'june', ',', 'september', ','), 12),\n",
" (('on', 'the', 'third', 'thursday', 'of'), 12),\n",
" (('or', 'consult', 'the', 'bulletin', 'board'), 12),\n",
" (('1:30', 'p.m.', 'contract', 'awards', 'public'), 12),\n",
" (('commissioner', '.', 'environmental', 'control', 'board'), 12),\n",
" (('method', 'of', 'extension', 'the', 'agency'), 12),\n",
" (('meeting', 'dates', ',', 'times', 'and'), 12),\n",
" (('schedule', ',', 'please', 'visit', 'nyc.gov/designcommission'), 12),\n",
" ((',', 'n.y.', '11101', ',', 'at'), 12),\n",
" (('.', 'headcount', 'of', 'personnel', 'in'), 12),\n",
" ((',', 'on', 'the', 'fourth', 'wednesday'), 12),\n",
" (('month', 'at', '40', 'rector', 'street'), 12),\n",
" (('higher', 'education', 'meets', 'at', '535'), 12),\n",
" (('review', 'sessions', 'begin', 'at', '9:30'), 12),\n",
" (('intends', 'to', 'utilize', ':', 'request'), 12),\n",
" (('a.m.', 'and', 'are', 'customarily', 'held'), 12),\n",
" ((',', 'hearing', 'room', '``', 'e'), 12),\n",
" (('third', 'floor', ',', 'new', 'york'), 12),\n",
" (('of', 'manhattan', ',', 'in', 'the'), 12),\n",
" (('meets', 'at', '10:00', 'a.m.', 'on'), 12),\n",
" (('//www.nyc.gov/html/ccrb/html/meeting.html',\n",
" 'for',\n",
" 'additional',\n",
" 'information',\n",
" 'and'),\n",
" 12),\n",
" (('weekly', ',', 'on', 'thursday', ','), 12),\n",
" (('information', ',', 'please', 'call', 'the'), 12),\n",
" (('location', 'as', 'warranted', '.', 'real'), 12),\n",
" (('the', 'fourth', 'wednesday', 'of', 'each'), 12),\n",
" (('rector', 'street', ',', 'new', 'york'), 12),\n",
" (('nyc.gov/designcommission', 'or', 'call', '212-788-3071', '.'), 12),\n",
" (('for', 'meeting', 'schedule', ',', 'please'), 12),\n",
" (('on', 'tuesdays', 'at', '10:00', 'a.m.'), 12),\n",
" (('at', 'www.nyc.gov/landmarks', '.', 'employees', \"'\"), 12),\n",
" (('board', 'of', 'higher', 'education', 'meets'), 12),\n",
" (('e', \"''\", 'on', 'tuesdays', 'at'), 12),\n",
" (('system', 'meets', 'in', 'the', 'boardroom'), 12),\n",
" (('avenue', ',', 'staten', 'island', ','), 12),\n",
" (('each', 'month', 'at', 'the', 'call'), 12),\n",
" (('noticed', 'by', 'the', 'commission', '.'), 12),\n",
" ((',', 'march', ',', 'april', ','), 12),\n",
" (('meets', 'on', '10th', 'floor', 'in'), 12),\n",
" (('on', 'wednesdays', ',', 'commencing', '10:00'), 12),\n",
" ((',', 'april', ',', 'june', ','), 12),\n",
" (('6th', 'floor', ',', 'hearing', 'room'), 12),\n",
" (('for', 'a', 'monthly', 'business', 'meeting'), 12),\n",
" (('employees', \"'\", 'retirement', 'system', 'meets'), 12),\n",
" (('as', 'warranted', '.', 'real', 'property'), 12),\n",
" (('city', 'hall', ',', 'manhattan', ','), 12),\n",
" (('rector', 'street', ',', '2nd', 'floor'), 12),\n",
" (('each', 'month', ',', 'commencing', 'at'), 12),\n",
" (('business', 'meeting', 'on', 'the', 'third'), 12),\n",
" (('at', '10:00', 'a.m.', ',', 'quarterly'), 12),\n",
" ((',', 'each', 'month', 'at', 'the'), 12),\n",
" (('10th', 'floor', 'in', 'the', 'commission'), 12),\n",
" (('6:00', 'p.m', '.', 'the', 'annual'), 12),\n",
" ((',', 'payable', 'in', 'equal', 'monthly'), 12),\n",
" ((',', 'ny', '10007', '.', 'for'), 12),\n",
" (('month', 'in', 'councilman', \"'s\", 'chamber'), 12),\n",
" (('a.m.', 'once', 'a', 'month', 'at'), 12),\n",
" (('10004', '.', 'commission', 'on', 'human'), 12),\n",
" (('the', 'last', 'wednesday', 'of', 'each'), 12),\n",
" (('administrative', 'services', 'division', 'of', 'citywide'), 12),\n",
" (('except', 'august', ')', 'at', '10:00'), 12),\n",
" (('street', ',', 'in', 'the', 'borough'), 12),\n",
" (('and', '4', 'pm', '.', 'please'), 12),\n",
" (('the', '9th', 'floor', 'of', '40'), 12),\n",
" (('of', 'a', 'proposed', 'revocable', 'consent'), 12),\n",
" (('in', 'the', 'hall', 'of', 'the'), 12),\n",
" ((',', 'october', ',', 'november', 'and'), 12),\n",
" ((',', 'at', '1:30', 'p.m.', 'contract'), 12),\n",
" (('schedule', ',', 'or', 'additonal', 'information'), 12),\n",
" (('education', 'meets', 'at', '535', 'east'), 12),\n",
" (('.', 'citywide', 'administrative', 'services', 'division'), 12),\n",
" ((',', 'twice', 'monthly', 'on', 'wednesday'), 12),\n",
" (('fourth', 'monday', 'in', 'january', ','), 12),\n",
" (('environmental', 'control', 'board', 'meets', 'at'), 12),\n",
" (('of', 'citywide', 'administrative', 'services', 'may'), 12),\n",
" (('of', 'each', 'month', 'at', '40'), 12),\n",
" (('10:00', 'a.m.', ',', 'quarterly', 'or'), 12),\n",
" (('location', 'as', 'warranted', '.', 'franchise'), 12),\n",
" (('at', '10:30', 'a.m.', 'board', 'of'), 12),\n",
" (('awards', 'public', 'hearing', 'meets', 'in'), 12),\n",
" (('preservation', 'commission', 'meets', 'in', 'the'), 12),\n",
" (('scheduled', 'for', 'the', 'last', 'wednesday'), 12),\n",
" (('current', 'meeting', 'dates', ',', 'times'), 12),\n",
" ((',', 'at', '5:30', 'p.m.', ','), 12),\n",
" ((',', 'times', 'and', 'agendas', ','), 12),\n",
" (('september', ',', 'october', ',', 'november'), 12),\n",
" (('of', '40', 'rector', 'street', '.'), 12),\n",
" (('new', 'york', ',', 'ny', '10041'), 12),\n",
" (('for', 'current', 'meeting', 'dates', ','), 12),\n",
" (('ny', '10006', '.', 'visit', 'http'), 12),\n",
" ((',', 'on', 'wednesdays', ',', 'commencing'), 12),\n",
" (('twice', 'a', 'month', 'in', 'councilman'), 12),\n",
" (('and', 'disposition', 'meets', 'in', 'spector'), 12),\n",
" (('on', 'tuesdays', ',', 'commencing', '10:00'), 12),\n",
" (('as', 'warranted', '.', 'franchise', 'and'), 12),\n",
" (('by', 'the', 'commission', '.', 'for'), 12),\n",
" (('revision', 'of', 'awards', 'meets', 'in'), 12),\n",
" ((\"''\", 'on', 'tuesdays', 'at', '10:00'), 12),\n",
" (('on', 'thursday', ',', 'commencing', '10:00'), 12),\n",
" (('board', 'meets', 'in', 'spector', 'hall'), 12),\n",
" (('the', 'commission', \"'s\", 'central', 'office'), 12),\n",
" (('month', 'at', '6:00', 'p.m', '.'), 12),\n",
" (('extension', 'the', 'agency', 'intends', 'to'), 12),\n",
" (('health', 'insurance', 'board', 'meets', 'in'), 12),\n",
" (('.', 'board', 'of', 'higher', 'education'), 12),\n",
" (('compensation', 'payable', 'to', 'the', 'city'), 12),\n",
" (('at', 'an', 'annual', 'rent', 'of'), 12),\n",
" (('on', 'tuesday', ',', 'at', '1:30'), 12),\n",
" ((',', 'please', 'visit', 'nyc.gov/designcommission', 'or'), 12),\n",
" (('design', 'commission', 'meets', 'at', 'city'), 12),\n",
" (('terms', 'and', 'conditions', 'for', 'compensation'), 12),\n",
" (('city', ',', 'n.y.', '11101', ','), 12),\n",
" (('otherwise', 'noted', ')', '.', 'any'), 12),\n",
" ...]"
]
}
],
"prompt_number": 29
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#We can keep going!\n",
"corpus6grams = list(ngrams(lowerTokens,6))\n",
"corpus6gramFreqs = nltk.FreqDist(corpus6grams)\n",
"corpus6gramFreqs.most_common()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 30,
"text": [
"[(('personnel', 'in', 'substantially', 'similar', 'titles', 'within'), 269),\n",
" (('substantially', 'similar', 'titles', 'within', 'agency', ':'), 264),\n",
" (('in', 'substantially', 'similar', 'titles', 'within', 'agency'), 264),\n",
" (('--', '--', '--', '--', '--', '--'), 186),\n",
" (('date', 'of', 'the', 'proposed', 'contract', ':'), 186),\n",
" (('headcount', 'of', 'personnel', 'in', 'substantially', 'similar'), 136),\n",
" (('of', 'personnel', 'in', 'substantially', 'similar', 'titles'), 136),\n",
" (('the', 'agency', 'intends', 'to', 'utilize', ':'), 134),\n",
" (('(', 's', ')', 'not', 'included', 'in'), 126),\n",
" (('2015', 'annual', 'contracting', 'plan', 'and', 'schedule'), 124),\n",
" (('sidewalk', 'caf', 'for', 'a', 'term', 'of'), 124),\n",
" (('fy', '2015', 'annual', 'contracting', 'plan', 'and'), 124),\n",
" (('unenclosed', 'sidewalk', 'caf', 'for', 'a', 'term'), 120),\n",
" (('notice', 'is', 'hereby', 'given', 'that', 'the'), 116),\n",
" (('an', 'unenclosed', 'sidewalk', 'caf', 'for', 'a'), 112),\n",
" (('operate', 'an', 'unenclosed', 'sidewalk', 'caf', 'for'), 112),\n",
" (('and', 'operate', 'an', 'unenclosed', 'sidewalk', 'caf'), 112),\n",
" (('maintain', ',', 'and', 'operate', 'an', 'unenclosed'), 112),\n",
" ((',', 'and', 'operate', 'an', 'unenclosed', 'sidewalk'), 112),\n",
" (('method', 'of', 'solicitation', 'the', 'agency', 'intends'), 103),\n",
" (('of', 'solicitation', 'the', 'agency', 'intends', 'to'), 103),\n",
" (('solicitation', 'the', 'agency', 'intends', 'to', 'utilize'), 103),\n",
" (('caf', 'for', 'a', 'term', 'of', 'four'), 102),\n",
" (('for', 'a', 'term', 'of', 'four', 'years'), 102),\n",
" (('term', 'of', 'four', 'years', '.', ')'), 101),\n",
" (('a', 'term', 'of', 'four', 'years', '.'), 101),\n",
" (('in', 'the', 'borough', 'of', 'manhattan', '('), 100),\n",
" (('the', 'borough', 'of', 'manhattan', '(', 'to'), 99),\n",
" (('to', 'maintain', ',', 'and', 'operate', 'an'), 98),\n",
" (('end', 'date', 'of', 'the', 'proposed', 'contract'), 96),\n",
" (('solicitation', '(', 's', ')', 'not', 'included'), 94),\n",
" (('similar', 'titles', 'within', 'agency', ':', 'none'), 93),\n",
" (('agency', ':', 'none', 'headcount', 'of', 'personnel'), 92),\n",
" (('none', 'headcount', 'of', 'personnel', 'in', 'substantially'), 92),\n",
" ((':', 'none', 'headcount', 'of', 'personnel', 'in'), 92),\n",
" (('titles', 'within', 'agency', ':', 'none', 'headcount'), 91),\n",
" (('within', 'agency', ':', 'none', 'headcount', 'of'), 91),\n",
" (('start', 'date', 'of', 'the', 'proposed', 'contract'), 90),\n",
" (('continue', 'to', 'maintain', ',', 'and', 'operate'), 89),\n",
" (('borough', 'of', 'manhattan', '(', 'to', 'continue'), 87),\n",
" (('of', 'manhattan', '(', 'to', 'continue', 'to'), 86),\n",
" (('(', 'to', 'continue', 'to', 'maintain', ','), 86),\n",
" (('to', 'continue', 'to', 'maintain', ',', 'and'), 86),\n",
" (('similar', 'titles', 'within', 'agency', ':', '0'), 83),\n",
" (('spector', 'hall', ',', '22', 'reade', 'street'), 82),\n",
" (('hall', ',', '22', 'reade', 'street', ','), 82),\n",
" (('in', 'spector', 'hall', ',', '22', 'reade'), 81),\n",
" (('manhattan', '(', 'to', 'continue', 'to', 'maintain'), 74),\n",
" (('floor', ',', 'new', 'york', ',', 'ny'), 72),\n",
" ((',', 'new', 'york', ',', 'ny', '10007'), 66),\n",
" (('is', 'hereby', 'given', 'that', 'the', 'mayor'), 65),\n",
" (('of', 'the', 'city', 'of', 'new', 'york'), 64),\n",
" (('pursuant', 'to', 'new', 'york', 'city', 'charter'), 63),\n",
" (('given', 'that', 'the', 'mayor', 'will', 'be'), 63),\n",
" (('schedule', 'notice', 'is', 'hereby', 'given', 'that'), 63),\n",
" (('schedule', 'that', 'is', 'published', 'pursuant', 'to'), 63),\n",
" (('city', 'charter', '312', '(', 'a', ')'), 63),\n",
" (('hereby', 'given', 'that', 'the', 'mayor', 'will'), 63),\n",
" (('plan', 'and', 'schedule', 'notice', 'is', 'hereby'), 63),\n",
" (('s', ')', 'not', 'included', 'in', 'fy'), 63),\n",
" (('contracting', 'plan', 'and', 'schedule', 'notice', 'is'), 63),\n",
" (('(', 'a', ')', ':', 'agency', ':'), 63),\n",
" ((')', 'not', 'included', 'in', 'the', 'fy'), 63),\n",
" (('312', '(', 'a', ')', ':', 'agency'), 63),\n",
" (('to', 'new', 'york', 'city', 'charter', '312'), 63),\n",
" (('published', 'pursuant', 'to', 'new', 'york', 'city'), 63),\n",
" (('s', ')', 'not', 'included', 'in', 'the'), 63),\n",
" (('new', 'york', 'city', 'charter', '312', '('), 63),\n",
" (('and', 'schedule', 'notice', 'is', 'hereby', 'given'), 63),\n",
" (('is', 'published', 'pursuant', 'to', 'new', 'york'), 63),\n",
" (('contracting', 'plan', 'and', 'schedule', 'that', 'is'), 63),\n",
" (('plan', 'and', 'schedule', 'that', 'is', 'published'), 63),\n",
" (('annual', 'contracting', 'plan', 'and', 'schedule', 'notice'), 63),\n",
" (('charter', '312', '(', 'a', ')', ':'), 63),\n",
" (('and', 'schedule', 'that', 'is', 'published', 'pursuant'), 63),\n",
" (('york', 'city', 'charter', '312', '(', 'a'), 63),\n",
" (('annual', 'contracting', 'plan', 'and', 'schedule', 'that'), 63),\n",
" (('that', 'is', 'published', 'pursuant', 'to', 'new'), 63),\n",
" (('in', 'fy', '2015', 'annual', 'contracting', 'plan'), 62),\n",
" (('included', 'in', 'fy', '2015', 'annual', 'contracting'), 62),\n",
" (('included', 'in', 'the', 'fy', '2015', 'annual'), 62),\n",
" (('not', 'included', 'in', 'the', 'fy', '2015'), 62),\n",
" (('not', 'included', 'in', 'fy', '2015', 'annual'), 62),\n",
" (('in', 'the', 'fy', '2015', 'annual', 'contracting'), 62),\n",
" (('the', 'fy', '2015', 'annual', 'contracting', 'plan'), 62),\n",
" ((')', 'not', 'included', 'in', 'fy', '2015'), 62),\n",
" (('for', 'the', 'period', 'july', '1', ','), 61),\n",
" (('meets', 'in', 'spector', 'hall', ',', '22'), 60),\n",
" (('of', 'the', 'new', 'york', 'city', 'charter'), 53),\n",
" (('at', 'the', 'call', 'of', 'the', 'chairman'), 51),\n",
" (('reade', 'street', ',', 'main', 'floor', ','), 50),\n",
" ((',', '22', 'reade', 'street', ',', 'main'), 50),\n",
" (('22', 'reade', 'street', ',', 'main', 'floor'), 50),\n",
" (('the', 'call', 'of', 'the', 'chairman', '.'), 50),\n",
" (('office', 'of', 'environmental', 'remediation', '(', 'oer'), 50),\n",
" (('of', 'environmental', 'remediation', '(', 'oer', ')'), 50),\n",
" (('intends', 'to', 'utilize', ':', 'task', 'order'), 49),\n",
" (('oer', ')', 'has', 'received', 'an', 'nyc'), 49),\n",
" (('is', 'assigned', 'to', 'this', 'project', '.'), 49),\n",
" (('an', 'nyc', 'voluntary', 'cleanup', 'program', '('), 49),\n",
" (('to', 'utilize', ':', 'task', 'order', 'personnel'), 49),\n",
" (('environmental', 'remediation', '(', 'oer', ')', 'has'), 49),\n",
" (('nyc', 'voluntary', 'cleanup', 'program', '(', 'vcp'), 49),\n",
" (('utilize', ':', 'task', 'order', 'personnel', 'in'), 49),\n",
" ((')', 'has', 'received', 'an', 'nyc', 'voluntary'), 49),\n",
" (('remediation', '(', 'oer', ')', 'has', 'received'), 49),\n",
" (('has', 'received', 'an', 'nyc', 'voluntary', 'cleanup'), 49),\n",
" (('task', 'order', 'personnel', 'in', 'substantially', 'similar'), 49),\n",
" ((':', 'task', 'order', 'personnel', 'in', 'substantially'), 49),\n",
" (('(', 'oer', ')', 'has', 'received', 'an'), 49),\n",
" (('received', 'an', 'nyc', 'voluntary', 'cleanup', 'program'), 49),\n",
" (('order', 'personnel', 'in', 'substantially', 'similar', 'titles'), 49),\n",
" (('city', 'office', 'of', 'environmental', 'remediation', '('), 49),\n",
" (('voluntary', 'cleanup', 'program', '(', 'vcp', ')'), 49),\n",
" (('the', 'new', 'york', 'city', 'office', 'of'), 49),\n",
" (('new', 'york', 'city', 'office', 'of', 'environmental'), 49),\n",
" (('agency', 'intends', 'to', 'utilize', ':', 'task'), 49),\n",
" (('york', 'city', 'office', 'of', 'environmental', 'remediation'), 49),\n",
" (('cleanup', 'program', '(', 'vcp', ')', 'application'), 49),\n",
" (('days', ',', 'times', 'and', 'location', 'as'), 48),\n",
" (('program', '(', 'vcp', ')', 'application', 'from'), 48),\n",
" (('times', 'and', 'location', 'as', 'warranted', '.'), 48),\n",
" (('and', 'other', 'days', ',', 'times', 'and'), 48),\n",
" (('other', 'days', ',', 'times', 'and', 'location'), 48),\n",
" ((',', 'times', 'and', 'location', 'as', 'warranted'), 48),\n",
" (('notice', 'is', 'hereby', 'given', 'that', 'a'), 48),\n",
" ((',', 'and', 'other', 'days', ',', 'times'), 48),\n",
" (('following', 'solicitation', '(', 's', ')', 'not'), 47),\n",
" (('the', 'mayor', 'will', 'be', 'issuing', 'the'), 47),\n",
" (('notice', 'of', 'intent', 'to', 'issue', 'new'), 47),\n",
" (('issuing', 'the', 'following', 'solicitation', '(', 's'), 47),\n",
" (('the', 'following', 'solicitation', '(', 's', ')'), 47),\n",
" (('issue', 'new', 'solicitation', '(', 's', ')'), 47),\n",
" (('be', 'issuing', 'the', 'following', 'solicitation', '('), 47),\n",
" (('intent', 'to', 'issue', 'new', 'solicitation', '('), 47),\n",
" (('mayor', 'will', 'be', 'issuing', 'the', 'following'), 47),\n",
" (('will', 'be', 'issuing', 'the', 'following', 'solicitation'), 47),\n",
" (('of', 'intent', 'to', 'issue', 'new', 'solicitation'), 47),\n",
" (('new', 'solicitation', '(', 's', ')', 'not'), 47),\n",
" (('that', 'the', 'mayor', 'will', 'be', 'issuing'), 47),\n",
" (('to', 'issue', 'new', 'solicitation', '(', 's'), 47),\n",
" ((',', 'new', 'york', ',', 'n.y.', '10007'), 46),\n",
" (('project', '.', 'the', 'new', 'york', 'city'), 45),\n",
" (('titles', 'within', 'agency', ':', '0', 'agency'), 45),\n",
" (('to', 'this', 'project', '.', 'the', 'new'), 45),\n",
" (('.', 'the', 'new', 'york', 'city', 'office'), 45),\n",
" (('assigned', 'to', 'this', 'project', '.', 'the'), 45),\n",
" (('within', 'agency', ':', '0', 'agency', ':'), 45),\n",
" (('this', 'project', '.', 'the', 'new', 'york'), 45),\n",
" ((')', ':', 'agency', ':', 'department', 'of'), 44),\n",
" (('a', ')', ':', 'agency', ':', 'department'), 44),\n",
" (('the', 'city', 'of', 'new', 'york', ','), 43),\n",
" (('ave', 'in', 'the', 'borough', 'of', 'manhattan'), 42),\n",
" (('agency', ':', 'department', 'of', 'information', 'technology'), 41),\n",
" (('date', 'of', 'the', 'proposed', 'renewed/extended', 'contract'), 40),\n",
" (('of', 'the', 'proposed', 'renewed/extended', 'contract', ':'), 40),\n",
" (('public', 'notice', 'is', 'hereby', 'given', 'that'), 39),\n",
" ((',', 'manhattan', 'certificate', 'of', 'appropriateness', 'a'), 38),\n",
" ((',', 'new', 'york', ',', 'new', 'york'), 37),\n",
" (('a', 'public', 'hearing', 'will', 'be', 'held'), 37),\n",
" (('matters', 'have', 'been', 'scheduled', 'for', 'public'), 36),\n",
" ((',', 'main', 'floor', ',', 'manhattan', ','), 36),\n",
" (('is', 'hereby', 'given', 'that', 'the', 'following'), 36),\n",
" ((',', 'commencing', '10:00', 'a.m.', ',', 'and'), 36),\n",
" (('scheduled', 'for', 'public', 'hearing', 'by', 'community'), 36),\n",
" (('hereby', 'given', 'that', 'the', 'following', 'matters'), 36),\n",
" (('street', ',', 'main', 'floor', ',', 'manhattan'), 36),\n",
" (('the', 'following', 'matters', 'have', 'been', 'scheduled'), 36),\n",
" ((',', 'municipal', 'building', ',', 'manhattan', ','), 36),\n",
" (('following', 'matters', 'have', 'been', 'scheduled', 'for'), 36),\n",
" (('of', 'the', 'chairman', '.', 'board', 'of'), 36),\n",
" (('have', 'been', 'scheduled', 'for', 'public', 'hearing'), 36),\n",
" (('commencing', '10:00', 'a.m.', ',', 'and', 'other'), 36),\n",
" (('that', 'the', 'following', 'matters', 'have', 'been'), 36),\n",
" (('given', 'that', 'the', 'following', 'matters', 'have'), 36),\n",
" (('a.m.', ',', 'and', 'other', 'days', ','), 36),\n",
" (('call', 'of', 'the', 'chairman', '.', 'board'), 36),\n",
" (('10:00', 'a.m.', ',', 'and', 'other', 'days'), 36),\n",
" (('been', 'scheduled', 'for', 'public', 'hearing', 'by'), 36),\n",
" (('individuals', 'requesting', 'sign', 'language', 'interpreters', 'should'),\n",
" 35),\n",
" (('by', 'community', 'board', ':', 'borough', 'of'), 35),\n",
" (('hearing', 'by', 'community', 'board', ':', 'borough'), 35),\n",
" (('public', 'hearing', 'by', 'community', 'board', ':'), 35),\n",
" (('for', 'public', 'hearing', 'by', 'community', 'board'), 35),\n",
" (('22', 'reade', 'street', ',', 'new', 'york'), 35),\n",
" (('in', 'the', 'matter', 'of', 'an', 'application'), 34),\n",
" (('reade', 'street', ',', 'new', 'york', ','), 34),\n",
" ((',', '22', 'reade', 'street', ',', 'new'), 34),\n",
" (('the', 'matter', 'of', 'an', 'application', 'submitted'), 33),\n",
" (('matter', 'of', 'an', 'application', 'submitted', 'by'), 33),\n",
" (('in', 'the', 'matter', 'of', 'a', 'proposed'), 33),\n",
" (('new', 'start', 'date', 'of', 'the', 'proposed'), 32),\n",
" (('reason', '(', 's', ')', 'the', 'agency'), 32),\n",
" (('services', 'performed', 'under', 'the', 'contract', ':'), 32),\n",
" (('the', 'new', 'york', 'city', 'department', 'of'), 32),\n",
" (('of', 'services', 'performed', 'under', 'the', 'contract'), 32),\n",
" (('days', 'prior', 'to', 'the', 'public', 'hearing'), 32),\n",
" (('(', 's', ')', 'the', 'agency', 'intends'), 32),\n",
" (('s', ')', 'the', 'agency', 'intends', 'to'), 32),\n",
" (('contract', '(', 's', ')', 'not', 'included'), 32),\n",
" (('new', 'end', 'date', 'of', 'the', 'proposed'), 32),\n",
" ((':', '0', 'agency', ':', 'department', 'of'), 32),\n",
" (('prior', 'to', 'the', 'public', 'hearing', '.'), 32),\n",
" (('nature', 'of', 'services', 'performed', 'under', 'the'), 32),\n",
" (('street', ',', 'new', 'york', ',', 'ny'), 31),\n",
" (('the', 'administration', 'for', 'children', \"'s\", 'services'), 31),\n",
" (('modifications', 'sought', 'to', 'the', 'nature', 'of'), 31),\n",
" (('requesting', 'sign', 'language', 'interpreters', 'should', 'contact'), 31),\n",
" (('street', ',', 'new', 'york', ',', 'n.y.'), 31),\n",
" (('sought', 'to', 'the', 'nature', 'of', 'services'), 31),\n",
" (('to', 'the', 'nature', 'of', 'services', 'performed'), 31),\n",
" (('agency', ':', '0', 'agency', ':', 'department'), 31),\n",
" (('the', 'nature', 'of', 'services', 'performed', 'under'), 31),\n",
" (('public', 'hearing', 'will', 'be', 'held', 'at'), 30),\n",
" (('sign', 'language', 'interpreters', 'should', 'contact', 'the'), 30),\n",
" ((',', 'new', 'york', '.', 'site', 'no'), 30),\n",
" (('new', 'york', '.', 'site', 'no', '.'), 30),\n",
" (('of', 'the', 'procurement', 'policy', 'board', 'rules'), 29),\n",
" (('business', 'days', 'prior', 'to', 'the', 'public'), 29),\n",
" ((':', 'department', 'of', 'information', 'technology', '&'), 29),\n",
" (('manhattan', ',', 'new', 'york', '10007', ','), 29),\n",
" ((',', 'manhattan', ',', 'new', 'york', '10007'), 29),\n",
" (('department', 'of', 'information', 'technology', '&', 'telecommunications'),\n",
" 28),\n",
" (('that', 'a', 'public', 'hearing', 'will', 'be'), 28),\n",
" (('new', 'york', ',', 'n.y.', '10007', ','), 28),\n",
" (('2nd', 'floor', ',', 'new', 'york', ','), 28),\n",
" ((',', '2nd', 'floor', ',', 'new', 'york'), 28),\n",
" (('interpreters', 'should', 'contact', 'the', 'mayor', \"'s\"), 27),\n",
" (('contact', 'the', 'mayor', \"'s\", 'office', 'of'), 27),\n",
" (('language', 'interpreters', 'should', 'contact', 'the', 'mayor'), 27),\n",
" (('should', 'contact', 'the', 'mayor', \"'s\", 'office'), 27),\n",
" (('st', 'in', 'the', 'borough', 'of', 'manhattan'), 26),\n",
" (('150', 'william', 'street', ',', '9th', 'floor'), 26),\n",
" ((')', 'business', 'days', 'prior', 'to', 'the'), 26),\n",
" ((',', 'at', 'the', 'call', 'of', 'the'), 26),\n",
" (('given', 'that', 'a', 'public', 'hearing', 'will'), 26),\n",
" (('administration', 'for', 'children', \"'s\", 'services', ','), 26),\n",
" (('extension', 'new', 'start', 'date', 'of', 'the'), 26),\n",
" (('is', 'hereby', 'given', 'that', 'a', 'public'), 25),\n",
" (('hereby', 'given', 'that', 'a', 'public', 'hearing'), 25),\n",
" (('month', 'at', 'the', 'call', 'of', 'the'), 24),\n",
" (('.', '(', 'preliminary', 'and', 'final', ')'), 24),\n",
" (('telecommunications', 'description', 'of', 'services', 'sought', ':'), 24),\n",
" ((',', 'new', 'york', ',', 'ny', '10006'), 24),\n",
" (('on', 'the', 'following', ':', 'in', 'the'), 24),\n",
" (('floor', ',', 'borough', 'of', 'manhattan', ','), 24),\n",
" (('llc', 'for', 'a', 'site', 'located', 'at'), 24),\n",
" ((',', 'maintain', ',', 'and', 'operate', 'an'), 24),\n",
" (('the', 'following', ':', 'in', 'the', 'matter'), 24),\n",
" (('technology', '&', 'telecommunications', 'description', 'of', 'services'),\n",
" 23),\n",
" (('information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description',\n",
" 'of'),\n",
" 23),\n",
" (('(', 'preliminary', 'and', 'final', ')', '('), 23),\n",
" (('preliminary', 'and', 'final', ')', '(', 'cc'), 23),\n",
" (('of',\n",
" 'information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description'),\n",
" 23),\n",
" (('&', 'telecommunications', 'description', 'of', 'services', 'sought'), 23),\n",
" (('the', 'procurement', 'policy', 'board', 'rules', '.'), 23),\n",
" (('.', 'start', 'date', 'of', 'the', 'proposed'), 23),\n",
" (('following', ':', 'in', 'the', 'matter', 'of'), 23),\n",
" (('the', 'new', 'york', 'city', 'charter', 'for'), 23),\n",
" (('for', 'a', 'term', 'of', 'two', 'years'), 22),\n",
" (('the', 'new', 'york', 'city', 'charter', ','), 22),\n",
" (('agency', 'intends', 'to', 'utilize', ':', 'amendment'), 22),\n",
" (('term', 'of', 'two', 'years', '.', ')'), 22),\n",
" ((',', 'new', 'york', '10007', ',', 'at'), 22),\n",
" (('the', 'contract', ':', 'none', 'reason', '('), 22),\n",
" (('caf', 'for', 'a', 'term', 'of', 'two'), 22),\n",
" (('under', 'the', 'contract', ':', 'none', 'reason'), 22),\n",
" ((':', 'none', 'reason', '(', 's', ')'), 22),\n",
" (('new', 'york', ',', 'ny', '10004', ','), 22),\n",
" (('date', 'of', 'the', 'proposed', 'extended', 'contract'), 22),\n",
" (('performed', 'under', 'the', 'contract', ':', 'none'), 22),\n",
" ((',', 'new', 'york', ',', 'ny', '10004'), 22),\n",
" (('none', 'reason', '(', 's', ')', 'the'), 22),\n",
" (('building', ',', 'manhattan', ',', 'new', 'york'), 22),\n",
" (('hearing', 'will', 'be', 'held', 'at', 'the'), 22),\n",
" (('a', 'term', 'of', 'two', 'years', '.'), 22),\n",
" ((')', 'of', 'the', 'procurement', 'policy', 'board'), 22),\n",
" (('contract', ':', 'none', 'reason', '(', 's'), 22),\n",
" (('municipal', 'building', ',', 'manhattan', ',', 'new'), 22),\n",
" (('of', 'the', 'proposed', 'extended', 'contract', ':'), 22),\n",
" (('street', ',', 'brooklyn', ',', 'new', 'york'), 21),\n",
" ((',', 'public', 'hearings', 'unit', ',', '253'), 21),\n",
" (('intends', 'to', 'utilize', ':', 'amendment', 'extension'), 21),\n",
" (('212', ')', '788-7490', ',', 'no', 'later'), 21),\n",
" (('services', 'personnel', 'in', 'substantially', 'similar', 'titles'), 21),\n",
" (('services', ',', 'public', 'hearings', 'unit', ','), 21),\n",
" (('a.m.', 'on', 'the', 'following', ':', 'in'), 21),\n",
" (('foot', 'parcel', 'of', 'land', 'located', 'at'), 21),\n",
" (('street', ',', '9th', 'floor', ',', 'borough'), 21),\n",
" (('square', 'foot', 'parcel', 'of', 'land', 'located'), 21),\n",
" ((')', '788-7490', ',', 'no', 'later', 'than'), 21),\n",
" (('9th', 'floor', ',', 'borough', 'of', 'manhattan'), 21),\n",
" (('(', '212', ')', '788-7490', ',', 'no'), 21),\n",
" (('hearings', 'unit', ',', '253', 'broadway', ','), 21),\n",
" ((',', '9th', 'floor', ',', 'borough', 'of'), 21),\n",
" (('public', 'hearings', 'unit', ',', '253', 'broadway'), 21),\n",
" (('end', 'date', 'of', 'the', 'proposed', 'renewed/extended'), 20),\n",
" (('of', 'a', 'proposed', 'contract', 'between', 'the'), 20),\n",
" (('department', 'of', 'housing', 'preservation', 'and', 'development'), 20),\n",
" (('at', '10:00', 'a.m.', 'on', 'the', 'following'), 20),\n",
" ((',', '150', 'william', 'street', ',', '9th'), 20),\n",
" (('amendment', 'extension', 'new', 'start', 'date', 'of'), 20),\n",
" (('the', 'matter', 'of', 'a', 'proposed', 'contract'), 20),\n",
" ((')', 'the', 'agency', 'intends', 'to', 'renew/extend'), 20),\n",
" ((':', 'amendment', 'extension', 'new', 'start', 'date'), 20),\n",
" (('to', 'utilize', ':', 'amendment', 'extension', 'new'), 20),\n",
" (('intends', 'to', 'renew/extend', 'the', 'contract', ':'), 20),\n",
" (('utilize', ':', 'amendment', 'extension', 'new', 'start'), 20),\n",
" (('new', 'york', ',', 'ny', '10007', ','), 20),\n",
" (('matter', 'of', 'a', 'proposed', 'contract', 'between'), 20),\n",
" (('start', 'date', 'of', 'the', 'proposed', 'renewed/extended'), 20),\n",
" (('the', 'agency', 'intends', 'to', 'renew/extend', 'the'), 20),\n",
" (('agency', 'intends', 'to', 'renew/extend', 'the', 'contract'), 20),\n",
" (('.', 'tdd', 'users', 'should', 'call', 'verizon'), 19),\n",
" (('tdd', 'users', 'should', 'call', 'verizon', 'relay'), 19),\n",
" (('201', 'of', 'the', 'new', 'york', 'city'), 19),\n",
" (('.', '(', 'preliminary', ')', '(', 'cc'), 19),\n",
" (('197-c', 'and', '201', 'of', 'the', 'new'), 19),\n",
" (('of', 'renewal/extension', 'the', 'agency', 'intends', 'to'), 19),\n",
" ((',', 'borough', 'of', 'manhattan', ',', 'on'), 19),\n",
" (('renewal/extension', 'the', 'agency', 'intends', 'to', 'utilize'), 19),\n",
" (('7', ')', 'business', 'days', 'prior', 'to'), 19),\n",
" (('of', 'services', 'personnel', 'in', 'substantially', 'similar'), 19),\n",
" ((',', 'manhattan', ',', 'ny', '10007', ','), 19),\n",
" (('method', 'of', 'renewal/extension', 'the', 'agency', 'intends'), 19),\n",
" (('children', \"'s\", 'services', ',', 'office', 'of'), 19),\n",
" (('new', 'york', 'city', 'charter', 'for', 'the'), 19),\n",
" ((',', 'ny', '.', 'site', 'no', '.'), 19),\n",
" (('(', '7', ')', 'business', 'days', 'prior'), 19),\n",
" (('of', 'the', 'state', 'of', 'new', 'york'), 19),\n",
" (('available', 'for', 'public', 'inspection', 'at', 'the'), 19),\n",
" ((',', 'no', 'later', 'than', 'seven', '('), 19),\n",
" (('788-7490', ',', 'no', 'later', 'than', 'seven'), 19),\n",
" (('later', 'than', 'seven', '(', '7', ')'), 19),\n",
" (('seven', '(', '7', ')', 'business', 'days'), 19),\n",
" (('no', 'later', 'than', 'seven', '(', '7'), 19),\n",
" (('than', 'seven', '(', '7', ')', 'business'), 19),\n",
" (('for', 'children', \"'s\", 'services', ',', 'office'), 19),\n",
" (('mayor', \"'s\", 'office', 'of', 'contract', 'services'), 18),\n",
" (('office', 'of', 'contract', 'services', ',', 'public'), 18),\n",
" (('of', 'parks', 'and', 'recreation', 'nature', 'of'), 18),\n",
" ((',', 'brooklyn', 'certificate', 'of', 'appropriateness', 'a'), 18),\n",
" ((',', '(', '212', ')', '788-7490', ','), 18),\n",
" (('titles', 'within', 'agency', ':', '0', 'notice'), 18),\n",
" (('city', 'of', 'new', 'york', ',', 'as'), 18),\n",
" (('.', 'individuals', 'requesting', 'sign', 'language', 'interpreters'), 18),\n",
" ((':', 'department', 'of', 'parks', 'and', 'recreation'), 18),\n",
" (('and', '201', 'of', 'the', 'new', 'york'), 18),\n",
" (('pursuant', 'to', 'sections', '197-c', 'and', '201'), 18),\n",
" ((\"'s\", 'office', 'of', 'contract', 'services', ','), 18),\n",
" (('of', 'contract', 'services', ',', 'public', 'hearings'), 18),\n",
" (('agency', ':', 'department', 'of', 'parks', 'and'), 18),\n",
" (('department', 'of', 'parks', 'and', 'recreation', 'nature'), 18),\n",
" (('two', 'million', 'dollars', '(', '$', '2,000,000'), 18),\n",
" (('contract', 'services', ',', 'public', 'hearings', 'unit'), 18),\n",
" (('to', 'sections', '197-c', 'and', '201', 'of'), 18),\n",
" (('million', 'dollars', '(', '$', '2,000,000', ')'), 18),\n",
" (('sections', '197-c', 'and', '201', 'of', 'the'), 18),\n",
" (('the', 'mayor', \"'s\", 'office', 'of', 'contract'), 18),\n",
" (('10007', ',', '(', '212', ')', '788-7490'), 18),\n",
" (('of', 'brooklyn', '.', 'community', 'board', '#'), 17),\n",
" ((':', 'individuals', 'requesting', 'sign', 'language', 'interpreters'), 17),\n",
" (('inspection', 'at', 'the', 'new', 'york', 'city'), 17),\n",
" (('the', 'city', 'of', 'new', 'york', 'and'), 17),\n",
" (('rules', '.', 'a', 'copy', 'of', 'the'), 17),\n",
" (('nan', 'notice', 'is', 'hereby', 'given', 'that'), 17),\n",
" (('borough', 'of', 'brooklyn', '.', 'community', 'board'), 17),\n",
" (('2', ',', 'manhattan', 'certificate', 'of', 'appropriateness'), 17),\n",
" (('district', '2', ',', 'manhattan', 'certificate', 'of'), 17),\n",
" ((',', 'borough', 'of', 'brooklyn', '.', 'community'), 17),\n",
" (('five', '(', '5', ')', 'business', 'days'), 17),\n",
" (('community', 'district', '2', ',', 'manhattan', 'certificate'), 17),\n",
" (('for', 'the', 'city', 'of', 'new', 'york'), 17),\n",
" (('new', 'york', ',', 'new', 'york', '10007'), 17),\n",
" (('note', ':', 'individuals', 'requesting', 'sign', 'language'), 17),\n",
" (('the', 'city', 'of', 'new', 'york', '('), 17),\n",
" (('to', 'the', 'public', 'hearing', '.', 'tdd'), 16),\n",
" (('c', ')', '(', '3', ')', 'of'), 16),\n",
" (('the', 'public', 'hearing', '.', 'tdd', 'users'), 16),\n",
" (('of', 'new', 'york', ',', 'as', 'tenant'), 16),\n",
" (('intent', 'to', 'extend', 'contract', '(', 's'), 16),\n",
" (('entering', 'into', 'the', 'following', 'extension', '('), 16),\n",
" (('commencing', 'at', '10:00', 'a.m.', 'on', 'the'), 16),\n",
" (('a', ')', 'contract', '(', 's', ')'), 16),\n",
" (('of', 'manhattan', '.', 'community', 'board', '#'), 16),\n",
" (('at', 'the', 'end', 'of', 'each', 'month'), 16),\n",
" (('church', 'street', ',', '12th', 'floor', ','), 16),\n",
" (('new', 'york', ',', 'as', 'tenant', ','), 16),\n",
" ((',', 'in', 'the', 'borough', 'of', 'manhattan'), 16),\n",
" (('to', ',', 'maintain', ',', 'and', 'operate'), 16),\n",
" ((',', 'staten', 'island', ',', 'new', 'york'), 16),\n",
" (('(', 'to', 'continue', 'to', ',', 'maintain'), 16),\n",
" (('public', 'hearing', '.', 'tdd', 'users', 'should'), 16),\n",
" (('be', 'entering', 'into', 'the', 'following', 'extension'), 16),\n",
" (('payable', 'in', 'equal', 'monthly', 'installments', 'at'), 16),\n",
" (('following', 'extension', '(', 's', ')', 'of'), 16),\n",
" ((')', 'contract', '(', 's', ')', 'not'), 16),\n",
" (('no', 'later', 'than', 'five', '(', '5'), 16),\n",
" ((')', '(', '3', ')', 'of', 'the'), 16),\n",
" (('the', 'mayor', 'will', 'be', 'entering', 'into'), 16),\n",
" (('hearing', '.', 'tdd', 'users', 'should', 'call'), 16),\n",
" (('.', 'notice', 'of', 'intent', 'to', 'issue'), 16),\n",
" (('s', ')', 'of', '(', 'a', ')'), 16),\n",
" (('end', 'of', 'each', 'month', '.', 'the'), 16),\n",
" (('new', 'york', ',', 'n.y.', '10007', '.'), 16),\n",
" (('city', 'and', 'state', 'mortgage', 'recording', 'taxes'), 16),\n",
" (('into', 'the', 'following', 'extension', '(', 's'), 16),\n",
" (('mayor', 'will', 'be', 'entering', 'into', 'the'), 16),\n",
" (('borough', 'of', 'manhattan', '.', 'community', 'board'), 16),\n",
" (('(', 's', ')', 'of', '(', 'a'), 16),\n",
" (('recreation', 'nature', 'of', 'services', 'sought', ':'), 16),\n",
" (('in', 'the', 'borough', 'of', 'brooklyn', '('), 16),\n",
" (('the', 'proposed', 'contractor', 'has', 'been', 'selected'), 16),\n",
" (('(', 'a', ')', 'contract', '(', 's'), 16),\n",
" (('later', 'than', 'five', '(', '5', ')'), 16),\n",
" (('continue', 'to', ',', 'maintain', ',', 'and'), 16),\n",
" (('to', 'continue', 'to', ',', 'maintain', ','), 16),\n",
" (('extension', '(', 's', ')', 'of', '('), 16),\n",
" (('extend', 'contract', '(', 's', ')', 'not'), 16),\n",
" (('to', 'extend', 'contract', '(', 's', ')'), 16),\n",
" (('notice', 'of', 'intent', 'to', 'extend', 'contract'), 16),\n",
" ((',', 'in', 'spector', 'hall', ',', '22'), 16),\n",
" (('than', 'five', '(', '5', ')', 'business'), 16),\n",
" (('nan', 'notice', 'of', 'intent', 'to', 'issue'), 16),\n",
" (('(', 'c', ')', '(', '3', ')'), 16),\n",
" (('equal', 'monthly', 'installments', 'at', 'the', 'end'), 16),\n",
" (('intends', 'to', 'utilize', ':', 'competitive', 'sealed'), 16),\n",
" (('agency', 'intends', 'to', 'utilize', ':', 'competitive'), 16),\n",
" (('new', 'york', ',', 'ny', '10007', '('), 16),\n",
" (('of', '(', 'a', ')', 'contract', '('), 16),\n",
" ((')', 'of', '(', 'a', ')', 'contract'), 16),\n",
" ((',', 'borough', 'of', 'manhattan', '.', 'community'), 16),\n",
" (('five', '(', '5', ')', 'years', ','), 16),\n",
" (('the', 'following', 'extension', '(', 's', ')'), 16),\n",
" (('and', 'recreation', 'nature', 'of', 'services', 'sought'), 16),\n",
" (('the', 'end', 'of', 'each', 'month', '.'), 16),\n",
" (('installments', 'at', 'the', 'end', 'of', 'each'), 16),\n",
" (('100', 'church', 'street', ',', '12th', 'floor'), 16),\n",
" (('monthly', 'installments', 'at', 'the', 'end', 'of'), 16),\n",
" (('will', 'be', 'entering', 'into', 'the', 'following'), 16),\n",
" (('of', 'intent', 'to', 'extend', 'contract', '('), 16),\n",
" (('that', 'the', 'mayor', 'will', 'be', 'entering'), 16),\n",
" (('at', '100', 'church', 'street', ',', '12th'), 16),\n",
" (('parks', 'and', 'recreation', 'nature', 'of', 'services'), 16),\n",
" (('in', 'equal', 'monthly', 'installments', 'at', 'the'), 16),\n",
" (('section', '3-04', '(', 'b', ')', '('), 15),\n",
" (('on', 'the', '12th', 'floor', 'of', '250'), 15),\n",
" (('the', 'new', 'york', 'city', 'housing', 'authority'), 15),\n",
" (('please', 'visit', 'nycha', \"'s\", 'website', 'or'), 15),\n",
" ((',', 'please', 'visit', 'nycha', \"'s\", 'website'), 15),\n",
" (('in', 'the', 'board', 'room', 'on', 'the'), 15),\n",
" (('the', 'schedule', 'will', 'be', 'posted', 'here'), 15),\n",
" (('reasonable', 'time', 'before', 'the', 'meeting', '.'), 15),\n",
" (('extent', 'practicable', 'at', 'a', 'reasonable', 'time'), 15),\n",
" (('at', 'a', 'reasonable', 'time', 'before', 'the'), 15),\n",
" (('to', 'the', 'extent', 'practicable', 'at', 'a'), 15),\n",
" (('services', 'start', 'date', 'of', 'the', 'proposed'), 15),\n",
" (('meeting', '.', 'for', 'additional', 'information', ','), 15),\n",
" (('additional', 'information', ',', 'please', 'visit', 'nycha'), 15),\n",
" (('10:00', 'a.m.', 'in', 'the', 'board', 'room'), 15),\n",
" (('http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent'),\n",
" 15),\n",
" (('street', ',', '2nd', 'floor', 'conference', 'room'), 15),\n",
" (('street', ',', '12th', 'floor', ',', 'training'), 15),\n",
" ((\"'s\", 'website', 'or', 'contact', '(', '212'), 15),\n",
" (('nycha', \"'s\", 'website', 'or', 'contact', '('), 15),\n",
" (('community', 'board', ':', 'borough', 'of', 'brooklyn'), 15),\n",
" (('room', 'on', 'the', '12th', 'floor', 'of'), 15),\n",
" (('here', 'and', 'on', 'nycha', \"'s\", 'website'), 15),\n",
" (('to', 'section', '3-04', '(', 'b', ')'), 15),\n",
" (('of', 'the', 'new', 'york', 'city', 'housing'), 15),\n",
" (('york', ',', 'as', 'tenant', ',', 'of'), 15),\n",
" (('be', 'posted', 'here', 'and', 'on', 'nycha'), 15),\n",
" (('a', 'public', 'hearing', ',', 'tuesday', 'morning'), 15),\n",
" ((',', '12th', 'floor', ',', 'training', 'room'), 15),\n",
" (('a.m.', 'in', 'the', 'board', 'room', 'on'), 15),\n",
" (('(', 'b', ')', '(', '2', ')'), 15),\n",
" (('.', '(', 'final', ')', '(', 'cc'), 15),\n",
" (('pursuant', 'to', 'section', '3-04', '(', 'b'), 15),\n",
" (('to', 'the', 'schedule', 'will', 'be', 'posted'), 15),\n",
" (('for', 'additional', 'information', ',', 'please', 'visit'), 15),\n",
" (('public', 'hearing', ',', 'tuesday', 'morning', ','), 15),\n",
" (('2nd', 'floor', 'conference', 'room', ',', 'borough'), 15),\n",
" (('new', 'york', 'city', 'charter', ',', 'will'), 15),\n",
" ((\"'s\", 'services', ',', 'office', 'of', 'procurement'), 15),\n",
" (('of', 'a', 'public', 'hearing', ',', 'tuesday'), 15),\n",
" (('floor', ',', 'new', 'york', ',', 'n.y.'), 15),\n",
" ((',', '2nd', 'floor', 'conference', 'room', ','), 15),\n",
" (('3-04', '(', 'b', ')', '(', '2'), 15),\n",
" (('33', 'beaver', 'street', ',', '21st', 'floor'), 15),\n",
" ((',', '33', 'beaver', 'street', ',', '21st'), 15),\n",
" (('on', 'nycha', \"'s\", 'website', 'at', 'http'), 15),\n",
" (('is', 'hereby', 'given', 'of', 'a', 'public'), 15),\n",
" (('22', 'reade', 'street', ',', '2nd', 'floor'), 15),\n",
" (('at', '10:00', 'a.m.', 'in', 'the', 'board'), 15),\n",
" ((',', 'on', 'the', 'following', 'matters', ':'), 15),\n",
" (('of', '250', 'broadway', ',', 'new', 'york'), 15),\n",
" (('10:00', 'a.m.', 'on', 'the', 'following', ':'), 15),\n",
" (('website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to'),\n",
" 15),\n",
" (('beaver', 'street', ',', '21st', 'floor', ','), 15),\n",
" (('(', 'unless', 'otherwise', 'noted', ')', '.'), 15),\n",
" (('at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the'),\n",
" 15),\n",
" ((\"'s\",\n",
" 'website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml'),\n",
" 15),\n",
" (('users', 'should', 'call', 'verizon', 'relay', 'services'), 15),\n",
" (('titles', 'within', 'agency', ':', '0', 'nan'), 15),\n",
" (('notice', 'is', 'hereby', 'given', 'of', 'a'), 15),\n",
" ((':', 'borough', 'of', 'brooklyn', 'community', 'board'), 15),\n",
" (('square', 'foot', 'facility', 'located', 'on', 'a'), 15),\n",
" (('practicable', 'at', 'a', 'reasonable', 'time', 'before'), 15),\n",
" (('any', 'changes', 'to', 'the', 'schedule', 'will'), 15),\n",
" (('posted', 'here', 'and', 'on', 'nycha', \"'s\"), 15),\n",
" ((':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable'),\n",
" 15),\n",
" (('will', 'be', 'posted', 'here', 'and', 'on'), 15),\n",
" (('and', 'on', 'nycha', \"'s\", 'website', 'at'), 15),\n",
" (('12th', 'floor', ',', 'training', 'room', '#'), 15),\n",
" (('the', '12th', 'floor', 'of', '250', 'broadway'), 15),\n",
" (('.', 'any', 'changes', 'to', 'the', 'schedule'), 15),\n",
" (('nycha', \"'s\", 'website', 'at', 'http', ':'), 15),\n",
" (('#', '143', ',', 'new', 'york', ','), 15),\n",
" (('.', 'application', 'is', 'to', 'construct', 'a'), 15),\n",
" (('changes', 'to', 'the', 'schedule', 'will', 'be'), 15),\n",
" (('12th', 'floor', 'of', '250', 'broadway', ','), 15),\n",
" (('conference', 'room', ',', 'borough', 'of', 'manhattan'), 15),\n",
" (('schedule', 'will', 'be', 'posted', 'here', 'and'), 15),\n",
" (('the', 'board', 'room', 'on', 'the', '12th'), 15),\n",
" (('training', 'room', '#', '143', ',', 'new'), 15),\n",
" ((',', 'training', 'room', '#', '143', ','), 15),\n",
" (('visit', 'nycha', \"'s\", 'website', 'or', 'contact'), 15),\n",
" (('reade', 'street', ',', '2nd', 'floor', 'conference'), 15),\n",
" (('website', 'or', 'contact', '(', '212', ')'), 15),\n",
" (('.', 'for', 'additional', 'information', ',', 'please'), 15),\n",
" (('a', 'reasonable', 'time', 'before', 'the', 'meeting'), 15),\n",
" (('250', 'broadway', ',', 'new', 'york', ','), 15),\n",
" (('//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at'),\n",
" 15),\n",
" (('floor', 'conference', 'room', ',', 'borough', 'of'), 15),\n",
" (('board', 'room', 'on', 'the', '12th', 'floor'), 15),\n",
" (('floor', 'of', '250', 'broadway', ',', 'new'), 15),\n",
" (('room', '#', '143', ',', 'new', 'york'), 15),\n",
" (('given', 'of', 'a', 'public', 'hearing', ','), 15),\n",
" (('should', 'call', 'verizon', 'relay', 'services', '.'), 15),\n",
" (('at', 'one', 'centre', 'street', ',', 'room'), 15),\n",
" (('hereby', 'given', 'of', 'a', 'public', 'hearing'), 15),\n",
" (('floor', ',', 'training', 'room', '#', '143'), 15),\n",
" (('street', ',', 'manhattan', ',', 'new', 'york'), 15),\n",
" (('the', 'extent', 'practicable', 'at', 'a', 'reasonable'), 15),\n",
" (('board', ':', 'borough', 'of', 'brooklyn', 'community'), 15),\n",
" (('information', ',', 'please', 'visit', 'nycha', \"'s\"), 15),\n",
" ((',', 'as', 'tenant', ',', 'of', 'approximately'), 14),\n",
" (('to', 'schedule', 'an', 'inspection', ',', 'please'), 14),\n",
" ((',', 'brooklyn', ',', 'new', 'york', '.'), 14),\n",
" (('n.y.', '10007', ',', 'on', 'the', 'following'), 14),\n",
" (('island', ',', 'new', 'york', 'having', 'an'), 14),\n",
" (('824', 'of', 'the', 'new', 'york', 'city'), 14),\n",
" (('municipal', 'building', ',', 'manhattan', ',', 'ny'), 14),\n",
" (('from', 'the', 'date', 'of', 'approval', 'by'), 14),\n",
" (('2000', 'north', ',', 'new', 'york', ','), 14),\n",
" (('in', 'accordance', 'with', 'section', '824', 'of'), 14),\n",
" (('chris', 'fleming', 'at', '(', '212', ')'), 14),\n",
" (('of', 'the', 'proposed', 'lease', 'may', 'be'), 14),\n",
" (('and', 'dispositions', 'public', 'hearing', ',', 'in'), 14),\n",
" ((':', 'ddc', 'description', 'of', 'services', 'sought'), 14),\n",
" (('manhattan', ',', 'ny', '10007', ',', 'at'), 14),\n",
" (('schedule', 'an', 'inspection', ',', 'please', 'contact'), 14),\n",
" (('city', 'charter', ',', 'will', 'be', 'held'), 14),\n",
" (('the', 'department', 'of', 'citywide', 'administrative', 'services'), 14),\n",
" (('a', 'real', 'property', 'acquisitions', 'and', 'dispositions'), 14),\n",
" (('that', 'a', 'real', 'property', 'acquisitions', 'and'), 14),\n",
" (('new', 'york', 'city', 'administration', 'for', 'children'), 14),\n",
" ((',', 'including', 'public', 'inspection', 'of', 'the'), 14),\n",
" (('the', 'proposed', 'lease', 'may', 'be', 'obtained'), 14),\n",
" (('an', 'inspection', ',', 'please', 'contact', 'chris'), 14),\n",
" ((',', 'pursuant', 'to', 'section', '3-04', '('), 14),\n",
" (('york', ',', 'n.y.', '10007', '.', 'to'), 14),\n",
" (('york', ',', 'n.y.', '10007', ',', 'on'), 14),\n",
" (('including', 'public', 'inspection', 'of', 'the', 'proposed'), 14),\n",
" (('public', 'hearing', ',', 'in', 'accordance', 'with'), 14),\n",
" (('room', '2000', 'north', ',', 'new', 'york'), 14),\n",
" (('acquisitions', 'and', 'dispositions', 'public', 'hearing', ','), 14),\n",
" (('construction', 'description', 'of', 'services', 'sought', ':'), 14),\n",
" (('is', 'hereby', 'given', 'that', 'a', 'real'), 14),\n",
" (('agency', ':', 'ddc', 'description', 'of', 'services'), 14),\n",
" (('hearing', ',', 'in', 'accordance', 'with', 'section'), 14),\n",
" (('proposed', 'lease', 'may', 'be', 'obtained', 'at'), 14),\n",
" (('(', '212', ')', '386-0315', '.', 'individuals'), 14),\n",
" ((',', 'new', 'york', 'having', 'an', 'approximate'), 14),\n",
" (('inspection', 'of', 'the', 'proposed', 'lease', 'may'), 14),\n",
" (('fleming', 'at', '(', '212', ')', '386-0315'), 14),\n",
" (('10007', ',', 'on', 'the', 'following', 'matters'), 14),\n",
" (('date', 'of', 'approval', 'by', 'the', 'mayor'), 14),\n",
" (('the', 'new', 'york', 'city', 'administration', 'for'), 14),\n",
" (('0', 'agency', ':', 'department', 'of', 'information'), 14),\n",
" (('accordance', 'with', 'section', '824', 'of', 'the'), 14),\n",
" (('real', 'property', 'acquisitions', 'and', 'dispositions', 'public'), 14),\n",
" (('staten', 'island', ',', 'new', 'york', 'having'), 14),\n",
" (('obtained', 'at', 'one', 'centre', 'street', ','), 14),\n",
" (('.', 'further', 'information', ',', 'including', 'public'), 14),\n",
" ((',', 'in', 'accordance', 'with', 'section', '824'), 14),\n",
" (('procurement', 'policy', 'board', 'rules', '.', 'a'), 14),\n",
" (('broadway', ',', '2nd', 'floor', ',', 'new'), 14),\n",
" (('gotham', 'center', ',', '42-09', '28th', 'street'), 14),\n",
" (('at', 'gotham', 'center', ',', '42-09', '28th'), 14),\n",
" (('centre', 'street', ',', 'room', '2000', 'north'), 14),\n",
" (('one', 'centre', 'street', ',', 'room', '2000'), 14),\n",
" (('lease', 'may', 'be', 'obtained', 'at', 'one'), 14),\n",
" (('given', 'that', 'a', 'real', 'property', 'acquisitions'), 14),\n",
" (('be', 'obtained', 'at', 'one', 'centre', 'street'), 14),\n",
" ((',', 'n.y.', '10007', '.', 'to', 'schedule'), 14),\n",
" (('york', 'city', 'charter', ',', 'will', 'be'), 14),\n",
" (('253', 'broadway', ',', '2nd', 'floor', ','), 14),\n",
" (('section', '824', 'of', 'the', 'new', 'york'), 14),\n",
" (('within', 'agency', ':', '0', 'notice', 'of'), 14),\n",
" (('please', 'contact', 'chris', 'fleming', 'at', '('), 14),\n",
" (('york', ',', 'n.y.', '10007', ',', '('), 14),\n",
" (('10007', '.', 'to', 'schedule', 'an', 'inspection'), 14),\n",
" (('street', ',', 'room', '2000', 'north', ','), 14),\n",
" (('agency', ':', '0', 'agency', ':', 'ddc'), 14),\n",
" (('n.y.', '10007', ',', '(', '212', ')'), 14),\n",
" (('contact', 'chris', 'fleming', 'at', '(', '212'), 14),\n",
" (('information', ',', 'including', 'public', 'inspection', 'of'), 14),\n",
" (('york', 'having', 'an', 'approximate', 'original', 'principal'), 14),\n",
" (('unit', ',', '253', 'broadway', ',', '2nd'), 14),\n",
" (('new', 'york', ',', 'ny', '10007', '.'), 14),\n",
" (('386-0315', '.', 'individuals', 'requesting', 'sign', 'language'), 14),\n",
" (('the', 'date', 'of', 'approval', 'by', 'the'), 14),\n",
" (('the', 'borough', 'of', 'brooklyn', '(', 'to'), 14),\n",
" (('further', 'information', ',', 'including', 'public', 'inspection'), 14),\n",
" (('center', ',', '42-09', '28th', 'street', ','), 14),\n",
" (('inspection', ',', 'please', 'contact', 'chris', 'fleming'), 14),\n",
" ((',', '253', 'broadway', ',', '2nd', 'floor'), 14),\n",
" (('street', ',', '2nd', 'floor', ',', 'new'), 14),\n",
" ((',', 'room', '2000', 'north', ',', 'new'), 14),\n",
" (('project', 'manager', ',', 'associate', 'project', 'manager'), 14),\n",
" (('public', 'inspection', 'of', 'the', 'proposed', 'lease'), 14),\n",
" ((')', '386-0315', '.', 'individuals', 'requesting', 'sign'), 14),\n",
" ((',', 'llc', 'for', 'a', 'site', 'located'), 14),\n",
" ((',', 'n.y.', '10007', ',', 'on', 'the'), 14),\n",
" (('property', 'acquisitions', 'and', 'dispositions', 'public', 'hearing'),\n",
" 14),\n",
" ((':', 'in', 'the', 'matter', 'of', 'a'), 14),\n",
" (('city', 'administration', 'for', 'children', \"'s\", 'services'), 14),\n",
" (('n.y.', '10007', '.', 'to', 'schedule', 'an'), 14),\n",
" ((',', 'n.y.', '10007', ',', '(', '212'), 14),\n",
" (('york', 'city', 'administration', 'for', 'children', \"'s\"), 14),\n",
" (('212', ')', '386-0315', '.', 'individuals', 'requesting'), 14),\n",
" (('north', ',', 'new', 'york', ',', 'n.y.'), 14),\n",
" (('dispositions', 'public', 'hearing', ',', 'in', 'accordance'), 14),\n",
" (('ddc', 'description', 'of', 'services', 'sought', ':'), 14),\n",
" (('may', 'be', 'obtained', 'at', 'one', 'centre'), 14),\n",
" (('with', 'section', '824', 'of', 'the', 'new'), 14),\n",
" (('b', ')', '(', '2', ')', '('), 14),\n",
" (('.', 'to', 'schedule', 'an', 'inspection', ','), 14),\n",
" (('charter', ',', 'will', 'be', 'held', 'on'), 14),\n",
" (('hereby', 'given', 'that', 'a', 'real', 'property'), 14),\n",
" (('building', ',', 'manhattan', ',', 'ny', '10007'), 14),\n",
" (('at', '(', '212', ')', '386-0315', '.'), 14),\n",
" ((',', 'please', 'contact', 'chris', 'fleming', 'at'), 14),\n",
" (('and', 'state', 'mortgage', 'recording', 'taxes', '.'), 14),\n",
" ((',', '22', 'reade', 'street', ',', '2nd'), 14),\n",
" (('new', 'york', 'having', 'an', 'approximate', 'original'), 14),\n",
" (('agency', ':', 'department', 'of', 'environmental', 'protection'), 14),\n",
" (('a.m.', ',', '22', 'reade', 'street', ','), 14),\n",
" (('contact', '(', '212', ')', '306-6088', '.'), 13),\n",
" (('will', 'be', 'held', 'at', 'the', 'administration'), 13),\n",
" (('between', 'the', 'administration', 'for', 'children', \"'s\"), 13),\n",
" (('having', 'an', 'approximate', 'original', 'principal', 'amount'), 13),\n",
" (('and', 'construction', 'description', 'of', 'services', 'sought'), 13),\n",
" (('board', 'rules', '.', 'a', 'copy', 'of'), 13),\n",
" (('.', 'hourly', 'wage', 'average', 'and', 'range'), 13),\n",
" (('is', 'available', 'for', 'public', 'inspection', 'at'), 13),\n",
" (('new', 'york', 'city', 'economic', 'development', 'corporation'), 13),\n",
" (('exempt', 'from', 'federal', 'taxation', 'pursuant', 'to'), 13),\n",
" (('administration', 'for', 'children', \"'s\", 'services', 'of'), 13),\n",
" (('for', 'children', \"'s\", 'services', 'of', 'the'), 13),\n",
" (('brooklyn', ',', 'new', 'york', '.', 'site'), 13),\n",
" (('hourly', 'wage', 'average', 'and', 'range', ':'), 13),\n",
" (('or', 'contact', '(', '212', ')', '306-6088'), 13),\n",
" (('at', 'the', 'new', 'york', 'city', 'administration'), 13),\n",
" (('federal', 'taxation', 'pursuant', 'to', 'section', '501'), 13),\n",
" (('corporation', 'exempt', 'from', 'federal', 'taxation', 'pursuant'), 13),\n",
" (('street', ',', 'new', 'york', ',', 'new'), 13),\n",
" (('pursuant', 'to', 'section', '501', '(', 'c'), 13),\n",
" ((',', 'ny', '10007', 'at', '9:15', 'a.m.'), 13),\n",
" (('from', 'federal', 'taxation', 'pursuant', 'to', 'section'), 13),\n",
" (('street', 'in', 'the', 'borough', 'of', 'manhattan'), 13),\n",
" (('taxation', 'pursuant', 'to', 'section', '501', '('), 13),\n",
" (('llc', 'pursuant', 'to', 'sections', '197-c', 'and'), 13),\n",
" (('an', 'approximate', 'original', 'principal', 'amount', 'of'), 13),\n",
" (('manager', ',', 'associate', 'project', 'manager', ','), 13),\n",
" (('held', 'at', 'the', 'administration', 'for', 'children'), 13),\n",
" (('children', \"'s\", 'services', 'of', 'the', 'city'), 13),\n",
" (('york', ',', 'ny', '10007', 'at', '9:15'), 13),\n",
" (('143', ',', 'new', 'york', ',', 'ny'), 13),\n",
" ((':', 'department', 'of', 'design', 'and', 'construction'), 13),\n",
" (('public', 'hearing', 'notice', 'is', 'hereby', 'given'), 13),\n",
" (('may', 'be', 'terminated', 'by', 'the', 'tenant'), 13),\n",
" (('design', 'and', 'construction', 'description', 'of', 'services'), 13),\n",
" (('section', '501', '(', 'c', ')', '('), 13),\n",
" (('approximate', 'original', 'principal', 'amount', 'of', '$'), 13),\n",
" (('agency', ':', 'department', 'of', 'design', 'and'), 13),\n",
" (('policy', 'board', 'rules', '.', 'a', 'copy'), 13),\n",
" (('services', 'of', 'the', 'city', 'of', 'new'), 13),\n",
" (('of', 'an', 'application', 'submitted', 'by', 'the'), 13),\n",
" (('contract', 'is', 'available', 'for', 'public', 'inspection'), 13),\n",
" ((\"'s\", 'services', 'of', 'the', 'city', 'of'), 13),\n",
" (('street', ',', 'manhattan', '.', '(', 'preliminary'), 13),\n",
" (('be', 'held', 'at', 'the', 'administration', 'for'), 13),\n",
" (('501', '(', 'c', ')', '(', '3'), 13),\n",
" (('of', 'design', 'and', 'construction', 'description', 'of'), 13),\n",
" (('william', 'street', ',', '9th', 'floor', ','), 13),\n",
" (('.', 'notice', 'is', 'hereby', 'given', 'that'), 13),\n",
" (('.', 'the', 'contract', 'term', 'shall', 'be'), 13),\n",
" (('department', 'of', 'design', 'and', 'construction', 'description'), 13),\n",
" (('to', 'section', '501', '(', 'c', ')'), 13),\n",
" (('new', 'york', ',', 'ny', '10007', 'at'), 13),\n",
" (('been', 'selected', 'by', 'means', 'of', 'the'), 13),\n",
" (('end', 'date', 'of', 'original', 'contract', ':'), 13),\n",
" (('proposed', 'contractor', 'has', 'been', 'selected', 'by'), 13),\n",
" (('at', 'the', 'administration', 'for', 'children', \"'s\"), 13),\n",
" (('.', 'for', 'current', 'meeting', 'dates', ','), 12),\n",
" (('and', 'december', '.', 'annual', 'meeting', 'held'), 12),\n",
" (('property', 'acquisition', 'and', 'disposition', 'meets', 'in'), 12),\n",
" (('york', ',', 'ny', '10007', ',', 'twice'), 12),\n",
" (('each', 'month', ',', 'at', 'the', 'call'), 12),\n",
" (('of', 'revision', 'of', 'awards', 'meets', 'in'), 12),\n",
" (('scheduled', 'for', 'the', 'last', 'wednesday', 'of'), 12),\n",
" (('between', 'the', 'hours', 'of', '10', 'am'), 12),\n",
" (('of', 'extension', 'the', 'agency', 'intends', 'to'), 12),\n",
" (('6th', 'floor', ',', 'hearing', 'room', '``'), 12),\n",
" (('once', 'a', 'month', 'at', 'the', 'call'), 12),\n",
" (('10004', '.', 'commission', 'on', 'human', 'rights'), 12),\n",
" (('513-4670', 'or', 'consult', 'the', 'bulletin', 'board'), 12),\n",
" (('website', 'at', 'www.nyc.gov/landmarks', '.', 'employees', \"'\"), 12),\n",
" ((',', 'september', ',', 'october', ',', 'november'), 12),\n",
" ((',', 'on', 'the', 'fourth', 'wednesday', 'of'), 12),\n",
" (('of', '10', 'am', 'and', '4', 'pm'), 12),\n",
" (('room', ',', 'municipal', 'building', ',', '9th'), 12),\n",
" (('street', ',', 'main', 'floor', ',', 'and'), 12),\n",
" (('twice', 'monthly', 'on', 'wednesday', ',', 'at'), 12),\n",
" (('wednesday', 'of', 'each', 'month', 'at', '40'), 12),\n",
" (('10013', ',', 'on', 'thursday', ',', 'at'), 12),\n",
" (('real', 'property', 'acquisition', 'and', 'disposition', 'meets'), 12),\n",
" (('concession', 'review', 'committee', 'meets', 'in', 'spector'), 12),\n",
" ((',', 'unless', 'otherwise', 'ordered', 'by', 'the'), 12),\n",
" ((',', 'unless', 'otherwise', 'noticed', 'by', 'the'), 12),\n",
" (('standards', 'and', 'appeals', 'meets', 'at', '40'), 12),\n",
" (('street', ',', 'in', 'the', 'borough', 'of'), 12),\n",
" (('10:00', 'a.m.', ',', 'unless', 'otherwise', 'ordered'), 12),\n",
" (('president', '.', 'manhattan', ',', 'monthly', 'on'), 12),\n",
" (('meeting', 'is', 'held', 'on', 'the', 'first'), 12),\n",
" (('third', 'wednesday', ',', 'of', 'each', 'month'), 12),\n",
" (('street', ',', '9th', 'floor', '.', 'tax'), 12),\n",
" (('month', ',', 'commencing', 'at', '9:30', 'a.m.'), 12),\n",
" ((',', 'at', '8:00', 'a.m', '.', 'in'), 12),\n",
" ((',', 'ny', '10006', '.', 'visit', 'http'), 12),\n",
" (('contractor', 'has', 'been', 'selected', 'by', 'means'), 12),\n",
" (('a.m.', 'review', 'sessions', 'begin', 'at', '9:30'), 12),\n",
" (('on', 'mondays', 'preceding', 'a', 'tuesday', 'public'), 12),\n",
" (('according', 'to', 'the', 'following', 'schedule', ':'), 12),\n",
" (('.', 'tax', 'commission', 'meets', 'in', 'room'), 12),\n",
" (('consent', 'is', 'for', 'a', 'term', 'of'), 12),\n",
" (('at', 'its', 'office', ',', '100', 'centre'), 12),\n",
" (('chairman', '.', 'board', 'of', 'higher', 'education'), 12),\n",
" (('tuesdays', 'at', '10:00', 'a.m.', 'review', 'sessions'), 12),\n",
" (('york', ',', 'ny', '10006', '.', 'visit'), 12),\n",
" (('.', 'the', 'annual', 'meeting', 'is', 'held'), 12),\n",
" (('at', '6:00', 'p.m', '.', 'the', 'annual'), 12),\n",
" (('thursday', ',', 'at', '10:30', 'a.m.', 'board'), 12),\n",
" (('york', ',', 'ny', '10006', ',', 'on'), 12),\n",
" ((',', 'on', 'thursday', ',', 'commencing', '10:00'), 12),\n",
" (('1:30', 'p.m.', 'contract', 'awards', 'public', 'hearing'), 12),\n",
" (('in', 'room', '603', ',', 'municipal', 'building'), 12),\n",
" (('and', 'at', 'the', 'call', 'of', 'the'), 12),\n",
" (('may', '.', 'citywide', 'administrative', 'services', 'division'), 12),\n",
" (('the', 'board', 'for', 'a', 'monthly', 'business'), 12),\n",
" (('changes', 'in', 'the', 'schedule', ',', 'or'), 12),\n",
" ((')', 'at', '10:00', 'a.m.', 'in', 'the'), 12),\n",
" (('.',\n",
" 'visit',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/ccrb/html/meeting.html',\n",
" 'for'),\n",
" 12),\n",
" (('on', 'fourth', 'monday', 'in', 'january', ','), 12),\n",
" (('first', 'tuesday', 'of', 'july', 'at', '10:00'), 12),\n",
" (('commission', 'meets', 'in', 'room', '936', ','), 12),\n",
" (('.', 'employees', \"'\", 'retirement', 'system', 'meets'), 12),\n",
" (('28th', 'street', ',', 'long', 'island', 'city'), 12),\n",
" (('rector', 'street', ',', '2nd', 'floor', ','), 12),\n",
" (('10th', 'floor', 'in', 'the', 'commission', \"'s\"), 12),\n",
" (('for', 'changes', 'in', 'the', 'schedule', ','), 12),\n",
" (('meets', 'on', '10th', 'floor', 'in', 'the'), 12),\n",
" (('of', 'each', 'month', ',', 'at', 'the'), 12),\n",
" (('city', 'housing', 'authority', 'are', 'scheduled', 'for'), 12),\n",
" ((',', 'ny', '10004', ',', 'on', 'tuesday'), 12),\n",
" ((',', 'bi-weekly', ',', 'on', 'wednesdays', ','), 12),\n",
" (('review', 'sessions', 'begin', 'at', '9:30', 'a.m.'), 12),\n",
" ((',', 'of', 'each', 'month', 'at', '6:00'), 12),\n",
" (('hall', 'of', 'the', 'board', 'for', 'a'), 12),\n",
" (('at', '(', '212', ')', '513-4670', 'or'), 12),\n",
" (('www.nyc.gov/landmarks', '.', 'employees', \"'\", 'retirement', 'system'),\n",
" 12),\n",
" (('at', '9:30', 'a.m.', ',', 'unless', 'otherwise'), 12),\n",
" (('the', 'application', 'desk', 'at', '(', '212'), 12),\n",
" (('6:00', 'p.m', '.', 'the', 'annual', 'meeting'), 12),\n",
" (('at', 'the', 'call', 'of', 'the', 'president'), 12),\n",
" (('at', '10:30', 'a.m.', 'board', 'of', 'revision'), 12),\n",
" (('in', 'the', 'hall', 'of', 'the', 'board'), 12),\n",
" (('revision', 'of', 'awards', 'meets', 'in', 'room'), 12),\n",
" (('at', '10:00', 'a.m.', ',', 'unless', 'otherwise'), 12),\n",
" (('.', 'board', 'of', 'standards', 'and', 'appeals'), 12),\n",
" (('meeting', 'schedule', ',', 'please', 'visit', 'nyc.gov/designcommission'),\n",
" 12),\n",
" (('in', 'january', ',', 'february', ',', 'march'), 12),\n",
" (('the', 'second', 'wednesday', 'of', 'each', 'month'), 12),\n",
" ((')', '513-4670', 'or', 'consult', 'the', 'bulletin'), 12),\n",
" (('before', 'the', 'meeting', '.', 'for', 'additional'), 12),\n",
" (('commission', 'meets', 'in', 'spector', 'hall', ','), 12),\n",
" (('of', 'elections', '32', 'broadway', ',', '7th'), 12),\n",
" (('and', '4', 'pm', '.', 'please', 'contact'), 12),\n",
" (('(', 'except', 'august', ')', 'at', '10:00'), 12),\n",
" (('a.m.', ',', 'on', 'the', 'third', 'thursday'), 12),\n",
" (('rector', 'street', '.', 'for', 'changes', 'in'), 12),\n",
" (('room', '2203', ',', '2', 'washington', 'street'), 12),\n",
" (('.', 'environmental', 'control', 'board', 'meets', 'at'), 12),\n",
" (('street', 'in', 'manhattan', 'on', 'approximately', 'three'), 12),\n",
" (('as', 'warranted', '.', 'real', 'property', 'acquisition'), 12),\n",
" (('rector', 'street', ',', '9th', 'floor', '.'), 12),\n",
" (('meeting', 'on', 'the', 'third', 'wednesday', ','), 12),\n",
" (('september', ',', 'october', ',', 'november', 'and'), 12),\n",
" ((',', 'march', ',', 'april', ',', 'june'), 12),\n",
" (('release', 'board', 'meets', 'in', 'spector', 'hall'), 12),\n",
" (('10007', '(', 'unless', 'otherwise', 'noted', ')'), 12),\n",
" (('york', ',', 'ny', '10007', '.', 'for'), 12),\n",
" (('education', 'meets', 'in', 'the', 'hall', 'of'), 12),\n",
" (('health', 'insurance', 'board', 'meets', 'in', 'room'), 12),\n",
" (('a.m.', 'board', 'of', 'elections', '32', 'broadway'), 12),\n",
" (('has', 'been', 'selected', 'by', 'means', 'of'), 12),\n",
" ((',', 'monthly', 'on', 'wednesdays', ',', 'commencing'), 12),\n",
" (('application', 'desk', 'at', '(', '212', ')'), 12),\n",
" (('bi-weekly', ',', 'on', 'wednesdays', ',', 'commencing'), 12),\n",
" (('tuesday', 'public', 'hearing', 'in', 'the', 'bsa'), 12),\n",
" (('manhattan', '(', 'to', 'continue', 'to', ','), 12),\n",
" (('p.m', '.', 'the', 'annual', 'meeting', 'is'), 12),\n",
" (('municipal', 'building', ',', '9th', 'floor', 'north'), 12),\n",
" ((',', 'monthly', 'on', 'tuesdays', ',', 'commencing'), 12),\n",
" (('11201', ',', 'at', '9:30', 'a.m.', ','), 12),\n",
" (('meets', 'in', 'the', 'hearing', 'room', ','), 12),\n",
" (('approval', 'by', 'the', 'mayor', 'to', 'june'), 12),\n",
" (('otherwise', 'noted', ')', '.', 'any', 'changes'), 12),\n",
" (('is', 'held', 'on', 'the', 'first', 'tuesday'), 12),\n",
" (('at', '10:00', 'a.m.', 'on', 'the', 'second'), 12),\n",
" ((',', 'on', 'wednesdays', ',', 'commencing', '10:00'), 12),\n",
" (('charter', 'twice', 'a', 'month', 'in', 'councilman'), 12),\n",
" (('sessions', 'begin', 'at', '9:30', 'a.m.', 'and'), 12),\n",
" (('the', 'matter', 'of', 'a', 'proposed', 'revocable'), 12),\n",
" (('1:30', 'p.m.', 'and', 'at', 'the', 'call'), 12),\n",
" (('the', 'bulletin', 'board', 'at', 'the', 'board'), 12),\n",
" (('at', '1:30', 'p.m.', 'and', 'at', 'the'), 12),\n",
" (('the', 'chairman', '.', 'health', 'insurance', 'board'), 12),\n",
" (('in', 'room', '936', ',', 'municipal', 'building'), 12),\n",
" (('n.y.', '11101', ',', 'at', '10:00', 'a.m.'), 12),\n",
" (('franchise', 'and', 'concession', 'review', 'committee', 'meets'), 12),\n",
" (('otherwise', 'ordered', 'by', 'the', 'commission', '.'), 12),\n",
" (('a.m.', 'once', 'a', 'month', 'at', 'the'), 12),\n",
" (('in', 'the', 'commission', \"'s\", 'central', 'office'), 12),\n",
" (('floor', ',', 'manhattan', ',', 'bi-weekly', ','), 12),\n",
" (('a', 'tuesday', 'public', 'hearing', 'in', 'the'), 12),\n",
" (('603', ',', 'municipal', 'building', ',', 'manhattan'), 12),\n",
" (('held', 'on', 'the', 'first', 'tuesday', 'of'), 12),\n",
" (('335', 'adams', 'street', ',', 'brooklyn', ','), 12),\n",
" (('month', 'at', '6:00', 'p.m', '.', 'the'), 12),\n",
" (('floor', '.', 'tax', 'commission', 'meets', 'in'), 12),\n",
" (('10021', ',', 'at', '5:30', 'p.m.', ','), 12),\n",
" (('housing', 'authority', 'board', 'meetings', 'of', 'the'), 12),\n",
" (('additional', 'information', 'and', 'scheduling', 'changes', '.'), 12),\n",
" (('meetings', 'of', 'the', 'new', 'york', 'city'), 12),\n",
" (('the', 'fourth', 'wednesday', 'of', 'each', 'month'), 12),\n",
" (('special', 'permit', '(', '73-36', ')', 'to'), 12),\n",
" (('administrative', 'code', 'of', 'the', 'city', 'of'), 12),\n",
" (('2014', 'special', 'permit', '(', '73-36', ')'), 12),\n",
" ((',', '22nd', 'floor', ',', '335', 'adams'), 12),\n",
" (('the', 'chairman', '.', 'housing', 'authority', 'board'), 12),\n",
" (('42-09', '28th', 'street', ',', 'long', 'island'), 12),\n",
" (('on', 'thursday', ',', 'at', '10:30', 'a.m.'), 12),\n",
" (('in', 'room', '2203', ',', '2', 'washington'), 12),\n",
" (('main', 'floor', ',', 'and', 'other', 'days'), 12),\n",
" (('approximately', 'three', 'tuesday', \"'s\", 'each', 'month'), 12),\n",
" (('a.m.', ',', 'unless', 'otherwise', 'ordered', 'by'), 12),\n",
" (('a.m.', 'and', 'are', 'customarily', 'held', 'on'), 12),\n",
" (('for', 'a', 'monthly', 'business', 'meeting', 'on'), 12),\n",
" (('warranted', '.', 'franchise', 'and', 'concession', 'review'), 12),\n",
" (('10006', ',', 'on', 'the', 'fourth', 'wednesday'), 12),\n",
" (('10006',\n",
" '.',\n",
" 'visit',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/ccrb/html/meeting.html'),\n",
" 12),\n",
" (('foreclosure', 'release', 'board', 'meets', 'in', 'spector'), 12),\n",
" (('212-788-3071', '.', 'department', 'of', 'education', 'meets'), 12),\n",
" (('city', 'hall', ',', 'third', 'floor', ','), 12),\n",
" (('on', 'the', 'second', 'wednesday', 'of', 'each'), 12),\n",
" (('city', 'planning', 'commission', 'meets', 'in', 'spector'), 12),\n",
" (('as', 'warranted', '.', 'franchise', 'and', 'concession'), 12),\n",
" ((',', 'long', 'island', 'city', ',', 'n.y.'), 12),\n",
" (('scheduling', 'changes', '.', 'design', 'commission', 'meets'), 12),\n",
" (('the', 'hearing', 'room', ',', 'municipal', 'building'), 12),\n",
" (('third', 'thursday', 'of', 'each', 'month', ','), 12),\n",
" (('at', '40', 'rector', 'street', ',', '2nd'), 12),\n",
" (('room', 'on', 'the', '9th', 'floor', 'of'), 12),\n",
" (('borough', 'of', 'manhattan', ',', 'in', 'the'), 12),\n",
" (('meets', 'at', 'city', 'hall', ',', 'third'), 12),\n",
" ((',', 'manhattan', ',', 'monthly', 'on', 'tuesdays'), 12),\n",
" (('in', 'room', '530', ',', 'municipal', 'building'), 12),\n",
" (('of', 'health', 'meets', 'at', 'gotham', 'center'), 12),\n",
" ((',', 'municipal', 'building', ',', '9th', 'floor'), 12),\n",
" (('.', 'design', 'commission', 'meets', 'at', 'city'), 12),\n",
" (('on', '10th', 'floor', 'in', 'the', 'commission'), 12),\n",
" (('dates', ',', 'times', 'and', 'agendas', ','), 12),\n",
" (('agendas', ',', 'please', 'visit', 'our', 'website'), 12),\n",
" (('island', 'city', ',', 'n.y.', '11101', ','), 12),\n",
" (('room', '603', ',', 'municipal', 'building', ','), 12),\n",
" (('.', 'civilian', 'complaint', 'review', 'board', 'generally'), 12),\n",
" (('meets', 'in', 'room', '936', ',', 'municipal'), 12),\n",
" (('annual', 'meeting', 'is', 'held', 'on', 'the'), 12),\n",
" (('10007', ',', 'at', 'the', 'call', 'of'), 12),\n",
" ((',', 'on', 'fourth', 'monday', 'in', 'january'), 12),\n",
" (('board', 'of', 'standards', 'and', 'appeals', 'meets'), 12),\n",
" (('at', 'call', 'of', 'the', 'chairman', '.'), 12),\n",
" (('floor', 'of', '40', 'rector', 'street', '.'), 12),\n",
" (('october', ',', 'november', 'and', 'december', '.'), 12),\n",
" (('housing', 'authority', 'are', 'scheduled', 'for', 'the'), 12),\n",
" (('and', 'location', 'as', 'warranted', '.', 'real'), 12),\n",
" (('monthly', 'on', 'tuesdays', ',', 'commencing', '10:00'), 12),\n",
" ((',', 'please', 'visit', 'nyc.gov/designcommission', 'or', 'call'), 12),\n",
" (('p.m.', 'and', 'at', 'the', 'call', 'of'), 12),\n",
" (('//www.nyc.gov/html/ccrb/html/meeting.html',\n",
" 'for',\n",
" 'additional',\n",
" 'information',\n",
" 'and',\n",
" 'scheduling'),\n",
" 12),\n",
" (('535', 'east', '80th', 'street', ',', 'manhattan'), 12),\n",
" (('9th', 'floor', 'of', '40', 'rector', 'street'), 12),\n",
" (('40', 'rector', 'street', ',', '9th', 'floor'), 12),\n",
" (('tuesday', ',', 'at', '1:30', 'p.m.', 'and'), 12),\n",
" (('commission', 'meets', 'in', 'the', 'hearing', 'room'), 12),\n",
" (('planning', 'commission', 'meets', 'in', 'spector', 'hall'), 12),\n",
" (('at', '535', 'east', '80th', 'street', ','), 12),\n",
" (('on', 'wednesday', ',', 'at', '10:00', 'a.m.'), 12),\n",
" (('month', ',', 'at', 'the', 'call', 'of'), 12),\n",
" (('code', 'of', 'the', 'city', 'of', 'new'), 12),\n",
" (('public', 'hearing', 'meets', 'in', 'spector', 'hall'), 12),\n",
" (('commission', \"'s\", 'central', 'office', ',', '40'), 12),\n",
" (('human', 'rights', 'meets', 'on', '10th', 'floor'), 12),\n",
" (('schedule', ',', 'please', 'visit', 'nyc.gov/designcommission', 'or'), 12),\n",
" (('the', 'hall', 'of', 'the', 'board', 'for'), 12),\n",
" (('``', 'e', \"''\", 'on', 'tuesdays', 'at'), 12),\n",
" (('meets', 'in', 'room', '603', ',', 'municipal'), 12),\n",
" (('as', 'warranted', '.', 'landmarks', 'preservation', 'commission'), 12),\n",
" (('the', 'commission', '.', 'city', 'council', 'meets'), 12),\n",
" ((',', 'june', ',', 'september', ',', 'october'), 12),\n",
" (('at', 'an', 'annual', 'rent', 'of', '$'), 12),\n",
" (('the', 'chairman', '.', 'board', 'of', 'higher'), 12),\n",
" (('of', 'each', 'month', '(', 'except', 'august'), 12),\n",
" (('of', 'the', 'chairman', '.', 'housing', 'authority'), 12),\n",
" (('are', 'customarily', 'held', 'on', 'mondays', 'preceding'), 12),\n",
" (('.', 'board', 'of', 'health', 'meets', 'at'), 12),\n",
" (('9:30', 'a.m.', ',', 'on', 'the', 'third'), 12),\n",
" (('our', 'website', 'at', 'www.nyc.gov/landmarks', '.', 'employees'), 12),\n",
" (('proposed', 'revocable', 'consent', 'is', 'for', 'a'), 12),\n",
" (('second', 'wednesday', 'of', 'each', 'month', 'at'), 12),\n",
" (('consult', 'the', 'bulletin', 'board', 'at', 'the'), 12),\n",
" ((',', '42-09', '28th', 'street', ',', 'long'), 12),\n",
" (('office', ',', '100', 'centre', 'street', ','), 12),\n",
" (('212', ')', '306-6088', '.', 'parole', 'commission'), 12),\n",
" ((',', '2014', 'at', '7:00', 'p.m.', ','), 12),\n",
" (('warranted', '.', 'civilian', 'complaint', 'review', 'board'), 12),\n",
" (('weekly', ',', 'on', 'thursday', ',', 'commencing'), 12),\n",
" (('at', '9:30', 'a.m.', 'and', 'are', 'customarily'), 12),\n",
" (('of', 'each', 'month', 'at', '40', 'rector'), 12),\n",
" (('department', 'of', 'citywide', 'administrative', 'services', 'may'), 12),\n",
" (('the', 'hours', 'of', '10', 'am', 'and'), 12),\n",
" (('.', 'real', 'property', 'acquisition', 'and', 'disposition'), 12),\n",
" (('40', 'rector', 'street', '.', 'for', 'changes'), 12),\n",
" (('street', '.', 'for', 'changes', 'in', 'the'), 12),\n",
" (('held', 'on', 'fourth', 'monday', 'in', 'may'), 12),\n",
" (('matter', 'of', 'a', 'proposed', 'revocable', 'consent'), 12),\n",
" ((\"'s\", 'each', 'month', ',', 'commencing', 'at'), 12),\n",
" (('10:00', 'a.m.', ',', '22', 'reade', 'street'), 12),\n",
" (('times', 'and', 'agendas', ',', 'please', 'visit'), 12),\n",
" (('the', 'city', 'according', 'to', 'the', 'following'), 12),\n",
" (('chamber', ',', 'city', 'hall', ',', 'manhattan'), 12),\n",
" (('1', 'centre', 'street', 'in', 'manhattan', 'on'), 12),\n",
" (('ny', '10004', ',', 'on', 'tuesday', ','), 12),\n",
" (('chairman', '.', 'health', 'insurance', 'board', 'meets'), 12),\n",
" ((',', 'november', 'and', 'december', '.', 'annual'), 12),\n",
" ((',', 'on', 'thursday', ',', 'at', '10:30'), 12),\n",
" (('conditions', 'for', 'compensation', 'payable', 'to', 'the'), 12),\n",
" (('meets', 'in', 'the', 'hall', 'of', 'the'), 12),\n",
" (('hold', 'hearings', 'as', 'needed', 'in', 'room'), 12),\n",
" (('40', 'rector', 'street', ',', '2nd', 'floor'), 12),\n",
" (('the', 'chairman', '.', 'board', 'of', 'health'), 12),\n",
" (('board', 'generally', 'meets', 'at', '10:00', 'a.m.'), 12),\n",
" (('at', '10:00', 'a.m.', 'review', 'sessions', 'begin'), 12),\n",
" (('on', 'tuesdays', ',', 'commencing', '10:00', 'a.m.'), 12),\n",
" (('visit', 'our', 'website', 'at', 'www.nyc.gov/landmarks', '.'), 12),\n",
" (('location', 'as', 'warranted', '.', 'landmarks', 'preservation'), 12),\n",
" (('third', 'floor', ',', 'new', 'york', ','), 12),\n",
" ((',', '2014', 'special', 'permit', '(', '73-36'), 12),\n",
" (('citywide', 'administrative', 'services', 'may', 'determine', '.'), 12),\n",
" (('authority', 'board', 'meetings', 'of', 'the', 'new'), 12),\n",
" (('preceding', 'a', 'tuesday', 'public', 'hearing', 'in'), 12),\n",
" (('board', 'for', 'a', 'monthly', 'business', 'meeting'), 12),\n",
" (('11101', ',', 'at', '10:00', 'a.m.', ','), 12),\n",
" (('a.m.', 'on', 'the', 'second', 'wednesday', 'of'), 12),\n",
" (('contract', 'awards', 'public', 'hearing', 'meets', 'in'), 12),\n",
" (('for', 'meeting', 'schedule', ',', 'please', 'visit'), 12),\n",
" (('floor', ',', 'and', 'other', 'days', ','), 12),\n",
" ...]"
]
}
],
"prompt_number": 30
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#We can keep going!\n",
"corpus7grams = list(ngrams(lowerTokens,7))\n",
"corpus7gramFreqs = nltk.FreqDist(corpus7grams)\n",
"corpus7gramFreqs.most_common()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 31,
"text": [
"[(('personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency'),\n",
" 264),\n",
" (('in', 'substantially', 'similar', 'titles', 'within', 'agency', ':'), 264),\n",
" (('--', '--', '--', '--', '--', '--', '--'), 180),\n",
" (('headcount', 'of', 'personnel', 'in', 'substantially', 'similar', 'titles'),\n",
" 136),\n",
" (('of', 'personnel', 'in', 'substantially', 'similar', 'titles', 'within'),\n",
" 133),\n",
" (('fy', '2015', 'annual', 'contracting', 'plan', 'and', 'schedule'), 124),\n",
" (('unenclosed', 'sidewalk', 'caf', 'for', 'a', 'term', 'of'), 120),\n",
" (('and', 'operate', 'an', 'unenclosed', 'sidewalk', 'caf', 'for'), 112),\n",
" (('an', 'unenclosed', 'sidewalk', 'caf', 'for', 'a', 'term'), 112),\n",
" (('operate', 'an', 'unenclosed', 'sidewalk', 'caf', 'for', 'a'), 112),\n",
" ((',', 'and', 'operate', 'an', 'unenclosed', 'sidewalk', 'caf'), 112),\n",
" (('maintain', ',', 'and', 'operate', 'an', 'unenclosed', 'sidewalk'), 112),\n",
" (('of', 'solicitation', 'the', 'agency', 'intends', 'to', 'utilize'), 103),\n",
" (('solicitation', 'the', 'agency', 'intends', 'to', 'utilize', ':'), 103),\n",
" (('method', 'of', 'solicitation', 'the', 'agency', 'intends', 'to'), 103),\n",
" (('sidewalk', 'caf', 'for', 'a', 'term', 'of', 'four'), 102),\n",
" (('caf', 'for', 'a', 'term', 'of', 'four', 'years'), 102),\n",
" (('a', 'term', 'of', 'four', 'years', '.', ')'), 101),\n",
" (('for', 'a', 'term', 'of', 'four', 'years', '.'), 101),\n",
" (('in', 'the', 'borough', 'of', 'manhattan', '(', 'to'), 99),\n",
" (('end', 'date', 'of', 'the', 'proposed', 'contract', ':'), 96),\n",
" (('solicitation', '(', 's', ')', 'not', 'included', 'in'), 94),\n",
" (('substantially', 'similar', 'titles', 'within', 'agency', ':', 'none'), 93),\n",
" (('none', 'headcount', 'of', 'personnel', 'in', 'substantially', 'similar'),\n",
" 92),\n",
" (('agency', ':', 'none', 'headcount', 'of', 'personnel', 'in'), 92),\n",
" ((':', 'none', 'headcount', 'of', 'personnel', 'in', 'substantially'), 92),\n",
" (('to', 'maintain', ',', 'and', 'operate', 'an', 'unenclosed'), 91),\n",
" (('titles', 'within', 'agency', ':', 'none', 'headcount', 'of'), 91),\n",
" (('similar', 'titles', 'within', 'agency', ':', 'none', 'headcount'), 91),\n",
" (('within', 'agency', ':', 'none', 'headcount', 'of', 'personnel'), 91),\n",
" (('start', 'date', 'of', 'the', 'proposed', 'contract', ':'), 90),\n",
" (('continue', 'to', 'maintain', ',', 'and', 'operate', 'an'), 89),\n",
" (('the', 'borough', 'of', 'manhattan', '(', 'to', 'continue'), 87),\n",
" (('to', 'continue', 'to', 'maintain', ',', 'and', 'operate'), 86),\n",
" (('(', 'to', 'continue', 'to', 'maintain', ',', 'and'), 86),\n",
" (('borough', 'of', 'manhattan', '(', 'to', 'continue', 'to'), 86),\n",
" (('substantially', 'similar', 'titles', 'within', 'agency', ':', '0'), 83),\n",
" (('spector', 'hall', ',', '22', 'reade', 'street', ','), 82),\n",
" (('in', 'spector', 'hall', ',', '22', 'reade', 'street'), 81),\n",
" (('manhattan', '(', 'to', 'continue', 'to', 'maintain', ','), 74),\n",
" (('of', 'manhattan', '(', 'to', 'continue', 'to', 'maintain'), 74),\n",
" (('notice', 'is', 'hereby', 'given', 'that', 'the', 'mayor'), 65),\n",
" (('s', ')', 'not', 'included', 'in', 'the', 'fy'), 63),\n",
" (('hereby', 'given', 'that', 'the', 'mayor', 'will', 'be'), 63),\n",
" (('schedule', 'that', 'is', 'published', 'pursuant', 'to', 'new'), 63),\n",
" (('contracting', 'plan', 'and', 'schedule', 'notice', 'is', 'hereby'), 63),\n",
" (('plan', 'and', 'schedule', 'notice', 'is', 'hereby', 'given'), 63),\n",
" (('annual', 'contracting', 'plan', 'and', 'schedule', 'notice', 'is'), 63),\n",
" (('to', 'new', 'york', 'city', 'charter', '312', '('), 63),\n",
" (('annual', 'contracting', 'plan', 'and', 'schedule', 'that', 'is'), 63),\n",
" (('plan', 'and', 'schedule', 'that', 'is', 'published', 'pursuant'), 63),\n",
" (('pursuant', 'to', 'new', 'york', 'city', 'charter', '312'), 63),\n",
" (('york', 'city', 'charter', '312', '(', 'a', ')'), 63),\n",
" (('and', 'schedule', 'notice', 'is', 'hereby', 'given', 'that'), 63),\n",
" (('and', 'schedule', 'that', 'is', 'published', 'pursuant', 'to'), 63),\n",
" (('(', 's', ')', 'not', 'included', 'in', 'the'), 63),\n",
" (('312', '(', 'a', ')', ':', 'agency', ':'), 63),\n",
" (('that', 'is', 'published', 'pursuant', 'to', 'new', 'york'), 63),\n",
" (('charter', '312', '(', 'a', ')', ':', 'agency'), 63),\n",
" (('is', 'published', 'pursuant', 'to', 'new', 'york', 'city'), 63),\n",
" (('city', 'charter', '312', '(', 'a', ')', ':'), 63),\n",
" (('contracting', 'plan', 'and', 'schedule', 'that', 'is', 'published'), 63),\n",
" (('(', 's', ')', 'not', 'included', 'in', 'fy'), 63),\n",
" (('published', 'pursuant', 'to', 'new', 'york', 'city', 'charter'), 63),\n",
" (('new', 'york', 'city', 'charter', '312', '(', 'a'), 63),\n",
" (('schedule', 'notice', 'is', 'hereby', 'given', 'that', 'the'), 63),\n",
" (('is', 'hereby', 'given', 'that', 'the', 'mayor', 'will'), 63),\n",
" (('the', 'fy', '2015', 'annual', 'contracting', 'plan', 'and'), 62),\n",
" (('2015', 'annual', 'contracting', 'plan', 'and', 'schedule', 'that'), 62),\n",
" (('not', 'included', 'in', 'fy', '2015', 'annual', 'contracting'), 62),\n",
" (('in', 'the', 'fy', '2015', 'annual', 'contracting', 'plan'), 62),\n",
" (('s', ')', 'not', 'included', 'in', 'fy', '2015'), 62),\n",
" (('included', 'in', 'the', 'fy', '2015', 'annual', 'contracting'), 62),\n",
" ((')', 'not', 'included', 'in', 'fy', '2015', 'annual'), 62),\n",
" (('in', 'fy', '2015', 'annual', 'contracting', 'plan', 'and'), 62),\n",
" (('not', 'included', 'in', 'the', 'fy', '2015', 'annual'), 62),\n",
" (('included', 'in', 'fy', '2015', 'annual', 'contracting', 'plan'), 62),\n",
" (('2015', 'annual', 'contracting', 'plan', 'and', 'schedule', 'notice'), 62),\n",
" ((')', 'not', 'included', 'in', 'the', 'fy', '2015'), 62),\n",
" (('meets', 'in', 'spector', 'hall', ',', '22', 'reade'), 60),\n",
" (('at', 'the', 'call', 'of', 'the', 'chairman', '.'), 50),\n",
" ((',', '22', 'reade', 'street', ',', 'main', 'floor'), 50),\n",
" (('hall', ',', '22', 'reade', 'street', ',', 'main'), 50),\n",
" (('office', 'of', 'environmental', 'remediation', '(', 'oer', ')'), 50),\n",
" (('22', 'reade', 'street', ',', 'main', 'floor', ','), 50),\n",
" (('voluntary', 'cleanup', 'program', '(', 'vcp', ')', 'application'), 49),\n",
" (('utilize', ':', 'task', 'order', 'personnel', 'in', 'substantially'), 49),\n",
" (('nyc', 'voluntary', 'cleanup', 'program', '(', 'vcp', ')'), 49),\n",
" (('city', 'office', 'of', 'environmental', 'remediation', '(', 'oer'), 49),\n",
" (('task', 'order', 'personnel', 'in', 'substantially', 'similar', 'titles'),\n",
" 49),\n",
" (('york', 'city', 'office', 'of', 'environmental', 'remediation', '('), 49),\n",
" (('the', 'agency', 'intends', 'to', 'utilize', ':', 'task'), 49),\n",
" (('intends', 'to', 'utilize', ':', 'task', 'order', 'personnel'), 49),\n",
" ((':', 'task', 'order', 'personnel', 'in', 'substantially', 'similar'), 49),\n",
" (('oer', ')', 'has', 'received', 'an', 'nyc', 'voluntary'), 49),\n",
" (('has', 'received', 'an', 'nyc', 'voluntary', 'cleanup', 'program'), 49),\n",
" (('of', 'environmental', 'remediation', '(', 'oer', ')', 'has'), 49),\n",
" (('to', 'utilize', ':', 'task', 'order', 'personnel', 'in'), 49),\n",
" (('new', 'york', 'city', 'office', 'of', 'environmental', 'remediation'), 49),\n",
" (('environmental', 'remediation', '(', 'oer', ')', 'has', 'received'), 49),\n",
" (('agency', 'intends', 'to', 'utilize', ':', 'task', 'order'), 49),\n",
" (('order', 'personnel', 'in', 'substantially', 'similar', 'titles', 'within'),\n",
" 49),\n",
" (('(', 'oer', ')', 'has', 'received', 'an', 'nyc'), 49),\n",
" (('received', 'an', 'nyc', 'voluntary', 'cleanup', 'program', '('), 49),\n",
" (('remediation', '(', 'oer', ')', 'has', 'received', 'an'), 49),\n",
" ((')', 'has', 'received', 'an', 'nyc', 'voluntary', 'cleanup'), 49),\n",
" (('the', 'new', 'york', 'city', 'office', 'of', 'environmental'), 49),\n",
" (('an', 'nyc', 'voluntary', 'cleanup', 'program', '(', 'vcp'), 49),\n",
" (('and', 'other', 'days', ',', 'times', 'and', 'location'), 48),\n",
" ((',', 'and', 'other', 'days', ',', 'times', 'and'), 48),\n",
" (('days', ',', 'times', 'and', 'location', 'as', 'warranted'), 48),\n",
" ((',', 'times', 'and', 'location', 'as', 'warranted', '.'), 48),\n",
" (('other', 'days', ',', 'times', 'and', 'location', 'as'), 48),\n",
" (('cleanup', 'program', '(', 'vcp', ')', 'application', 'from'), 48),\n",
" (('intent', 'to', 'issue', 'new', 'solicitation', '(', 's'), 47),\n",
" (('the', 'following', 'solicitation', '(', 's', ')', 'not'), 47),\n",
" (('mayor', 'will', 'be', 'issuing', 'the', 'following', 'solicitation'), 47),\n",
" (('following', 'solicitation', '(', 's', ')', 'not', 'included'), 47),\n",
" (('will', 'be', 'issuing', 'the', 'following', 'solicitation', '('), 47),\n",
" (('notice', 'of', 'intent', 'to', 'issue', 'new', 'solicitation'), 47),\n",
" (('new', 'solicitation', '(', 's', ')', 'not', 'included'), 47),\n",
" (('to', 'issue', 'new', 'solicitation', '(', 's', ')'), 47),\n",
" (('that', 'the', 'mayor', 'will', 'be', 'issuing', 'the'), 47),\n",
" (('of', 'intent', 'to', 'issue', 'new', 'solicitation', '('), 47),\n",
" (('issue', 'new', 'solicitation', '(', 's', ')', 'not'), 47),\n",
" (('given', 'that', 'the', 'mayor', 'will', 'be', 'issuing'), 47),\n",
" (('issuing', 'the', 'following', 'solicitation', '(', 's', ')'), 47),\n",
" (('the', 'mayor', 'will', 'be', 'issuing', 'the', 'following'), 47),\n",
" (('be', 'issuing', 'the', 'following', 'solicitation', '(', 's'), 47),\n",
" (('to', 'this', 'project', '.', 'the', 'new', 'york'), 45),\n",
" (('is', 'assigned', 'to', 'this', 'project', '.', 'the'), 45),\n",
" (('this', 'project', '.', 'the', 'new', 'york', 'city'), 45),\n",
" (('assigned', 'to', 'this', 'project', '.', 'the', 'new'), 45),\n",
" (('similar', 'titles', 'within', 'agency', ':', '0', 'agency'), 45),\n",
" (('titles', 'within', 'agency', ':', '0', 'agency', ':'), 45),\n",
" (('.', 'the', 'new', 'york', 'city', 'office', 'of'), 45),\n",
" (('project', '.', 'the', 'new', 'york', 'city', 'office'), 45),\n",
" (('a', ')', ':', 'agency', ':', 'department', 'of'), 44),\n",
" (('(', 'a', ')', ':', 'agency', ':', 'department'), 44),\n",
" (('ave', 'in', 'the', 'borough', 'of', 'manhattan', '('), 42),\n",
" (('date', 'of', 'the', 'proposed', 'renewed/extended', 'contract', ':'), 40),\n",
" (('public', 'notice', 'is', 'hereby', 'given', 'that', 'the'), 39),\n",
" (('been', 'scheduled', 'for', 'public', 'hearing', 'by', 'community'), 36),\n",
" (('given', 'that', 'the', 'following', 'matters', 'have', 'been'), 36),\n",
" (('notice', 'is', 'hereby', 'given', 'that', 'the', 'following'), 36),\n",
" (('reade', 'street', ',', 'main', 'floor', ',', 'manhattan'), 36),\n",
" (('is', 'hereby', 'given', 'that', 'the', 'following', 'matters'), 36),\n",
" (('the', 'following', 'matters', 'have', 'been', 'scheduled', 'for'), 36),\n",
" (('following', 'matters', 'have', 'been', 'scheduled', 'for', 'public'), 36),\n",
" (('matters', 'have', 'been', 'scheduled', 'for', 'public', 'hearing'), 36),\n",
" (('commencing', '10:00', 'a.m.', ',', 'and', 'other', 'days'), 36),\n",
" (('that', 'the', 'following', 'matters', 'have', 'been', 'scheduled'), 36),\n",
" (('10:00', 'a.m.', ',', 'and', 'other', 'days', ','), 36),\n",
" (('a.m.', ',', 'and', 'other', 'days', ',', 'times'), 36),\n",
" (('street', ',', 'main', 'floor', ',', 'manhattan', ','), 36),\n",
" (('hereby', 'given', 'that', 'the', 'following', 'matters', 'have'), 36),\n",
" (('have', 'been', 'scheduled', 'for', 'public', 'hearing', 'by'), 36),\n",
" (('call', 'of', 'the', 'chairman', '.', 'board', 'of'), 36),\n",
" ((',', 'commencing', '10:00', 'a.m.', ',', 'and', 'other'), 36),\n",
" (('scheduled', 'for', 'public', 'hearing', 'by', 'community', 'board'), 35),\n",
" (('hearing', 'by', 'community', 'board', ':', 'borough', 'of'), 35),\n",
" (('public', 'hearing', 'by', 'community', 'board', ':', 'borough'), 35),\n",
" (('for', 'public', 'hearing', 'by', 'community', 'board', ':'), 35),\n",
" ((',', '22', 'reade', 'street', ',', 'new', 'york'), 34),\n",
" (('22', 'reade', 'street', ',', 'new', 'york', ','), 34),\n",
" (('the', 'matter', 'of', 'an', 'application', 'submitted', 'by'), 32),\n",
" (('of', 'services', 'performed', 'under', 'the', 'contract', ':'), 32),\n",
" (('nature', 'of', 'services', 'performed', 'under', 'the', 'contract'), 32),\n",
" (('contract', '(', 's', ')', 'not', 'included', 'in'), 32),\n",
" (('(', 's', ')', 'the', 'agency', 'intends', 'to'), 32),\n",
" (('reason', '(', 's', ')', 'the', 'agency', 'intends'), 32),\n",
" (('hall', ',', '22', 'reade', 'street', ',', 'new'), 32),\n",
" (('days', 'prior', 'to', 'the', 'public', 'hearing', '.'), 32),\n",
" (('the', 'nature', 'of', 'services', 'performed', 'under', 'the'), 31),\n",
" (('modifications', 'sought', 'to', 'the', 'nature', 'of', 'services'), 31),\n",
" (('agency', ':', '0', 'agency', ':', 'department', 'of'), 31),\n",
" (('to', 'the', 'nature', 'of', 'services', 'performed', 'under'), 31),\n",
" (('individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact'),\n",
" 31),\n",
" (('sought', 'to', 'the', 'nature', 'of', 'services', 'performed'), 31),\n",
" (('in', 'the', 'matter', 'of', 'an', 'application', 'submitted'), 30),\n",
" (('a', 'public', 'hearing', 'will', 'be', 'held', 'at'), 30),\n",
" ((',', 'new', 'york', '.', 'site', 'no', '.'), 30),\n",
" (('requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the'),\n",
" 30),\n",
" (('within', 'agency', ':', '0', 'agency', ':', 'department'), 30),\n",
" ((',', 'manhattan', ',', 'new', 'york', '10007', ','), 29),\n",
" (('agency', ':', 'department', 'of', 'information', 'technology', '&'), 29),\n",
" ((':',\n",
" 'department',\n",
" 'of',\n",
" 'information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications'),\n",
" 28),\n",
" (('that', 'a', 'public', 'hearing', 'will', 'be', 'held'), 28),\n",
" ((',', 'new', 'york', ',', 'n.y.', '10007', ','), 28),\n",
" ((',', '2nd', 'floor', ',', 'new', 'york', ','), 28),\n",
" (('should', 'contact', 'the', 'mayor', \"'s\", 'office', 'of'), 27),\n",
" (('sign', 'language', 'interpreters', 'should', 'contact', 'the', 'mayor'),\n",
" 27),\n",
" (('interpreters', 'should', 'contact', 'the', 'mayor', \"'s\", 'office'), 27),\n",
" (('language', 'interpreters', 'should', 'contact', 'the', 'mayor', \"'s\"), 27),\n",
" (('st', 'in', 'the', 'borough', 'of', 'manhattan', '('), 26),\n",
" ((',', 'at', 'the', 'call', 'of', 'the', 'chairman'), 26),\n",
" (('given', 'that', 'a', 'public', 'hearing', 'will', 'be'), 26),\n",
" (('business', 'days', 'prior', 'to', 'the', 'public', 'hearing'), 26),\n",
" (('extension', 'new', 'start', 'date', 'of', 'the', 'proposed'), 26),\n",
" ((')', 'business', 'days', 'prior', 'to', 'the', 'public'), 26),\n",
" (('notice', 'is', 'hereby', 'given', 'that', 'a', 'public'), 25),\n",
" (('hereby', 'given', 'that', 'a', 'public', 'hearing', 'will'), 25),\n",
" (('floor', ',', 'new', 'york', ',', 'ny', '10007'), 25),\n",
" (('is', 'hereby', 'given', 'that', 'a', 'public', 'hearing'), 25),\n",
" (('the', 'call', 'of', 'the', 'chairman', '.', 'board'), 24),\n",
" (('of', 'the', 'city', 'of', 'new', 'york', ','), 24),\n",
" (('on', 'the', 'following', ':', 'in', 'the', 'matter'), 24),\n",
" (('technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description',\n",
" 'of',\n",
" 'services',\n",
" 'sought'),\n",
" 23),\n",
" (('information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description',\n",
" 'of',\n",
" 'services'),\n",
" 23),\n",
" (('the', 'following', ':', 'in', 'the', 'matter', 'of'), 23),\n",
" (('.', 'start', 'date', 'of', 'the', 'proposed', 'contract'), 23),\n",
" (('of', 'the', 'procurement', 'policy', 'board', 'rules', '.'), 23),\n",
" (('department',\n",
" 'of',\n",
" 'information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description'),\n",
" 23),\n",
" (('.', '(', 'preliminary', 'and', 'final', ')', '('), 23),\n",
" (('&', 'telecommunications', 'description', 'of', 'services', 'sought', ':'),\n",
" 23),\n",
" (('of', 'the', 'new', 'york', 'city', 'charter', 'for'), 23),\n",
" (('(', 'preliminary', 'and', 'final', ')', '(', 'cc'), 23),\n",
" (('of',\n",
" 'information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description',\n",
" 'of'),\n",
" 23),\n",
" (('caf', 'for', 'a', 'term', 'of', 'two', 'years'), 22),\n",
" (('building', ',', 'manhattan', ',', 'new', 'york', '10007'), 22),\n",
" (('none', 'reason', '(', 's', ')', 'the', 'agency'), 22),\n",
" (('public', 'hearing', 'will', 'be', 'held', 'at', 'the'), 22),\n",
" (('the', 'contract', ':', 'none', 'reason', '(', 's'), 22),\n",
" (('manhattan', ',', 'new', 'york', '10007', ',', 'at'), 22),\n",
" ((',', 'municipal', 'building', ',', 'manhattan', ',', 'new'), 22),\n",
" (('municipal', 'building', ',', 'manhattan', ',', 'new', 'york'), 22),\n",
" ((',', 'new', 'york', ',', 'ny', '10004', ','), 22),\n",
" (('services', 'performed', 'under', 'the', 'contract', ':', 'none'), 22),\n",
" (('of', 'the', 'new', 'york', 'city', 'charter', ','), 22),\n",
" (('contract', ':', 'none', 'reason', '(', 's', ')'), 22),\n",
" (('performed', 'under', 'the', 'contract', ':', 'none', 'reason'), 22),\n",
" (('a', 'term', 'of', 'two', 'years', '.', ')'), 22),\n",
" (('sidewalk', 'caf', 'for', 'a', 'term', 'of', 'two'), 22),\n",
" (('the', 'agency', 'intends', 'to', 'utilize', ':', 'amendment'), 22),\n",
" (('floor', ',', 'new', 'york', ',', 'ny', '10004'), 22),\n",
" (('under', 'the', 'contract', ':', 'none', 'reason', '('), 22),\n",
" (('for', 'a', 'term', 'of', 'two', 'years', '.'), 22),\n",
" ((':', 'none', 'reason', '(', 's', ')', 'the'), 22),\n",
" (('date', 'of', 'the', 'proposed', 'extended', 'contract', ':'), 22),\n",
" ((',', 'public', 'hearings', 'unit', ',', '253', 'broadway'), 21),\n",
" (('street', ',', '9th', 'floor', ',', 'borough', 'of'), 21),\n",
" (('a.m.', 'on', 'the', 'following', ':', 'in', 'the'), 21),\n",
" (('212', ')', '788-7490', ',', 'no', 'later', 'than'), 21),\n",
" (('(', '212', ')', '788-7490', ',', 'no', 'later'), 21),\n",
" (('square', 'foot', 'parcel', 'of', 'land', 'located', 'at'), 21),\n",
" (('services', ',', 'public', 'hearings', 'unit', ',', '253'), 21),\n",
" (('agency', 'intends', 'to', 'utilize', ':', 'amendment', 'extension'), 21),\n",
" (('services',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within'),\n",
" 21),\n",
" ((',', '9th', 'floor', ',', 'borough', 'of', 'manhattan'), 21),\n",
" (('public', 'hearings', 'unit', ',', '253', 'broadway', ','), 21),\n",
" (('agency', 'intends', 'to', 'renew/extend', 'the', 'contract', ':'), 20),\n",
" (('start', 'date', 'of', 'the', 'proposed', 'renewed/extended', 'contract'),\n",
" 20),\n",
" (('new', 'start', 'date', 'of', 'the', 'proposed', 'renewed/extended'), 20),\n",
" (('s', ')', 'the', 'agency', 'intends', 'to', 'renew/extend'), 20),\n",
" (('the', 'agency', 'intends', 'to', 'renew/extend', 'the', 'contract'), 20),\n",
" ((',', '150', 'william', 'street', ',', '9th', 'floor'), 20),\n",
" ((':', 'amendment', 'extension', 'new', 'start', 'date', 'of'), 20),\n",
" (('amendment', 'extension', 'new', 'start', 'date', 'of', 'the'), 20),\n",
" (('new', 'end', 'date', 'of', 'the', 'proposed', 'renewed/extended'), 20),\n",
" ((')', 'the', 'agency', 'intends', 'to', 'renew/extend', 'the'), 20),\n",
" (('in', 'the', 'matter', 'of', 'a', 'proposed', 'contract'), 20),\n",
" (('matter', 'of', 'a', 'proposed', 'contract', 'between', 'the'), 20),\n",
" (('the', 'matter', 'of', 'a', 'proposed', 'contract', 'between'), 20),\n",
" (('intends', 'to', 'utilize', ':', 'amendment', 'extension', 'new'), 20),\n",
" (('utilize', ':', 'amendment', 'extension', 'new', 'start', 'date'), 20),\n",
" (('end', 'date', 'of', 'the', 'proposed', 'renewed/extended', 'contract'),\n",
" 20),\n",
" (('to', 'utilize', ':', 'amendment', 'extension', 'new', 'start'), 20),\n",
" ((',', 'new', 'york', ',', 'ny', '10007', ','), 20),\n",
" ((')', '788-7490', ',', 'no', 'later', 'than', 'seven'), 19),\n",
" ((')', 'of', 'the', 'procurement', 'policy', 'board', 'rules'), 19),\n",
" ((',', 'no', 'later', 'than', 'seven', '(', '7'), 19),\n",
" (('(', '7', ')', 'business', 'days', 'prior', 'to'), 19),\n",
" (('201', 'of', 'the', 'new', 'york', 'city', 'charter'), 19),\n",
" (('administration', 'for', 'children', \"'s\", 'services', ',', 'office'), 19),\n",
" (('7', ')', 'business', 'days', 'prior', 'to', 'the'), 19),\n",
" (('for', 'children', \"'s\", 'services', ',', 'office', 'of'), 19),\n",
" (('no', 'later', 'than', 'seven', '(', '7', ')'), 19),\n",
" (('later', 'than', 'seven', '(', '7', ')', 'business'), 19),\n",
" (('than', 'seven', '(', '7', ')', 'business', 'days'), 19),\n",
" (('the', 'new', 'york', 'city', 'charter', 'for', 'the'), 19),\n",
" (('seven', '(', '7', ')', 'business', 'days', 'prior'), 19),\n",
" (('of', 'renewal/extension', 'the', 'agency', 'intends', 'to', 'utilize'),\n",
" 19),\n",
" (('.', 'tdd', 'users', 'should', 'call', 'verizon', 'relay'), 19),\n",
" (('788-7490', ',', 'no', 'later', 'than', 'seven', '('), 19),\n",
" (('renewal/extension', 'the', 'agency', 'intends', 'to', 'utilize', ':'), 19),\n",
" ((',', 'maintain', ',', 'and', 'operate', 'an', 'unenclosed'), 19),\n",
" (('of', 'services', 'personnel', 'in', 'substantially', 'similar', 'titles'),\n",
" 19),\n",
" (('method', 'of', 'renewal/extension', 'the', 'agency', 'intends', 'to'), 19),\n",
" ((':', 'department', 'of', 'parks', 'and', 'recreation', 'nature'), 18),\n",
" (('of', 'contract', 'services', ',', 'public', 'hearings', 'unit'), 18),\n",
" (('sections', '197-c', 'and', '201', 'of', 'the', 'new'), 18),\n",
" (('agency', ':', 'department', 'of', 'parks', 'and', 'recreation'), 18),\n",
" (('the', 'city', 'of', 'new', 'york', ',', 'as'), 18),\n",
" (('and', '201', 'of', 'the', 'new', 'york', 'city'), 18),\n",
" (('.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should'),\n",
" 18),\n",
" (('department', 'of', 'parks', 'and', 'recreation', 'nature', 'of'), 18),\n",
" (('two', 'million', 'dollars', '(', '$', '2,000,000', ')'), 18),\n",
" (('contact', 'the', 'mayor', \"'s\", 'office', 'of', 'contract'), 18),\n",
" (('10007', ',', '(', '212', ')', '788-7490', ','), 18),\n",
" (('to', 'sections', '197-c', 'and', '201', 'of', 'the'), 18),\n",
" (('similar', 'titles', 'within', 'agency', ':', '0', 'notice'), 18),\n",
" ((',', '(', '212', ')', '788-7490', ',', 'no'), 18),\n",
" (('mayor', \"'s\", 'office', 'of', 'contract', 'services', ','), 18),\n",
" (('contract', 'services', ',', 'public', 'hearings', 'unit', ','), 18),\n",
" ((\"'s\", 'office', 'of', 'contract', 'services', ',', 'public'), 18),\n",
" (('pursuant', 'to', 'sections', '197-c', 'and', '201', 'of'), 18),\n",
" (('the', 'mayor', \"'s\", 'office', 'of', 'contract', 'services'), 18),\n",
" (('197-c', 'and', '201', 'of', 'the', 'new', 'york'), 18),\n",
" (('office', 'of', 'contract', 'services', ',', 'public', 'hearings'), 18),\n",
" (('borough', 'of', 'brooklyn', '.', 'community', 'board', '#'), 17),\n",
" ((':',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should'),\n",
" 17),\n",
" ((',', 'borough', 'of', 'brooklyn', '.', 'community', 'board'), 17),\n",
" (('note',\n",
" ':',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters'),\n",
" 17),\n",
" (('district', '2', ',', 'manhattan', 'certificate', 'of', 'appropriateness'),\n",
" 17),\n",
" (('of', 'the', 'city', 'of', 'new', 'york', 'and'), 17),\n",
" (('reade', 'street', ',', 'new', 'york', ',', 'ny'), 17),\n",
" (('community', 'district', '2', ',', 'manhattan', 'certificate', 'of'), 17),\n",
" (('the', 'mayor', 'will', 'be', 'entering', 'into', 'the'), 16),\n",
" (('that', 'the', 'mayor', 'will', 'be', 'entering', 'into'), 16),\n",
" (('at', 'the', 'end', 'of', 'each', 'month', '.'), 16),\n",
" (('mayor', 'will', 'be', 'entering', 'into', 'the', 'following'), 16),\n",
" (('public', 'hearing', '.', 'tdd', 'users', 'should', 'call'), 16),\n",
" (('following', 'extension', '(', 's', ')', 'of', '('), 16),\n",
" (('to', 'extend', 'contract', '(', 's', ')', 'not'), 16),\n",
" (('continue', 'to', ',', 'maintain', ',', 'and', 'operate'), 16),\n",
" (('given', 'that', 'the', 'mayor', 'will', 'be', 'entering'), 16),\n",
" ((')', 'of', '(', 'a', ')', 'contract', '('), 16),\n",
" (('into', 'the', 'following', 'extension', '(', 's', ')'), 16),\n",
" (('for', 'the', 'city', 'of', 'new', 'york', ','), 16),\n",
" (('the', 'public', 'hearing', '.', 'tdd', 'users', 'should'), 16),\n",
" (('parks', 'and', 'recreation', 'nature', 'of', 'services', 'sought'), 16),\n",
" (('than', 'five', '(', '5', ')', 'business', 'days'), 16),\n",
" (('monthly', 'installments', 'at', 'the', 'end', 'of', 'each'), 16),\n",
" (('will', 'be', 'entering', 'into', 'the', 'following', 'extension'), 16),\n",
" (('of', 'intent', 'to', 'extend', 'contract', '(', 's'), 16),\n",
" (('extend', 'contract', '(', 's', ')', 'not', 'included'), 16),\n",
" (('agency', 'intends', 'to', 'utilize', ':', 'competitive', 'sealed'), 16),\n",
" (('(', 'c', ')', '(', '3', ')', 'of'), 16),\n",
" (('to', 'continue', 'to', ',', 'maintain', ',', 'and'), 16),\n",
" (('of', 'parks', 'and', 'recreation', 'nature', 'of', 'services'), 16),\n",
" (('(', 's', ')', 'of', '(', 'a', ')'), 16),\n",
" (('to', ',', 'maintain', ',', 'and', 'operate', 'an'), 16),\n",
" (('at', '100', 'church', 'street', ',', '12th', 'floor'), 16),\n",
" (('reade', 'street', ',', 'new', 'york', ',', 'n.y.'), 16),\n",
" (('notice', 'of', 'intent', 'to', 'extend', 'contract', '('), 16),\n",
" (('to', 'the', 'public', 'hearing', '.', 'tdd', 'users'), 16),\n",
" (('and', 'recreation', 'nature', 'of', 'services', 'sought', ':'), 16),\n",
" (('equal', 'monthly', 'installments', 'at', 'the', 'end', 'of'), 16),\n",
" (('(', 'a', ')', 'contract', '(', 's', ')'), 16),\n",
" (('the', 'following', 'extension', '(', 's', ')', 'of'), 16),\n",
" (('(', 'to', 'continue', 'to', ',', 'maintain', ','), 16),\n",
" (('city', 'of', 'new', 'york', ',', 'as', 'tenant'), 16),\n",
" (('in', 'equal', 'monthly', 'installments', 'at', 'the', 'end'), 16),\n",
" (('no', 'later', 'than', 'five', '(', '5', ')'), 16),\n",
" (('.', 'notice', 'of', 'intent', 'to', 'issue', 'new'), 16),\n",
" (('a', ')', 'contract', '(', 's', ')', 'not'), 16),\n",
" (('intent', 'to', 'extend', 'contract', '(', 's', ')'), 16),\n",
" (('payable', 'in', 'equal', 'monthly', 'installments', 'at', 'the'), 16),\n",
" (('installments', 'at', 'the', 'end', 'of', 'each', 'month'), 16),\n",
" ((',', 'new', 'york', ',', 'n.y.', '10007', '.'), 16),\n",
" (('later', 'than', 'five', '(', '5', ')', 'business'), 16),\n",
" (('borough', 'of', 'manhattan', '.', 'community', 'board', '#'), 16),\n",
" (('entering', 'into', 'the', 'following', 'extension', '(', 's'), 16),\n",
" ((',', 'in', 'spector', 'hall', ',', '22', 'reade'), 16),\n",
" (('extension', '(', 's', ')', 'of', '(', 'a'), 16),\n",
" (('hearing', '.', 'tdd', 'users', 'should', 'call', 'verizon'), 16),\n",
" ((',', 'new', 'york', ',', 'ny', '10007', '('), 16),\n",
" (('commencing', 'at', '10:00', 'a.m.', 'on', 'the', 'following'), 16),\n",
" ((',', 'borough', 'of', 'manhattan', '.', 'community', 'board'), 16),\n",
" (('prior', 'to', 'the', 'public', 'hearing', '.', 'tdd'), 16),\n",
" ((')', 'contract', '(', 's', ')', 'not', 'included'), 16),\n",
" (('nan', 'notice', 'of', 'intent', 'to', 'issue', 'new'), 16),\n",
" (('be', 'entering', 'into', 'the', 'following', 'extension', '('), 16),\n",
" (('c', ')', '(', '3', ')', 'of', 'the'), 16),\n",
" (('of', 'new', 'york', ',', 'as', 'tenant', ','), 16),\n",
" (('street', ',', 'new', 'york', ',', 'n.y.', '10007'), 16),\n",
" (('100', 'church', 'street', ',', '12th', 'floor', ','), 16),\n",
" (('s', ')', 'of', '(', 'a', ')', 'contract'), 16),\n",
" (('of', '(', 'a', ')', 'contract', '(', 's'), 16),\n",
" (('users', 'should', 'call', 'verizon', 'relay', 'services', '.'), 15),\n",
" (('the', '12th', 'floor', 'of', '250', 'broadway', ','), 15),\n",
" (('and', 'on', 'nycha', \"'s\", 'website', 'at', 'http'), 15),\n",
" (('website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the'),\n",
" 15),\n",
" (('at', '10:00', 'a.m.', 'in', 'the', 'board', 'room'), 15),\n",
" ((',', '2nd', 'floor', 'conference', 'room', ',', 'borough'), 15),\n",
" (('room', 'on', 'the', '12th', 'floor', 'of', '250'), 15),\n",
" (('floor', 'of', '250', 'broadway', ',', 'new', 'york'), 15),\n",
" (('meeting', '.', 'for', 'additional', 'information', ',', 'please'), 15),\n",
" (('//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at',\n",
" 'a'),\n",
" 15),\n",
" (('at', '10:00', 'a.m.', 'on', 'the', 'following', ':'), 15),\n",
" (('.', 'for', 'additional', 'information', ',', 'please', 'visit'), 15),\n",
" (('the', 'end', 'of', 'each', 'month', '.', 'the'), 15),\n",
" ((',', '33', 'beaver', 'street', ',', '21st', 'floor'), 15),\n",
" (('for', 'additional', 'information', ',', 'please', 'visit', 'nycha'), 15),\n",
" (('the', 'board', 'room', 'on', 'the', '12th', 'floor'), 15),\n",
" (('of', 'a', 'public', 'hearing', ',', 'tuesday', 'morning'), 15),\n",
" (('nycha', \"'s\", 'website', 'or', 'contact', '(', '212'), 15),\n",
" (('a', 'public', 'hearing', ',', 'tuesday', 'morning', ','), 15),\n",
" (('floor', ',', 'training', 'room', '#', '143', ','), 15),\n",
" (('schedule', 'will', 'be', 'posted', 'here', 'and', 'on'), 15),\n",
" (('information', ',', 'please', 'visit', 'nycha', \"'s\", 'website'), 15),\n",
" (('similar', 'titles', 'within', 'agency', ':', '0', 'nan'), 15),\n",
" (('room', '#', '143', ',', 'new', 'york', ','), 15),\n",
" (('hereby', 'given', 'of', 'a', 'public', 'hearing', ','), 15),\n",
" (('children', \"'s\", 'services', ',', 'office', 'of', 'procurement'), 15),\n",
" (('the', 'extent', 'practicable', 'at', 'a', 'reasonable', 'time'), 15),\n",
" ((\"'s\",\n",
" 'website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to'),\n",
" 15),\n",
" (('a.m.', 'in', 'the', 'board', 'room', 'on', 'the'), 15),\n",
" (('board', ':', 'borough', 'of', 'brooklyn', 'community', 'board'), 15),\n",
" (('to', 'the', 'extent', 'practicable', 'at', 'a', 'reasonable'), 15),\n",
" (('33', 'beaver', 'street', ',', '21st', 'floor', ','), 15),\n",
" ((',', 'please', 'visit', 'nycha', \"'s\", 'website', 'or'), 15),\n",
" (('be', 'posted', 'here', 'and', 'on', 'nycha', \"'s\"), 15),\n",
" (('the', 'new', 'york', 'city', 'charter', ',', 'will'), 15),\n",
" (('additional', 'information', ',', 'please', 'visit', 'nycha', \"'s\"), 15),\n",
" (('here', 'and', 'on', 'nycha', \"'s\", 'website', 'at'), 15),\n",
" (('practicable', 'at', 'a', 'reasonable', 'time', 'before', 'the'), 15),\n",
" (('.', 'any', 'changes', 'to', 'the', 'schedule', 'will'), 15),\n",
" (('community', 'board', ':', 'borough', 'of', 'brooklyn', 'community'), 15),\n",
" (('extent', 'practicable', 'at', 'a', 'reasonable', 'time', 'before'), 15),\n",
" (('at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent'),\n",
" 15),\n",
" (('12th', 'floor', 'of', '250', 'broadway', ',', 'new'), 15),\n",
" (('of', '250', 'broadway', ',', 'new', 'york', ','), 15),\n",
" (('posted', 'here', 'and', 'on', 'nycha', \"'s\", 'website'), 15),\n",
" ((':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at'),\n",
" 15),\n",
" ((',', '12th', 'floor', ',', 'training', 'room', '#'), 15),\n",
" (('10:00', 'a.m.', 'in', 'the', 'board', 'room', 'on'), 15),\n",
" (('will', 'be', 'posted', 'here', 'and', 'on', 'nycha'), 15),\n",
" (('notice', 'is', 'hereby', 'given', 'of', 'a', 'public'), 15),\n",
" (('board', 'room', 'on', 'the', '12th', 'floor', 'of'), 15),\n",
" (('of', 'the', 'new', 'york', 'city', 'housing', 'authority'), 15),\n",
" (('to', 'the', 'schedule', 'will', 'be', 'posted', 'here'), 15),\n",
" (('floor', 'conference', 'room', ',', 'borough', 'of', 'manhattan'), 15),\n",
" (('church', 'street', ',', '12th', 'floor', ',', 'training'), 15),\n",
" (('section', '3-04', '(', 'b', ')', '(', '2'), 15),\n",
" (('a', 'reasonable', 'time', 'before', 'the', 'meeting', '.'), 15),\n",
" (('at', 'a', 'reasonable', 'time', 'before', 'the', 'meeting'), 15),\n",
" (('tdd', 'users', 'should', 'call', 'verizon', 'relay', 'services'), 15),\n",
" (('in', 'the', 'board', 'room', 'on', 'the', '12th'), 15),\n",
" (('12th', 'floor', ',', 'training', 'room', '#', '143'), 15),\n",
" (('street', ',', '2nd', 'floor', 'conference', 'room', ','), 15),\n",
" (('any', 'changes', 'to', 'the', 'schedule', 'will', 'be'), 15),\n",
" ((\"'s\", 'website', 'or', 'contact', '(', '212', ')'), 15),\n",
" (('reade', 'street', ',', '2nd', 'floor', 'conference', 'room'), 15),\n",
" (('by', 'community', 'board', ':', 'borough', 'of', 'brooklyn'), 15),\n",
" (('http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable'),\n",
" 15),\n",
" (('on', 'the', '12th', 'floor', 'of', '250', 'broadway'), 15),\n",
" (('22', 'reade', 'street', ',', '2nd', 'floor', 'conference'), 15),\n",
" (('on', 'nycha', \"'s\", 'website', 'at', 'http', ':'), 15),\n",
" (('3-04', '(', 'b', ')', '(', '2', ')'), 15),\n",
" (('to', 'section', '3-04', '(', 'b', ')', '('), 15),\n",
" (('street', ',', '12th', 'floor', ',', 'training', 'room'), 15),\n",
" (('2', ',', 'manhattan', 'certificate', 'of', 'appropriateness', 'a'), 15),\n",
" (('2nd', 'floor', 'conference', 'room', ',', 'borough', 'of'), 15),\n",
" (('visit', 'nycha', \"'s\", 'website', 'or', 'contact', '('), 15),\n",
" (('new', 'york', ',', 'as', 'tenant', ',', 'of'), 15),\n",
" (('nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml'),\n",
" 15),\n",
" (('is', 'hereby', 'given', 'of', 'a', 'public', 'hearing'), 15),\n",
" (('the', 'schedule', 'will', 'be', 'posted', 'here', 'and'), 15),\n",
" (('training', 'room', '#', '143', ',', 'new', 'york'), 15),\n",
" ((',', 'training', 'room', '#', '143', ',', 'new'), 15),\n",
" (('changes', 'to', 'the', 'schedule', 'will', 'be', 'posted'), 15),\n",
" (('given', 'of', 'a', 'public', 'hearing', ',', 'tuesday'), 15),\n",
" (('please', 'visit', 'nycha', \"'s\", 'website', 'or', 'contact'), 15),\n",
" (('pursuant', 'to', 'section', '3-04', '(', 'b', ')'), 15),\n",
" (('one', 'centre', 'street', ',', 'room', '2000', 'north'), 14),\n",
" (('2000', 'north', ',', 'new', 'york', ',', 'n.y.'), 14),\n",
" (('new', 'york', ',', 'n.y.', '10007', ',', 'on'), 14),\n",
" (('at', 'one', 'centre', 'street', ',', 'room', '2000'), 14),\n",
" (('the', 'date', 'of', 'approval', 'by', 'the', 'mayor'), 14),\n",
" ((':', 'ddc', 'description', 'of', 'services', 'sought', ':'), 14),\n",
" (('fleming', 'at', '(', '212', ')', '386-0315', '.'), 14),\n",
" ((':', 'in', 'the', 'matter', 'of', 'a', 'proposed'), 14),\n",
" ((',', 'n.y.', '10007', ',', '(', '212', ')'), 14),\n",
" (('of', 'the', 'proposed', 'lease', 'may', 'be', 'obtained'), 14),\n",
" (('(', '212', ')', '386-0315', '.', 'individuals', 'requesting'), 14),\n",
" (('unit', ',', '253', 'broadway', ',', '2nd', 'floor'), 14),\n",
" (('that', 'a', 'real', 'property', 'acquisitions', 'and', 'dispositions'),\n",
" 14),\n",
" (('in', 'accordance', 'with', 'section', '824', 'of', 'the'), 14),\n",
" (('new', 'york', 'having', 'an', 'approximate', 'original', 'principal'), 14),\n",
" (('obtained', 'at', 'one', 'centre', 'street', ',', 'room'), 14),\n",
" ((',', 'manhattan', ',', 'ny', '10007', ',', 'at'), 14),\n",
" (('within', 'agency', ':', '0', 'agency', ':', 'ddc'), 14),\n",
" ((')', '386-0315', '.', 'individuals', 'requesting', 'sign', 'language'), 14),\n",
" (('dispositions', 'public', 'hearing', ',', 'in', 'accordance', 'with'), 14),\n",
" (('york', ',', 'n.y.', '10007', ',', 'on', 'the'), 14),\n",
" (('n.y.', '10007', '.', 'to', 'schedule', 'an', 'inspection'), 14),\n",
" (('in', 'the', 'borough', 'of', 'brooklyn', '(', 'to'), 14),\n",
" (('york', ',', 'as', 'tenant', ',', 'of', 'approximately'), 14),\n",
" ((',', 'please', 'contact', 'chris', 'fleming', 'at', '('), 14),\n",
" (('given', 'that', 'a', 'real', 'property', 'acquisitions', 'and'), 14),\n",
" (('lease', 'may', 'be', 'obtained', 'at', 'one', 'centre'), 14),\n",
" (('public', 'inspection', 'of', 'the', 'proposed', 'lease', 'may'), 14),\n",
" (('north', ',', 'new', 'york', ',', 'n.y.', '10007'), 14),\n",
" (('253', 'broadway', ',', '2nd', 'floor', ',', 'new'), 14),\n",
" (('york', 'city', 'administration', 'for', 'children', \"'s\", 'services'), 14),\n",
" (('a.m.', ',', '22', 'reade', 'street', ',', '2nd'), 14),\n",
" (('city', 'charter', ',', 'will', 'be', 'held', 'on'), 14),\n",
" (('212', ')', '386-0315', '.', 'individuals', 'requesting', 'sign'), 14),\n",
" (('centre', 'street', ',', 'room', '2000', 'north', ','), 14),\n",
" ((',', 'n.y.', '10007', '.', 'to', 'schedule', 'an'), 14),\n",
" (('please', 'contact', 'chris', 'fleming', 'at', '(', '212'), 14),\n",
" (('10007', '.', 'to', 'schedule', 'an', 'inspection', ','), 14),\n",
" (('building', ',', 'manhattan', ',', 'ny', '10007', ','), 14),\n",
" (('.', 'to', 'schedule', 'an', 'inspection', ',', 'please'), 14),\n",
" (('is', 'hereby', 'given', 'that', 'a', 'real', 'property'), 14),\n",
" (('to', 'schedule', 'an', 'inspection', ',', 'please', 'contact'), 14),\n",
" (('(', 'b', ')', '(', '2', ')', '('), 14),\n",
" (('titles', 'within', 'agency', ':', '0', 'notice', 'of'), 14),\n",
" (('inspection', 'of', 'the', 'proposed', 'lease', 'may', 'be'), 14),\n",
" (('island', ',', 'new', 'york', 'having', 'an', 'approximate'), 14),\n",
" (('further', 'information', ',', 'including', 'public', 'inspection', 'of'),\n",
" 14),\n",
" (('room', '2000', 'north', ',', 'new', 'york', ','), 14),\n",
" (('public', 'hearing', ',', 'in', 'accordance', 'with', 'section'), 14),\n",
" ((':', '0', 'agency', ':', 'department', 'of', 'information'), 14),\n",
" (('gotham', 'center', ',', '42-09', '28th', 'street', ','), 14),\n",
" (('2nd', 'floor', ',', 'new', 'york', ',', 'n.y.'), 14),\n",
" ((',', '22', 'reade', 'street', ',', '2nd', 'floor'), 14),\n",
" (('york', ',', 'n.y.', '10007', '.', 'to', 'schedule'), 14),\n",
" ((',', 'room', '2000', 'north', ',', 'new', 'york'), 14),\n",
" (('street', ',', 'room', '2000', 'north', ',', 'new'), 14),\n",
" ((',', 'staten', 'island', ',', 'new', 'york', 'having'), 14),\n",
" (('824', 'of', 'the', 'new', 'york', 'city', 'charter'), 14),\n",
" (('new', 'york', ',', 'n.y.', '10007', '.', 'to'), 14),\n",
" (('staten', 'island', ',', 'new', 'york', 'having', 'an'), 14),\n",
" (('an', 'inspection', ',', 'please', 'contact', 'chris', 'fleming'), 14),\n",
" (('schedule', 'an', 'inspection', ',', 'please', 'contact', 'chris'), 14),\n",
" (('chris', 'fleming', 'at', '(', '212', ')', '386-0315'), 14),\n",
" (('services', 'start', 'date', 'of', 'the', 'proposed', 'contract'), 14),\n",
" (('accordance', 'with', 'section', '824', 'of', 'the', 'new'), 14),\n",
" ((',', 'new', 'york', ',', 'ny', '10007', '.'), 14),\n",
" (('street', ',', '2nd', 'floor', ',', 'new', 'york'), 14),\n",
" (('.', 'further', 'information', ',', 'including', 'public', 'inspection'),\n",
" 14),\n",
" (('property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ','),\n",
" 14),\n",
" (('the', 'proposed', 'lease', 'may', 'be', 'obtained', 'at'), 14),\n",
" (('from', 'the', 'date', 'of', 'approval', 'by', 'the'), 14),\n",
" (('0', 'agency', ':', 'department', 'of', 'information', 'technology'), 14),\n",
" (('at', 'gotham', 'center', ',', '42-09', '28th', 'street'), 14),\n",
" (('floor', ',', 'new', 'york', ',', 'n.y.', '10007'), 14),\n",
" (('hearing', ',', 'in', 'accordance', 'with', 'section', '824'), 14),\n",
" (('with', 'section', '824', 'of', 'the', 'new', 'york'), 14),\n",
" (('hearings', 'unit', ',', '253', 'broadway', ',', '2nd'), 14),\n",
" ((',', '253', 'broadway', ',', '2nd', 'floor', ','), 14),\n",
" (('at', '(', '212', ')', '386-0315', '.', 'individuals'), 14),\n",
" (('386-0315',\n",
" '.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters'),\n",
" 14),\n",
" (('real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing'),\n",
" 14),\n",
" ((',', 'new', 'york', 'having', 'an', 'approximate', 'original'), 14),\n",
" ((',', 'n.y.', '10007', ',', 'on', 'the', 'following'), 14),\n",
" (('the', 'new', 'york', 'city', 'administration', 'for', 'children'), 14),\n",
" (('proposed', 'lease', 'may', 'be', 'obtained', 'at', 'one'), 14),\n",
" (('a', 'real', 'property', 'acquisitions', 'and', 'dispositions', 'public'),\n",
" 14),\n",
" (('section', '824', 'of', 'the', 'new', 'york', 'city'), 14),\n",
" (('n.y.', '10007', ',', '(', '212', ')', '788-7490'), 14),\n",
" (('notice', 'is', 'hereby', 'given', 'that', 'a', 'real'), 14),\n",
" (('the', 'agency', 'intends', 'to', 'utilize', ':', 'competitive'), 14),\n",
" (('information', ',', 'including', 'public', 'inspection', 'of', 'the'), 14),\n",
" ((',', 'pursuant', 'to', 'section', '3-04', '(', 'b'), 14),\n",
" (('agency', ':', 'ddc', 'description', 'of', 'services', 'sought'), 14),\n",
" (('following', ':', 'in', 'the', 'matter', 'of', 'a'), 14),\n",
" (('new', 'york', 'city', 'administration', 'for', 'children', \"'s\"), 14),\n",
" (('inspection', ',', 'please', 'contact', 'chris', 'fleming', 'at'), 14),\n",
" ((',', 'municipal', 'building', ',', 'manhattan', ',', 'ny'), 14),\n",
" (('municipal', 'building', ',', 'manhattan', ',', 'ny', '10007'), 14),\n",
" ((',', 'in', 'accordance', 'with', 'section', '824', 'of'), 14),\n",
" (('city', 'and', 'state', 'mortgage', 'recording', 'taxes', '.'), 14),\n",
" (('may', 'be', 'obtained', 'at', 'one', 'centre', 'street'), 14),\n",
" (('and', 'dispositions', 'public', 'hearing', ',', 'in', 'accordance'), 14),\n",
" (('broadway', ',', '2nd', 'floor', ',', 'new', 'york'), 14),\n",
" (('n.y.', '10007', ',', 'on', 'the', 'following', 'matters'), 14),\n",
" (('hereby', 'given', 'that', 'a', 'real', 'property', 'acquisitions'), 14),\n",
" (('york', 'city', 'charter', ',', 'will', 'be', 'held'), 14),\n",
" (('york', ',', 'n.y.', '10007', ',', '(', '212'), 14),\n",
" (('new', 'york', 'city', 'charter', ',', 'will', 'be'), 14),\n",
" (('contact', 'chris', 'fleming', 'at', '(', '212', ')'), 14),\n",
" (('including', 'public', 'inspection', 'of', 'the', 'proposed', 'lease'), 14),\n",
" (('acquisitions', 'and', 'dispositions', 'public', 'hearing', ',', 'in'), 14),\n",
" (('be', 'obtained', 'at', 'one', 'centre', 'street', ','), 14),\n",
" (('10007', ',', 'on', 'the', 'following', 'matters', ':'), 14),\n",
" ((',', 'including', 'public', 'inspection', 'of', 'the', 'proposed'), 14),\n",
" (('new', 'york', ',', 'n.y.', '10007', ',', '('), 14),\n",
" (('website', 'or', 'contact', '(', '212', ')', '306-6088'), 13),\n",
" (('llc', 'pursuant', 'to', 'sections', '197-c', 'and', '201'), 13),\n",
" (('143', ',', 'new', 'york', ',', 'ny', '10007'), 13),\n",
" (('policy', 'board', 'rules', '.', 'a', 'copy', 'of'), 13),\n",
" (('at', 'the', 'new', 'york', 'city', 'administration', 'for'), 13),\n",
" (('city', 'administration', 'for', 'children', \"'s\", 'services', ','), 13),\n",
" (('children', \"'s\", 'services', 'of', 'the', 'city', 'of'), 13),\n",
" (('having', 'an', 'approximate', 'original', 'principal', 'amount', 'of'),\n",
" 13),\n",
" (('2nd', 'floor', ',', 'new', 'york', ',', 'ny'), 13),\n",
" (('federal', 'taxation', 'pursuant', 'to', 'section', '501', '('), 13),\n",
" (('at', 'the', 'administration', 'for', 'children', \"'s\", 'services'), 13),\n",
" (('an', 'approximate', 'original', 'principal', 'amount', 'of', '$'), 13),\n",
" (('pursuant', 'to', 'section', '501', '(', 'c', ')'), 13),\n",
" (('services', 'of', 'the', 'city', 'of', 'new', 'york'), 13),\n",
" (('york', 'having', 'an', 'approximate', 'original', 'principal', 'amount'),\n",
" 13),\n",
" (('held', 'at', 'the', 'administration', 'for', 'children', \"'s\"), 13),\n",
" (('will', 'be', 'held', 'at', 'the', 'administration', 'for'), 13),\n",
" (('exempt', 'from', 'federal', 'taxation', 'pursuant', 'to', 'section'), 13),\n",
" (('150', 'william', 'street', ',', '9th', 'floor', ','), 13),\n",
" (('york', ',', 'ny', '10007', 'at', '9:15', 'a.m.'), 13),\n",
" (('street', ',', 'new', 'york', ',', 'new', 'york'), 13),\n",
" (('the', 'procurement', 'policy', 'board', 'rules', '.', 'a'), 13),\n",
" (('inspection', 'at', 'the', 'new', 'york', 'city', 'administration'), 13),\n",
" (('#', '143', ',', 'new', 'york', ',', 'ny'), 13),\n",
" (('procurement', 'policy', 'board', 'rules', '.', 'a', 'copy'), 13),\n",
" (('matter', 'of', 'an', 'application', 'submitted', 'by', 'the'), 13),\n",
" (('for', 'children', \"'s\", 'services', 'of', 'the', 'city'), 13),\n",
" ((\"'s\", 'services', 'of', 'the', 'city', 'of', 'new'), 13),\n",
" (('the', 'proposed', 'contractor', 'has', 'been', 'selected', 'by'), 13),\n",
" (('board', 'rules', '.', 'a', 'copy', 'of', 'the'), 13),\n",
" (('design', 'and', 'construction', 'description', 'of', 'services', 'sought'),\n",
" 13),\n",
" (('of', 'design', 'and', 'construction', 'description', 'of', 'services'),\n",
" 13),\n",
" ((':', 'department', 'of', 'design', 'and', 'construction', 'description'),\n",
" 13),\n",
" (('administration', 'for', 'children', \"'s\", 'services', 'of', 'the'), 13),\n",
" (('contract', 'is', 'available', 'for', 'public', 'inspection', 'at'), 13),\n",
" (('brooklyn', ',', 'new', 'york', '.', 'site', 'no'), 13),\n",
" ((',', 'new', 'york', ',', 'ny', '10007', 'at'), 13),\n",
" (('.', 'hourly', 'wage', 'average', 'and', 'range', ':'), 13),\n",
" (('street', 'in', 'the', 'borough', 'of', 'manhattan', '('), 13),\n",
" (('the', 'administration', 'for', 'children', \"'s\", 'services', 'of'), 13),\n",
" (('hearing', 'will', 'be', 'held', 'at', 'the', 'administration'), 13),\n",
" (('from', 'federal', 'taxation', 'pursuant', 'to', 'section', '501'), 13),\n",
" (('corporation', 'exempt', 'from', 'federal', 'taxation', 'pursuant', 'to'),\n",
" 13),\n",
" (('new', 'york', ',', 'ny', '10007', 'at', '9:15'), 13),\n",
" (('and', 'construction', 'description', 'of', 'services', 'sought', ':'), 13),\n",
" (('9th', 'floor', ',', 'borough', 'of', 'manhattan', ','), 13),\n",
" (('be', 'held', 'at', 'the', 'administration', 'for', 'children'), 13),\n",
" (('to', 'section', '501', '(', 'c', ')', '('), 13),\n",
" (('project', 'manager', ',', 'associate', 'project', 'manager', ','), 13),\n",
" (('between', 'the', 'administration', 'for', 'children', \"'s\", 'services'),\n",
" 13),\n",
" (('nan', 'notice', 'is', 'hereby', 'given', 'that', 'a'), 13),\n",
" (('is', 'available', 'for', 'public', 'inspection', 'at', 'the'), 13),\n",
" (('or', 'contact', '(', '212', ')', '306-6088', '.'), 13),\n",
" (('the', 'administration', 'for', 'children', \"'s\", 'services', ','), 13),\n",
" (('501', '(', 'c', ')', '(', '3', ')'), 13),\n",
" (('agency', ':', 'department', 'of', 'design', 'and', 'construction'), 13),\n",
" (('10:00', 'a.m.', 'on', 'the', 'following', ':', 'in'), 13),\n",
" ((',', 'llc', 'for', 'a', 'site', 'located', 'at'), 13),\n",
" (('taxation', 'pursuant', 'to', 'section', '501', '(', 'c'), 13),\n",
" (('section', '501', '(', 'c', ')', '(', '3'), 13),\n",
" (('william', 'street', ',', '9th', 'floor', ',', 'borough'), 13),\n",
" (('department', 'of', 'design', 'and', 'construction', 'description', 'of'),\n",
" 13),\n",
" (('board', 'of', 'health', 'meets', 'at', 'gotham', 'center'), 12),\n",
" (('month', 'at', 'the', 'call', 'of', 'the', 'president'), 12),\n",
" (('.', 'the', 'proposed', 'revocable', 'consent', 'is', 'for'), 12),\n",
" (('conditions', 'for', 'compensation', 'payable', 'to', 'the', 'city'), 12),\n",
" (('month', ',', 'commencing', 'at', '9:30', 'a.m.', ','), 12),\n",
" (('city', 'housing', 'authority', 'are', 'scheduled', 'for', 'the'), 12),\n",
" (('tuesdays', 'at', '10:00', 'a.m.', 'review', 'sessions', 'begin'), 12),\n",
" (('foreclosure', 'release', 'board', 'meets', 'in', 'spector', 'hall'), 12),\n",
" (('scheduled', 'for', 'the', 'last', 'wednesday', 'of', 'each'), 12),\n",
" (('tuesdays', ',', 'commencing', '10:00', 'a.m.', ',', 'and'), 12),\n",
" (('board', 'generally', 'meets', 'at', '10:00', 'a.m.', 'on'), 12),\n",
" (('to', 'the', 'city', 'according', 'to', 'the', 'following'), 12),\n",
" (('call', '212-788-3071', '.', 'department', 'of', 'education', 'meets'), 12),\n",
" (('the', 'chairman', '.', 'board', 'of', 'higher', 'education'), 12),\n",
" (('936', ',', 'municipal', 'building', ',', 'manhattan', ','), 12),\n",
" (('am', 'and', '4', 'pm', '.', 'please', 'contact'), 12),\n",
" (('meets', 'at', 'its', 'office', ',', '100', 'centre'), 12),\n",
" (('a.m.', ',', 'quarterly', 'or', 'at', 'the', 'call'), 12),\n",
" (('10006', ',', 'on', 'the', 'fourth', 'wednesday', 'of'), 12),\n",
" (('president', '.', 'manhattan', ',', 'monthly', 'on', 'wednesdays'), 12),\n",
" (('306-6088', '.', 'parole', 'commission', 'meets', 'at', 'its'), 12),\n",
" (('rector', 'street', ',', 'new', 'york', ',', 'ny'), 12),\n",
" (('.', 'for', 'current', 'meeting', 'dates', ',', 'times'), 12),\n",
" (('room', '2203', ',', '2', 'washington', 'street', ','), 12),\n",
" (('.', 'board', 'of', 'standards', 'and', 'appeals', 'meets'), 12),\n",
" (('human', 'rights', 'meets', 'on', '10th', 'floor', 'in'), 12),\n",
" (('control', 'board', 'meets', 'at', '100', 'church', 'street'), 12),\n",
" (('main', 'floor', ',', 'and', 'other', 'days', ','), 12),\n",
" (('each', 'month', ',', 'commencing', 'at', '9:30', 'a.m.'), 12),\n",
" ((',', 'ny', '10007', '(', 'unless', 'otherwise', 'noted'), 12),\n",
" (('room', 'on', 'the', '9th', 'floor', 'of', '40'), 12),\n",
" (('review', 'board', 'generally', 'meets', 'at', '10:00', 'a.m.'), 12),\n",
" (('p.m', '.', 'the', 'annual', 'meeting', 'is', 'held'), 12),\n",
" (('municipal', 'building', ',', '9th', 'floor', 'north', ','), 12),\n",
" (('manhattan', ',', 'ny', '.', 'site', 'no', '.'), 12),\n",
" (('commission', 'meets', 'in', 'the', 'hearing', 'room', ','), 12),\n",
" ((',', '335', 'adams', 'street', ',', 'brooklyn', ','), 12),\n",
" (('at',\n",
" 'www.nyc.gov/landmarks',\n",
" '.',\n",
" 'employees',\n",
" \"'\",\n",
" 'retirement',\n",
" 'system'),\n",
" 12),\n",
" (('york', ',', 'ny', '10007', ',', 'twice', 'monthly'), 12),\n",
" (('department', 'of', 'education', 'meets', 'in', 'the', 'hall'), 12),\n",
" (('website',\n",
" 'at',\n",
" 'www.nyc.gov/landmarks',\n",
" '.',\n",
" 'employees',\n",
" \"'\",\n",
" 'retirement'),\n",
" 12),\n",
" (('10007', ',', 'at', '1:30', 'p.m.', 'contract', 'awards'), 12),\n",
" (('.', 'parole', 'commission', 'meets', 'at', 'its', 'office'), 12),\n",
" (('health', 'insurance', 'board', 'meets', 'in', 'room', '530'), 12),\n",
" ((',', 'monthly', 'on', 'tuesdays', ',', 'commencing', '10:00'), 12),\n",
" (('board', 'meets', 'in', 'spector', 'hall', ',', '22'), 12),\n",
" (('the', 'last', 'wednesday', 'of', 'each', 'month', '('), 12),\n",
" (('5:30', 'p.m.', ',', 'on', 'fourth', 'monday', 'in'), 12),\n",
" (('in', 'the', 'hall', 'of', 'the', 'board', 'for'), 12),\n",
" ((',', 'new', 'york', ',', 'ny', '10006', ','), 12),\n",
" (('212', ')', '306-6088', '.', 'parole', 'commission', 'meets'), 12),\n",
" (('board', 'for', 'a', 'monthly', 'business', 'meeting', 'on'), 12),\n",
" (('of', 'awards', 'meets', 'in', 'room', '603', ','), 12),\n",
" (('meets', 'at', '40', 'rector', 'street', ',', '6th'), 12),\n",
" ((',', '2', 'washington', 'street', ',', 'new', 'york'), 12),\n",
" (('call', 'of', 'the', 'chairman', '.', 'health', 'insurance'), 12),\n",
" (('commissioner', '.', 'environmental', 'control', 'board', 'meets', 'at'),\n",
" 12),\n",
" (('6th', 'floor', ',', 'hearing', 'room', '``', 'e'), 12),\n",
" (('property', 'acquisition', 'and', 'disposition', 'meets', 'in', 'spector'),\n",
" 12),\n",
" (('thursday', ',', 'commencing', '10:00', 'a.m.', ',', 'and'), 12),\n",
" (('franchise', 'and', 'concession', 'review', 'committee', 'meets', 'in'),\n",
" 12),\n",
" (('of', 'each', 'month', 'at', '6:00', 'p.m', '.'), 12),\n",
" (('hours', 'of', '10', 'am', 'and', '4', 'pm'), 12),\n",
" (('the', 'call', 'of', 'the', 'chairman', '.', 'housing'), 12),\n",
" (('.', 'landmarks', 'preservation', 'commission', 'meets', 'in', 'the'), 12),\n",
" (('``', 'e', \"''\", 'on', 'tuesdays', 'at', '10:00'), 12),\n",
" (('city', 'hall', ',', 'third', 'floor', ',', 'new'), 12),\n",
" (('10:00', 'a.m.', 'board', 'of', 'elections', '32', 'broadway'), 12),\n",
" (('tuesday', 'public', 'hearing', 'in', 'the', 'bsa', 'conference'), 12),\n",
" (('e', \"''\", 'on', 'tuesdays', 'at', '10:00', 'a.m.'), 12),\n",
" (('board', 'of', 'elections', '32', 'broadway', ',', '7th'), 12),\n",
" (('revision', 'of', 'awards', 'meets', 'in', 'room', '603'), 12),\n",
" ((',', 'hearing', 'room', '``', 'e', \"''\", 'on'), 12),\n",
" (('please', 'visit', 'our', 'website', 'at', 'www.nyc.gov/landmarks', '.'),\n",
" 12),\n",
" (('street', ',', 'new', 'york', ',', 'ny', '10007'), 12),\n",
" (('annual', 'meeting', 'is', 'held', 'on', 'the', 'first'), 12),\n",
" (('as', 'warranted', '.', 'real', 'property', 'acquisition', 'and'), 12),\n",
" (('the', 'city', 'according', 'to', 'the', 'following', 'schedule'), 12),\n",
" (('a', 'month', 'at', 'the', 'call', 'of', 'the'), 12),\n",
" (('and', 'location', 'as', 'warranted', '.', 'franchise', 'and'), 12),\n",
" (('december', '.', 'annual', 'meeting', 'held', 'on', 'fourth'), 12),\n",
" (('tuesday', \"'s\", 'each', 'month', ',', 'commencing', 'at'), 12),\n",
" ((',', 'twice', 'monthly', 'on', 'wednesday', ',', 'at'), 12),\n",
" (('of', 'the', 'chairman', '.', 'board', 'of', 'standards'), 12),\n",
" ((',', 'march', ',', 'april', ',', 'june', ','), 12),\n",
" (('third', 'floor', ',', 'new', 'york', ',', 'ny'), 12),\n",
" (('the', 'call', 'of', 'the', 'chairman', '.', 'health'), 12),\n",
" ((',', 'at', '40', 'rector', 'street', ',', '9th'), 12),\n",
" (('at', '9:15', 'a.m.', 'once', 'a', 'month', 'at'), 12),\n",
" (('street', 'in', 'manhattan', 'on', 'approximately', 'three', 'tuesday'),\n",
" 12),\n",
" (('fourth', 'monday', 'in', 'may', '.', 'citywide', 'administrative'), 12),\n",
" (('a.m.', 'board', 'of', 'elections', '32', 'broadway', ','), 12),\n",
" (('9:30', 'a.m.', ',', 'unless', 'otherwise', 'noticed', 'by'), 12),\n",
" ((',', 'brooklyn', ',', 'new', 'york', '.', 'site'), 12),\n",
" ((',', 'on', 'wednesdays', ',', 'commencing', '10:00', 'a.m.'), 12),\n",
" (('10021', ',', 'at', '5:30', 'p.m.', ',', 'on'), 12),\n",
" (('of', 'revision', 'of', 'awards', 'meets', 'in', 'room'), 12),\n",
" ((',', 'at', '5:30', 'p.m.', ',', 'on', 'fourth'), 12),\n",
" (('design', 'commission', 'meets', 'at', 'city', 'hall', ','), 12),\n",
" (('the', 'meeting', '.', 'for', 'additional', 'information', ','), 12),\n",
" (('for', 'current', 'meeting', 'dates', ',', 'times', 'and'), 12),\n",
" (('as', 'warranted', '.', 'civilian', 'complaint', 'review', 'board'), 12),\n",
" (('location', 'as', 'warranted', '.', 'civilian', 'complaint', 'review'), 12),\n",
" (('chamber', ',', 'city', 'hall', ',', 'manhattan', ','), 12),\n",
" (('customarily', 'held', 'on', 'mondays', 'preceding', 'a', 'tuesday'), 12),\n",
" (('nyc.gov/designcommission',\n",
" 'or',\n",
" 'call',\n",
" '212-788-3071',\n",
" '.',\n",
" 'department',\n",
" 'of'),\n",
" 12),\n",
" ((')', 'at', '10:00', 'a.m.', 'in', 'the', 'board'), 12),\n",
" ((',', 'quarterly', 'or', 'at', 'the', 'call', 'of'), 12),\n",
" ((',', '100', 'centre', 'street', ',', 'manhattan', ','), 12),\n",
" (('city', 'according', 'to', 'the', 'following', 'schedule', ':'), 12),\n",
" (('thursday', ',', 'at', '10:30', 'a.m.', 'board', 'of'), 12),\n",
" (('new', 'york', ',', 'ny', '10007', '(', 'unless'), 12),\n",
" (('chairman', '.', 'board', 'of', 'higher', 'education', 'meets'), 12),\n",
" (('the', 'second', 'wednesday', 'of', 'each', 'month', 'at'), 12),\n",
" (('the', 'agency', 'intends', 'to', 'utilize', ':', 'request'), 12),\n",
" (('tax', 'commission', 'meets', 'in', 'room', '936', ','), 12),\n",
" (('broadway', ',', '7th', 'floor', ',', 'new', 'york'), 12),\n",
" ((',', 'of', 'each', 'month', 'at', '6:00', 'p.m'), 12),\n",
" (('third', 'thursday', 'of', 'each', 'month', ',', 'at'), 12),\n",
" (('proposed', 'contractor', 'has', 'been', 'selected', 'by', 'means'), 12),\n",
" (('meets', 'in', 'the', 'hall', 'of', 'the', 'board'), 12),\n",
" (('parole', 'commission', 'meets', 'at', 'its', 'office', ','), 12),\n",
" (('bsa', 'conference', 'room', 'on', 'the', '9th', 'floor'), 12),\n",
" (('//www.nyc.gov/html/ccrb/html/meeting.html',\n",
" 'for',\n",
" 'additional',\n",
" 'information',\n",
" 'and',\n",
" 'scheduling',\n",
" 'changes'),\n",
" 12),\n",
" (('at', '9:30', 'a.m.', ',', 'on', 'the', 'third'), 12),\n",
" (('by', 'charter', 'twice', 'a', 'month', 'in', 'councilman'), 12),\n",
" (('reade', 'street', ',', 'main', 'floor', ',', 'and'), 12),\n",
" ((',', 'municipal', 'building', ',', '9th', 'floor', 'north'), 12),\n",
" (('public', 'hearing', 'in', 'the', 'bsa', 'conference', 'room'), 12),\n",
" (('floor', 'north', ',', '1', 'centre', 'street', 'in'), 12),\n",
" (('floor', ',', 'hearing', 'room', '``', 'e', \"''\"), 12),\n",
" (('board', 'meets', 'at', '100', 'church', 'street', ','), 12),\n",
" (('street', ',', 'new', 'york', ',', 'n.y.', '10004'), 12),\n",
" ((',', '2014', 'special', 'permit', '(', '73-36', ')'), 12),\n",
" ((',', '40', 'rector', 'street', ',', 'new', 'york'), 12),\n",
" (('the', 'matter', 'of', 'a', 'proposed', 'revocable', 'consent'), 12),\n",
" (('administrative', 'code', 'of', 'the', 'city', 'of', 'new'), 12),\n",
" ((',', 'please', 'call', 'the', 'application', 'desk', 'at'), 12),\n",
" (('chairman', '.', 'board', 'of', 'health', 'meets', 'at'), 12),\n",
" ((',', 'on', 'the', 'third', 'thursday', 'of', 'each'), 12),\n",
" (('monthly', 'business', 'meeting', 'on', 'the', 'third', 'wednesday'), 12),\n",
" ((',', '42-09', '28th', 'street', ',', 'long', 'island'), 12),\n",
" ((',', 'unless', 'otherwise', 'ordered', 'by', 'the', 'commission'), 12),\n",
" (('center', ',', '42-09', '28th', 'street', ',', 'long'), 12),\n",
" (('lease', 'for', 'the', 'city', 'of', 'new', 'york'), 12),\n",
" ((',', '6th', 'floor', ',', 'hearing', 'room', '``'), 12),\n",
" (('in', 'january', ',', 'february', ',', 'march', ','), 12),\n",
" (('borough', 'of', 'manhattan', ',', 'in', 'the', 'matter'), 12),\n",
" (('p.m.', 'and', 'at', 'the', 'call', 'of', 'the'), 12),\n",
" (('on', 'tuesdays', ',', 'commencing', '10:00', 'a.m.', ','), 12),\n",
" ((\"''\", 'on', 'tuesdays', 'at', '10:00', 'a.m.', 'review'), 12),\n",
" (('floor', ',', 'and', 'other', 'days', ',', 'times'), 12),\n",
" (('times', 'and', 'agendas', ',', 'please', 'visit', 'our'), 12),\n",
" (('9th', 'floor', 'of', '40', 'rector', 'street', '.'), 12),\n",
" (('10:30', 'a.m.', 'board', 'of', 'revision', 'of', 'awards'), 12),\n",
" (('warranted', '.', 'landmarks', 'preservation', 'commission', 'meets', 'in'),\n",
" 12),\n",
" (('and', 'agendas', ',', 'please', 'visit', 'our', 'website'), 12),\n",
" (('ny', '10007', ',', 'twice', 'monthly', 'on', 'wednesday'), 12),\n",
" (('annual', 'meeting', 'held', 'on', 'fourth', 'monday', 'in'), 12),\n",
" (('the', 'proposed', 'revocable', 'consent', 'is', 'for', 'a'), 12),\n",
" ((',', 'ny', '10007', 'at', '9:15', 'a.m.', 'once'), 12),\n",
" (('for', 'the', 'last', 'wednesday', 'of', 'each', 'month'), 12),\n",
" (('a.m.', 'board', 'of', 'revision', 'of', 'awards', 'meets'), 12),\n",
" (('for', 'compensation', 'payable', 'to', 'the', 'city', 'according'), 12),\n",
" (('1:30', 'p.m.', 'contract', 'awards', 'public', 'hearing', 'meets'), 12),\n",
" (('the', 'hearing', 'room', ',', 'municipal', 'building', ','), 12),\n",
" (('floor', ',', 'manhattan', ',', 'monthly', 'on', 'tuesdays'), 12),\n",
" ((',', 'n.y.', '10004', '.', 'commission', 'on', 'human'), 12),\n",
" (('at', '8:00', 'a.m', '.', 'in', 'rem', 'foreclosure'), 12),\n",
" (('meeting',\n",
" 'schedule',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nyc.gov/designcommission',\n",
" 'or'),\n",
" 12),\n",
" (('charter', 'twice', 'a', 'month', 'in', 'councilman', \"'s\"), 12),\n",
" ((',', 'february', ',', 'march', ',', 'april', ','), 12),\n",
" (('on', 'mondays', 'preceding', 'a', 'tuesday', 'public', 'hearing'), 12),\n",
" (('for', 'changes', 'in', 'the', 'schedule', ',', 'or'), 12),\n",
" (('meets', 'at', '100', 'church', 'street', ',', '12th'), 12),\n",
" (('awards', 'public', 'hearing', 'meets', 'in', 'spector', 'hall'), 12),\n",
" (('third', 'wednesday', ',', 'of', 'each', 'month', 'at'), 12),\n",
" (('10:00', 'a.m.', 'review', 'sessions', 'begin', 'at', '9:30'), 12),\n",
" (('9th', 'floor', '.', 'tax', 'commission', 'meets', 'in'), 12),\n",
" (('contact', '(', '212', ')', '306-6088', '.', 'parole'), 12),\n",
" (('in', 'room', '530', ',', 'municipal', 'building', ','), 12),\n",
" (('at', '10:00', 'a.m.', ',', 'quarterly', 'or', 'at'), 12),\n",
" (('the', 'third', 'thursday', 'of', 'each', 'month', ','), 12),\n",
" (('a.m.', ',', 'unless', 'otherwise', 'noticed', 'by', 'the'), 12),\n",
" (('needed', 'in', 'room', '2203', ',', '2', 'washington'), 12),\n",
" (('unless', 'otherwise', 'noted', ')', '.', 'any', 'changes'), 12),\n",
" (('environmental', 'control', 'board', 'meets', 'at', '100', 'church'), 12),\n",
" (('board', \"'s\", 'offices', ',', 'at', '40', 'rector'), 12),\n",
" (('will', 'hold', 'hearings', 'as', 'needed', 'in', 'room'), 12),\n",
" ((',', 'at', '10:00', 'a.m.', ',', 'quarterly', 'or'), 12),\n",
" (('40', 'rector', 'street', '.', 'for', 'changes', 'in'), 12),\n",
" (('.', 'manhattan', ',', 'monthly', 'on', 'wednesdays', ','), 12),\n",
" (('10013', ',', 'on', 'thursday', ',', 'at', '10:30'), 12),\n",
" (('times', 'and', 'location', 'as', 'warranted', '.', 'landmarks'), 12),\n",
" (('of', 'the', 'chairman', '.', 'board', 'of', 'health'), 12),\n",
" (('ny', '10004', ',', 'on', 'tuesday', ',', 'at'), 12),\n",
" (('at', '40', 'rector', 'street', ',', '6th', 'floor'), 12),\n",
" (('1', 'centre', 'street', 'in', 'manhattan', 'on', 'approximately'), 12),\n",
" (('room', '936', ',', 'municipal', 'building', ',', 'manhattan'), 12),\n",
" (('www.nyc.gov/landmarks',\n",
" '.',\n",
" 'employees',\n",
" \"'\",\n",
" 'retirement',\n",
" 'system',\n",
" 'meets'),\n",
" 12),\n",
" ((',', 'new', 'york', ',', 'ny', '10006', '.'), 12),\n",
" (('york', 'city', 'housing', 'authority', 'are', 'scheduled', 'for'), 12),\n",
" (('.', 'real', 'property', 'acquisition', 'and', 'disposition', 'meets'), 12),\n",
" (('review', 'sessions', 'begin', 'at', '9:30', 'a.m.', 'and'), 12),\n",
" (('.', 'in', 'rem', 'foreclosure', 'release', 'board', 'meets'), 12),\n",
" (('york', ',', 'ny', '10007', '.', 'for', 'meeting'), 12),\n",
" (('councilman', \"'s\", 'chamber', ',', 'city', 'hall', ','), 12),\n",
" (('10004', '.', 'commission', 'on', 'human', 'rights', 'meets'), 12),\n",
" ((',', 'weekly', ',', 'on', 'thursday', ',', 'commencing'), 12),\n",
" (('or', 'call', '212-788-3071', '.', 'department', 'of', 'education'), 12),\n",
" (('ordered', 'by', 'the', 'commission', '.', 'city', 'council'), 12),\n",
" (('method', 'of', 'extension', 'the', 'agency', 'intends', 'to'), 12),\n",
" (('(', 'except', 'august', ')', 'at', '10:00', 'a.m.'), 12),\n",
" (('housing', 'authority', 'board', 'meetings', 'of', 'the', 'new'), 12),\n",
" (('at', '1:30', 'p.m.', 'contract', 'awards', 'public', 'hearing'), 12),\n",
" (('floor', ',', '335', 'adams', 'street', ',', 'brooklyn'), 12),\n",
" (('the', 'application', 'desk', 'at', '(', '212', ')'), 12),\n",
" (('10007', 'at', '9:15', 'a.m.', 'once', 'a', 'month'), 12),\n",
" (('new', 'york', ',', 'ny', '10007', '.', 'for'), 12),\n",
" (('10007', ',', 'each', 'month', 'at', 'the', 'call'), 12),\n",
" (('citywide', 'personnel', 'services', 'will', 'hold', 'hearings', 'as'), 12),\n",
" (('9:30', 'a.m.', 'and', 'are', 'customarily', 'held', 'on'), 12),\n",
" ((\"'\", 'retirement', 'system', 'meets', 'in', 'the', 'boardroom'), 12),\n",
" (('quarterly', 'or', 'at', 'the', 'call', 'of', 'the'), 12),\n",
" (('tuesday', 'of', 'july', 'at', '10:00', 'a.m.', 'board'), 12),\n",
" (('.', 'employees', \"'\", 'retirement', 'system', 'meets', 'in'), 12),\n",
" (('.', 'design', 'commission', 'meets', 'at', 'city', 'hall'), 12),\n",
" (('june', ',', 'september', ',', 'october', ',', 'november'), 12),\n",
" ((',', 'on', 'fourth', 'monday', 'in', 'january', ','), 12),\n",
" (('40', 'rector', 'street', ',', 'new', 'york', ','), 12),\n",
" (('250', 'broadway', ',', 'new', 'york', ',', 'ny'), 12),\n",
" (('and', 'appeals', 'meets', 'at', '40', 'rector', 'street'), 12),\n",
" (('meets', 'by', 'charter', 'twice', 'a', 'month', 'in'), 12),\n",
" (('n.y.', '10004', '.', 'commission', 'on', 'human', 'rights'), 12),\n",
" ((',', 'each', 'month', 'at', 'the', 'call', 'of'), 12),\n",
" (('for',\n",
" 'meeting',\n",
" 'schedule',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nyc.gov/designcommission'),\n",
" 12),\n",
" (('and', 'december', '.', 'annual', 'meeting', 'held', 'on'), 12),\n",
" ((',', 'april', ',', 'june', ',', 'september', ','), 12),\n",
" (('of', 'the', 'commissioner', '.', 'environmental', 'control', 'board'), 12),\n",
" (('and', 'provides', 'among', 'other', 'terms', 'and', 'conditions'), 12),\n",
" (('meeting', 'on', 'the', 'third', 'wednesday', ',', 'of'), 12),\n",
" (('on', 'the', 'second', 'wednesday', 'of', 'each', 'month'), 12),\n",
" (('time', 'before', 'the', 'meeting', '.', 'for', 'additional'), 12),\n",
" (('contractor', 'has', 'been', 'selected', 'by', 'means', 'of'), 12),\n",
" (('of', 'each', 'month', ',', 'at', 'the', 'call'), 12),\n",
" (('floor', ',', 'manhattan', ',', 'weekly', ',', 'on'), 12),\n",
" (('10004', ',', 'on', 'tuesday', ',', 'at', '1:30'), 12),\n",
" (('acquisition', 'and', 'disposition', 'meets', 'in', 'spector', 'hall'), 12),\n",
" (('call', 'of', 'the', 'chairman', '.', 'housing', 'authority'), 12),\n",
" (('month', 'at', 'the', 'call', 'of', 'the', 'chairman'), 12),\n",
" (('at', '10:00', 'a.m.', ',', '22', 'reade', 'street'), 12),\n",
" (('york', ',', 'ny', '10004', ',', 'on', 'tuesday'), 12),\n",
" (('of', 'each', 'month', ',', 'at', '8:00', 'a.m'), 12),\n",
" (('2', 'washington', 'street', ',', 'new', 'york', ','), 12),\n",
" (('conference', 'room', ',', 'borough', 'of', 'manhattan', ','), 12),\n",
" (('held', 'on', 'fourth', 'monday', 'in', 'may', '.'), 12),\n",
" (('hearing', 'room', ',', 'municipal', 'building', ',', '9th'), 12),\n",
" ((',', 'times', 'and', 'agendas', ',', 'please', 'visit'), 12),\n",
" (('other', 'terms', 'and', 'conditions', 'for', 'compensation', 'payable'),\n",
" 12),\n",
" (('of', 'the', 'chairman', '.', 'board', 'of', 'higher'), 12),\n",
" (('visit',\n",
" 'nyc.gov/designcommission',\n",
" 'or',\n",
" 'call',\n",
" '212-788-3071',\n",
" '.',\n",
" 'department'),\n",
" 12),\n",
" (('at', 'city', 'hall', ',', 'third', 'floor', ','), 12),\n",
" (('.', 'city', 'council', 'meets', 'by', 'charter', 'twice'), 12),\n",
" ((',', 'manhattan', ',', 'bi-weekly', ',', 'on', 'wednesdays'), 12),\n",
" (('twice', 'a', 'month', 'in', 'councilman', \"'s\", 'chamber'), 12),\n",
" (('york', ',', 'ny', '10007', '(', 'unless', 'otherwise'), 12),\n",
" (('extension', 'the', 'agency', 'intends', 'to', 'utilize', ':'), 12),\n",
" (('dates', ',', 'times', 'and', 'agendas', ',', 'please'), 12),\n",
" (('of', 'the', 'president', '.', 'manhattan', ',', 'monthly'), 12),\n",
" (('each', 'month', 'at', 'the', 'call', 'of', 'the'), 12),\n",
" (('the', 'chairman', '.', 'health', 'insurance', 'board', 'meets'), 12),\n",
" (('authority', 'are', 'scheduled', 'for', 'the', 'last', 'wednesday'), 12),\n",
" (('the', '9th', 'floor', 'of', '40', 'rector', 'street'), 12),\n",
" (('.', 'board', 'of', 'health', 'meets', 'at', 'gotham'), 12),\n",
" (('at', '10:00', 'a.m.', ',', 'unless', 'otherwise', 'ordered'), 12),\n",
" (('or', 'additonal', 'information', ',', 'please', 'call', 'the'), 12),\n",
" (('commission', 'meets', 'in', 'spector', 'hall', ',', '22'), 12),\n",
" (('business', 'meeting', 'on', 'the', 'third', 'wednesday', ','), 12),\n",
" (('health', 'meets', 'at', 'gotham', 'center', ',', '42-09'), 12),\n",
" (('hearing', 'room', '``', 'e', \"''\", 'on', 'tuesdays'), 12),\n",
" (('unless', 'otherwise', 'noticed', 'by', 'the', 'commission', '.'), 12),\n",
" (('commission', \"'s\", 'central', 'office', ',', '40', 'rector'), 12),\n",
" ((',', 'manhattan', ',', 'monthly', 'on', 'tuesdays', ','), 12),\n",
" (('on', 'thursday', ',', 'at', '10:30', 'a.m.', 'board'), 12),\n",
" (('rector', 'street', ',', '9th', 'floor', '.', 'tax'), 12),\n",
" (('as', 'warranted', '.', 'landmarks', 'preservation', 'commission', 'meets'),\n",
" 12),\n",
" (('ny',\n",
" '10006',\n",
" '.',\n",
" 'visit',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/ccrb/html/meeting.html'),\n",
" 12),\n",
" (('in', 'the', 'hearing', 'room', ',', 'municipal', 'building'), 12),\n",
" ((',', '7th', 'floor', ',', 'new', 'york', ','), 12),\n",
" (('ny', '10006', ',', 'on', 'the', 'fourth', 'wednesday'), 12),\n",
" (('july', 'at', '10:00', 'a.m.', 'board', 'of', 'elections'), 12),\n",
" (('landmarks', 'preservation', 'commission', 'meets', 'in', 'the', 'hearing'),\n",
" 12),\n",
" (('the', 'chairman', '.', 'board', 'of', 'standards', 'and'), 12),\n",
" (('standards', 'and', 'appeals', 'meets', 'at', '40', 'rector'), 12),\n",
" (('at', '10:30', 'a.m.', 'board', 'of', 'revision', 'of'), 12),\n",
" (('of', 'manhattan', ',', 'in', 'the', 'matter', 'of'), 12),\n",
" (('in', 'manhattan', 'on', 'approximately', 'three', 'tuesday', \"'s\"), 12),\n",
" (('sessions', 'begin', 'at', '9:30', 'a.m.', 'and', 'are'), 12),\n",
" (('.', 'annual', 'meeting', 'held', 'on', 'fourth', 'monday'), 12),\n",
" (('agency', 'intends', 'to', 'utilize', ':', 'request', 'for'), 12),\n",
" (('consult', 'the', 'bulletin', 'board', 'at', 'the', 'board'), 12),\n",
" ((',', 'october', ',', 'november', 'and', 'december', '.'), 12),\n",
" (('reasonable', 'accommodation', 'in', 'order', 'to', 'participate', 'in'),\n",
" 12),\n",
" (('are', 'customarily', 'held', 'on', 'mondays', 'preceding', 'a'), 12),\n",
" (('north', ',', '1', 'centre', 'street', 'in', 'manhattan'), 12),\n",
" (('february', ',', 'march', ',', 'april', ',', 'june'), 12),\n",
" (('march', ',', 'april', ',', 'june', ',', 'september'), 12),\n",
" (('a.m.', ',', 'unless', 'otherwise', 'ordered', 'by', 'the'), 12),\n",
" (('on', 'tuesday', ',', 'at', '1:30', 'p.m.', 'and'), 12),\n",
" ((',', 'on', 'the', 'fourth', 'wednesday', 'of', 'each'), 12),\n",
" ((',', '1', 'centre', 'street', 'in', 'manhattan', 'on'), 12),\n",
" (('conference', 'room', 'on', 'the', '9th', 'floor', 'of'), 12),\n",
" (('three', 'tuesday', \"'s\", 'each', 'month', ',', 'commencing'), 12),\n",
" (('committee', 'meets', 'in', 'spector', 'hall', ',', '22'), 12),\n",
" ((',', 'n.y.', '11101', ',', 'at', '10:00', 'a.m.'), 12),\n",
" (('the', 'call', 'of', 'the', 'commissioner', '.', 'environmental'), 12),\n",
" (('the', 'schedule', ',', 'or', 'additonal', 'information', ','), 12),\n",
" (('in', 'the', 'commission', \"'s\", 'central', 'office', ','), 12),\n",
" (('of', '40', 'rector', 'street', '.', 'for', 'changes'), 12),\n",
" (('held', 'on', 'the', 'first', 'tuesday', 'of', 'july'), 12),\n",
" (('rector', 'street', ',', '6th', 'floor', ',', 'hearing'), 12),\n",
" (('40', 'rector', 'street', ',', '9th', 'floor', '.'), 12),\n",
" (('of', 'the', 'chairman', '.', 'health', 'insurance', 'board'), 12),\n",
" (('by', 'the', 'commission', '.', 'for', 'current', 'meeting'), 12),\n",
" (('employees', \"'\", 'retirement', 'system', 'meets', 'in', 'the'), 12),\n",
" (('in', 'councilman', \"'s\", 'chamber', ',', 'city', 'hall'), 12),\n",
" (('and', 'conditions', 'for', 'compensation', 'payable', 'to', 'the'), 12),\n",
" ((',',\n",
" 'please',\n",
" 'visit',\n",
" 'nyc.gov/designcommission',\n",
" 'or',\n",
" 'call',\n",
" '212-788-3071'),\n",
" 12),\n",
" (('street', ',', 'long', 'island', 'city', ',', 'n.y.'), 12),\n",
" (('10007', ',', 'at', 'call', 'of', 'the', 'chairman'), 12),\n",
" (('10:00', 'a.m.', ',', 'quarterly', 'or', 'at', 'the'), 12),\n",
" ((',', 'september', ',', 'october', ',', 'november', 'and'), 12),\n",
" ((',', 'manhattan', ',', 'weekly', ',', 'on', 'thursday'), 12),\n",
" (('agendas', ',', 'please', 'visit', 'our', 'website', 'at'), 12),\n",
" (('or', 'at', 'the', 'call', 'of', 'the', 'chairman'), 12),\n",
" (('a.m.', 'and', 'are', 'customarily', 'held', 'on', 'mondays'), 12),\n",
" (('at', '9:30', 'a.m.', 'and', 'are', 'customarily', 'held'), 12),\n",
" ((',', '22nd', 'floor', ',', '335', 'adams', 'street'), 12),\n",
" (('meets', 'at', '10:00', 'a.m.', 'on', 'the', 'second'), 12),\n",
" (('a.m.', ',', 'on', 'the', 'third', 'thursday', 'of'), 12),\n",
" (('system', 'meets', 'in', 'the', 'boardroom', ',', '22nd'), 12),\n",
" (('may', '.', 'citywide', 'administrative', 'services', 'division', 'of'),\n",
" 12),\n",
" (('the', 'hall', 'of', 'the', 'board', 'for', 'a'), 12),\n",
" (('housing', 'authority', 'are', 'scheduled', 'for', 'the', 'last'), 12),\n",
" (('9th', 'floor', 'north', ',', '1', 'centre', 'street'), 12),\n",
" (('retirement', 'system', 'meets', 'in', 'the', 'boardroom', ','), 12),\n",
" (('.', 'department', 'of', 'education', 'meets', 'in', 'the'), 12),\n",
" (('of', 'standards', 'and', 'appeals', 'meets', 'at', '40'), 12),\n",
" (('commencing', 'at', '9:30', 'a.m.', ',', 'unless', 'otherwise'), 12),\n",
" (('payable', 'to', 'the', 'city', 'according', 'to', 'the'), 12),\n",
" ((\"'s\", 'chamber', ',', 'city', 'hall', ',', 'manhattan'), 12),\n",
" (('elections', '32', 'broadway', ',', '7th', 'floor', ','), 12),\n",
" (('and', 'disposition', 'meets', 'in', 'spector', 'hall', ','), 12),\n",
" (('meets', 'at', 'gotham', 'center', ',', '42-09', '28th'), 12),\n",
" (('release', 'board', 'meets', 'in', 'spector', 'hall', ','), 12),\n",
" (('bulletin', 'board', 'at', 'the', 'board', \"'s\", 'offices'), 12),\n",
" (('a.m.', 'on', 'the', 'second', 'wednesday', 'of', 'each'), 12),\n",
" ((',', 'please', 'visit', 'our', 'website', 'at', 'www.nyc.gov/landmarks'),\n",
" 12),\n",
" ...]"
]
}
],
"prompt_number": 31
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#We can keep going!\n",
"corpus8grams = list(ngrams(lowerTokens,8))\n",
"corpus8gramFreqs = nltk.FreqDist(corpus8grams)\n",
"corpus8gramFreqs.most_common()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 32,
"text": [
"[(('personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':'),\n",
" 264),\n",
" (('--', '--', '--', '--', '--', '--', '--', '--'), 174),\n",
" (('headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within'),\n",
" 133),\n",
" (('of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency'),\n",
" 129),\n",
" (('and', 'operate', 'an', 'unenclosed', 'sidewalk', 'caf', 'for', 'a'), 112),\n",
" ((',', 'and', 'operate', 'an', 'unenclosed', 'sidewalk', 'caf', 'for'), 112),\n",
" (('maintain', ',', 'and', 'operate', 'an', 'unenclosed', 'sidewalk', 'caf'),\n",
" 112),\n",
" (('an', 'unenclosed', 'sidewalk', 'caf', 'for', 'a', 'term', 'of'), 112),\n",
" (('operate', 'an', 'unenclosed', 'sidewalk', 'caf', 'for', 'a', 'term'), 112),\n",
" (('of', 'solicitation', 'the', 'agency', 'intends', 'to', 'utilize', ':'),\n",
" 103),\n",
" (('method',\n",
" 'of',\n",
" 'solicitation',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize'),\n",
" 103),\n",
" (('sidewalk', 'caf', 'for', 'a', 'term', 'of', 'four', 'years'), 102),\n",
" (('caf', 'for', 'a', 'term', 'of', 'four', 'years', '.'), 101),\n",
" (('unenclosed', 'sidewalk', 'caf', 'for', 'a', 'term', 'of', 'four'), 101),\n",
" (('for', 'a', 'term', 'of', 'four', 'years', '.', ')'), 101),\n",
" (('in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" 'none'),\n",
" 93),\n",
" (('agency',\n",
" ':',\n",
" 'none',\n",
" 'headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially'),\n",
" 92),\n",
" (('none',\n",
" 'headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles'),\n",
" 92),\n",
" ((':',\n",
" 'none',\n",
" 'headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar'),\n",
" 92),\n",
" (('titles', 'within', 'agency', ':', 'none', 'headcount', 'of', 'personnel'),\n",
" 91),\n",
" (('to', 'maintain', ',', 'and', 'operate', 'an', 'unenclosed', 'sidewalk'),\n",
" 91),\n",
" (('similar', 'titles', 'within', 'agency', ':', 'none', 'headcount', 'of'),\n",
" 91),\n",
" (('substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" 'none',\n",
" 'headcount'),\n",
" 91),\n",
" (('within', 'agency', ':', 'none', 'headcount', 'of', 'personnel', 'in'), 91),\n",
" (('in', 'the', 'borough', 'of', 'manhattan', '(', 'to', 'continue'), 87),\n",
" (('the', 'borough', 'of', 'manhattan', '(', 'to', 'continue', 'to'), 86),\n",
" (('(', 'to', 'continue', 'to', 'maintain', ',', 'and', 'operate'), 86),\n",
" (('to', 'continue', 'to', 'maintain', ',', 'and', 'operate', 'an'), 86),\n",
" (('in', 'substantially', 'similar', 'titles', 'within', 'agency', ':', '0'),\n",
" 83),\n",
" (('continue', 'to', 'maintain', ',', 'and', 'operate', 'an', 'unenclosed'),\n",
" 82),\n",
" (('in', 'spector', 'hall', ',', '22', 'reade', 'street', ','), 81),\n",
" (('borough', 'of', 'manhattan', '(', 'to', 'continue', 'to', 'maintain'), 74),\n",
" (('manhattan', '(', 'to', 'continue', 'to', 'maintain', ',', 'and'), 74),\n",
" (('of', 'manhattan', '(', 'to', 'continue', 'to', 'maintain', ','), 74),\n",
" (('notice', 'is', 'hereby', 'given', 'that', 'the', 'mayor', 'will'), 63),\n",
" (('contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'that',\n",
" 'is',\n",
" 'published',\n",
" 'pursuant'),\n",
" 63),\n",
" (('annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'notice',\n",
" 'is',\n",
" 'hereby'),\n",
" 63),\n",
" (('to', 'new', 'york', 'city', 'charter', '312', '(', 'a'), 63),\n",
" (('(', 's', ')', 'not', 'included', 'in', 'the', 'fy'), 63),\n",
" (('annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'that',\n",
" 'is',\n",
" 'published'),\n",
" 63),\n",
" (('pursuant', 'to', 'new', 'york', 'city', 'charter', '312', '('), 63),\n",
" (('that', 'is', 'published', 'pursuant', 'to', 'new', 'york', 'city'), 63),\n",
" (('city', 'charter', '312', '(', 'a', ')', ':', 'agency'), 63),\n",
" (('schedule', 'notice', 'is', 'hereby', 'given', 'that', 'the', 'mayor'), 63),\n",
" (('published', 'pursuant', 'to', 'new', 'york', 'city', 'charter', '312'),\n",
" 63),\n",
" (('schedule', 'that', 'is', 'published', 'pursuant', 'to', 'new', 'york'),\n",
" 63),\n",
" (('contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given'),\n",
" 63),\n",
" (('york', 'city', 'charter', '312', '(', 'a', ')', ':'), 63),\n",
" (('and', 'schedule', 'notice', 'is', 'hereby', 'given', 'that', 'the'), 63),\n",
" (('plan', 'and', 'schedule', 'notice', 'is', 'hereby', 'given', 'that'), 63),\n",
" (('new', 'york', 'city', 'charter', '312', '(', 'a', ')'), 63),\n",
" (('is', 'published', 'pursuant', 'to', 'new', 'york', 'city', 'charter'), 63),\n",
" (('is', 'hereby', 'given', 'that', 'the', 'mayor', 'will', 'be'), 63),\n",
" (('charter', '312', '(', 'a', ')', ':', 'agency', ':'), 63),\n",
" (('plan', 'and', 'schedule', 'that', 'is', 'published', 'pursuant', 'to'),\n",
" 63),\n",
" (('and', 'schedule', 'that', 'is', 'published', 'pursuant', 'to', 'new'), 63),\n",
" (('in', 'fy', '2015', 'annual', 'contracting', 'plan', 'and', 'schedule'),\n",
" 62),\n",
" (('2015', 'annual', 'contracting', 'plan', 'and', 'schedule', 'that', 'is'),\n",
" 62),\n",
" ((')', 'not', 'included', 'in', 'the', 'fy', '2015', 'annual'), 62),\n",
" (('included', 'in', 'the', 'fy', '2015', 'annual', 'contracting', 'plan'),\n",
" 62),\n",
" (('the', 'fy', '2015', 'annual', 'contracting', 'plan', 'and', 'schedule'),\n",
" 62),\n",
" (('fy', '2015', 'annual', 'contracting', 'plan', 'and', 'schedule', 'that'),\n",
" 62),\n",
" (('included', 'in', 'fy', '2015', 'annual', 'contracting', 'plan', 'and'),\n",
" 62),\n",
" (('s', ')', 'not', 'included', 'in', 'the', 'fy', '2015'), 62),\n",
" (('fy', '2015', 'annual', 'contracting', 'plan', 'and', 'schedule', 'notice'),\n",
" 62),\n",
" (('not', 'included', 'in', 'the', 'fy', '2015', 'annual', 'contracting'), 62),\n",
" (('in', 'the', 'fy', '2015', 'annual', 'contracting', 'plan', 'and'), 62),\n",
" (('2015', 'annual', 'contracting', 'plan', 'and', 'schedule', 'notice', 'is'),\n",
" 62),\n",
" (('not', 'included', 'in', 'fy', '2015', 'annual', 'contracting', 'plan'),\n",
" 62),\n",
" ((')', 'not', 'included', 'in', 'fy', '2015', 'annual', 'contracting'), 62),\n",
" (('(', 's', ')', 'not', 'included', 'in', 'fy', '2015'), 62),\n",
" (('s', ')', 'not', 'included', 'in', 'fy', '2015', 'annual'), 62),\n",
" (('meets', 'in', 'spector', 'hall', ',', '22', 'reade', 'street'), 60),\n",
" ((',', '22', 'reade', 'street', ',', 'main', 'floor', ','), 50),\n",
" (('hall', ',', '22', 'reade', 'street', ',', 'main', 'floor'), 50),\n",
" (('spector', 'hall', ',', '22', 'reade', 'street', ',', 'main'), 50),\n",
" (('of', 'environmental', 'remediation', '(', 'oer', ')', 'has', 'received'),\n",
" 49),\n",
" (('the', 'agency', 'intends', 'to', 'utilize', ':', 'task', 'order'), 49),\n",
" (('has', 'received', 'an', 'nyc', 'voluntary', 'cleanup', 'program', '('),\n",
" 49),\n",
" (('nyc', 'voluntary', 'cleanup', 'program', '(', 'vcp', ')', 'application'),\n",
" 49),\n",
" (('an', 'nyc', 'voluntary', 'cleanup', 'program', '(', 'vcp', ')'), 49),\n",
" ((':',\n",
" 'task',\n",
" 'order',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles'),\n",
" 49),\n",
" (('new', 'york', 'city', 'office', 'of', 'environmental', 'remediation', '('),\n",
" 49),\n",
" (('agency', 'intends', 'to', 'utilize', ':', 'task', 'order', 'personnel'),\n",
" 49),\n",
" (('order',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency'),\n",
" 49),\n",
" (('environmental', 'remediation', '(', 'oer', ')', 'has', 'received', 'an'),\n",
" 49),\n",
" (('to', 'utilize', ':', 'task', 'order', 'personnel', 'in', 'substantially'),\n",
" 49),\n",
" (('received', 'an', 'nyc', 'voluntary', 'cleanup', 'program', '(', 'vcp'),\n",
" 49),\n",
" (('(', 'oer', ')', 'has', 'received', 'an', 'nyc', 'voluntary'), 49),\n",
" (('city', 'office', 'of', 'environmental', 'remediation', '(', 'oer', ')'),\n",
" 49),\n",
" (('intends', 'to', 'utilize', ':', 'task', 'order', 'personnel', 'in'), 49),\n",
" (('the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'office',\n",
" 'of',\n",
" 'environmental',\n",
" 'remediation'),\n",
" 49),\n",
" (('office', 'of', 'environmental', 'remediation', '(', 'oer', ')', 'has'),\n",
" 49),\n",
" (('york', 'city', 'office', 'of', 'environmental', 'remediation', '(', 'oer'),\n",
" 49),\n",
" (('solicitation', 'the', 'agency', 'intends', 'to', 'utilize', ':', 'task'),\n",
" 49),\n",
" (('utilize',\n",
" ':',\n",
" 'task',\n",
" 'order',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar'),\n",
" 49),\n",
" (('remediation', '(', 'oer', ')', 'has', 'received', 'an', 'nyc'), 49),\n",
" ((')', 'has', 'received', 'an', 'nyc', 'voluntary', 'cleanup', 'program'),\n",
" 49),\n",
" (('oer', ')', 'has', 'received', 'an', 'nyc', 'voluntary', 'cleanup'), 49),\n",
" (('task',\n",
" 'order',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within'),\n",
" 49),\n",
" (('other', 'days', ',', 'times', 'and', 'location', 'as', 'warranted'), 48),\n",
" (('days', ',', 'times', 'and', 'location', 'as', 'warranted', '.'), 48),\n",
" (('voluntary', 'cleanup', 'program', '(', 'vcp', ')', 'application', 'from'),\n",
" 48),\n",
" (('and', 'other', 'days', ',', 'times', 'and', 'location', 'as'), 48),\n",
" ((',', 'and', 'other', 'days', ',', 'times', 'and', 'location'), 48),\n",
" (('will', 'be', 'issuing', 'the', 'following', 'solicitation', '(', 's'), 47),\n",
" (('of', 'intent', 'to', 'issue', 'new', 'solicitation', '(', 's'), 47),\n",
" (('given', 'that', 'the', 'mayor', 'will', 'be', 'issuing', 'the'), 47),\n",
" (('issue', 'new', 'solicitation', '(', 's', ')', 'not', 'included'), 47),\n",
" (('the', 'following', 'solicitation', '(', 's', ')', 'not', 'included'), 47),\n",
" (('following', 'solicitation', '(', 's', ')', 'not', 'included', 'in'), 47),\n",
" (('mayor', 'will', 'be', 'issuing', 'the', 'following', 'solicitation', '('),\n",
" 47),\n",
" (('to', 'issue', 'new', 'solicitation', '(', 's', ')', 'not'), 47),\n",
" (('notice', 'of', 'intent', 'to', 'issue', 'new', 'solicitation', '('), 47),\n",
" (('intent', 'to', 'issue', 'new', 'solicitation', '(', 's', ')'), 47),\n",
" (('be', 'issuing', 'the', 'following', 'solicitation', '(', 's', ')'), 47),\n",
" (('the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'issuing',\n",
" 'the',\n",
" 'following',\n",
" 'solicitation'),\n",
" 47),\n",
" (('solicitation', '(', 's', ')', 'not', 'included', 'in', 'fy'), 47),\n",
" (('issuing', 'the', 'following', 'solicitation', '(', 's', ')', 'not'), 47),\n",
" (('that', 'the', 'mayor', 'will', 'be', 'issuing', 'the', 'following'), 47),\n",
" (('new', 'solicitation', '(', 's', ')', 'not', 'included', 'in'), 47),\n",
" (('solicitation', '(', 's', ')', 'not', 'included', 'in', 'the'), 47),\n",
" (('hereby', 'given', 'that', 'the', 'mayor', 'will', 'be', 'issuing'), 47),\n",
" (('is', 'assigned', 'to', 'this', 'project', '.', 'the', 'new'), 45),\n",
" (('.', 'the', 'new', 'york', 'city', 'office', 'of', 'environmental'), 45),\n",
" (('substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'agency'),\n",
" 45),\n",
" (('similar', 'titles', 'within', 'agency', ':', '0', 'agency', ':'), 45),\n",
" (('assigned', 'to', 'this', 'project', '.', 'the', 'new', 'york'), 45),\n",
" (('project', '.', 'the', 'new', 'york', 'city', 'office', 'of'), 45),\n",
" (('this', 'project', '.', 'the', 'new', 'york', 'city', 'office'), 45),\n",
" (('to', 'this', 'project', '.', 'the', 'new', 'york', 'city'), 45),\n",
" (('(', 'a', ')', ':', 'agency', ':', 'department', 'of'), 44),\n",
" (('312', '(', 'a', ')', ':', 'agency', ':', 'department'), 44),\n",
" (('ave', 'in', 'the', 'borough', 'of', 'manhattan', '(', 'to'), 42),\n",
" (('following',\n",
" 'matters',\n",
" 'have',\n",
" 'been',\n",
" 'scheduled',\n",
" 'for',\n",
" 'public',\n",
" 'hearing'),\n",
" 36),\n",
" (('is', 'hereby', 'given', 'that', 'the', 'following', 'matters', 'have'),\n",
" 36),\n",
" (('10:00', 'a.m.', ',', 'and', 'other', 'days', ',', 'times'), 36),\n",
" (('commencing', '10:00', 'a.m.', ',', 'and', 'other', 'days', ','), 36),\n",
" ((',', 'commencing', '10:00', 'a.m.', ',', 'and', 'other', 'days'), 36),\n",
" (('public', 'notice', 'is', 'hereby', 'given', 'that', 'the', 'following'),\n",
" 36),\n",
" (('notice', 'is', 'hereby', 'given', 'that', 'the', 'following', 'matters'),\n",
" 36),\n",
" (('hereby', 'given', 'that', 'the', 'following', 'matters', 'have', 'been'),\n",
" 36),\n",
" (('reade', 'street', ',', 'main', 'floor', ',', 'manhattan', ','), 36),\n",
" (('matters', 'have', 'been', 'scheduled', 'for', 'public', 'hearing', 'by'),\n",
" 36),\n",
" (('22', 'reade', 'street', ',', 'main', 'floor', ',', 'manhattan'), 36),\n",
" (('have', 'been', 'scheduled', 'for', 'public', 'hearing', 'by', 'community'),\n",
" 36),\n",
" (('that', 'the', 'following', 'matters', 'have', 'been', 'scheduled', 'for'),\n",
" 36),\n",
" (('the',\n",
" 'following',\n",
" 'matters',\n",
" 'have',\n",
" 'been',\n",
" 'scheduled',\n",
" 'for',\n",
" 'public'),\n",
" 36),\n",
" (('a.m.', ',', 'and', 'other', 'days', ',', 'times', 'and'), 36),\n",
" (('given',\n",
" 'that',\n",
" 'the',\n",
" 'following',\n",
" 'matters',\n",
" 'have',\n",
" 'been',\n",
" 'scheduled'),\n",
" 36),\n",
" (('been',\n",
" 'scheduled',\n",
" 'for',\n",
" 'public',\n",
" 'hearing',\n",
" 'by',\n",
" 'community',\n",
" 'board'),\n",
" 35),\n",
" (('public', 'hearing', 'by', 'community', 'board', ':', 'borough', 'of'), 35),\n",
" (('for', 'public', 'hearing', 'by', 'community', 'board', ':', 'borough'),\n",
" 35),\n",
" (('scheduled', 'for', 'public', 'hearing', 'by', 'community', 'board', ':'),\n",
" 35),\n",
" ((',', '22', 'reade', 'street', ',', 'new', 'york', ','), 33),\n",
" (('nature', 'of', 'services', 'performed', 'under', 'the', 'contract', ':'),\n",
" 32),\n",
" (('spector', 'hall', ',', '22', 'reade', 'street', ',', 'new'), 32),\n",
" (('reason', '(', 's', ')', 'the', 'agency', 'intends', 'to'), 32),\n",
" (('hall', ',', '22', 'reade', 'street', ',', 'new', 'york'), 32),\n",
" (('to', 'the', 'nature', 'of', 'services', 'performed', 'under', 'the'), 31),\n",
" (('sought', 'to', 'the', 'nature', 'of', 'services', 'performed', 'under'),\n",
" 31),\n",
" (('the', 'nature', 'of', 'services', 'performed', 'under', 'the', 'contract'),\n",
" 31),\n",
" (('modifications',\n",
" 'sought',\n",
" 'to',\n",
" 'the',\n",
" 'nature',\n",
" 'of',\n",
" 'services',\n",
" 'performed'),\n",
" 31),\n",
" (('titles', 'within', 'agency', ':', '0', 'agency', ':', 'department'), 30),\n",
" (('individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the'),\n",
" 30),\n",
" (('within', 'agency', ':', '0', 'agency', ':', 'department', 'of'), 30),\n",
" (('in', 'the', 'matter', 'of', 'an', 'application', 'submitted', 'by'), 29),\n",
" (('agency',\n",
" ':',\n",
" 'department',\n",
" 'of',\n",
" 'information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications'),\n",
" 28),\n",
" (('language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the',\n",
" 'mayor',\n",
" \"'s\",\n",
" 'office'),\n",
" 27),\n",
" (('requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the',\n",
" 'mayor'),\n",
" 27),\n",
" (('interpreters', 'should', 'contact', 'the', 'mayor', \"'s\", 'office', 'of'),\n",
" 27),\n",
" (('sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the',\n",
" 'mayor',\n",
" \"'s\"),\n",
" 27),\n",
" ((',', 'at', 'the', 'call', 'of', 'the', 'chairman', '.'), 26),\n",
" (('given', 'that', 'a', 'public', 'hearing', 'will', 'be', 'held'), 26),\n",
" (('st', 'in', 'the', 'borough', 'of', 'manhattan', '(', 'to'), 26),\n",
" (('business', 'days', 'prior', 'to', 'the', 'public', 'hearing', '.'), 26),\n",
" (('notice', 'is', 'hereby', 'given', 'that', 'a', 'public', 'hearing'), 25),\n",
" (('hereby', 'given', 'that', 'a', 'public', 'hearing', 'will', 'be'), 25),\n",
" (('is', 'hereby', 'given', 'that', 'a', 'public', 'hearing', 'will'), 25),\n",
" (('the', 'call', 'of', 'the', 'chairman', '.', 'board', 'of'), 24),\n",
" (('at', 'the', 'call', 'of', 'the', 'chairman', '.', 'board'), 24),\n",
" ((')', 'business', 'days', 'prior', 'to', 'the', 'public', 'hearing'), 23),\n",
" (('department',\n",
" 'of',\n",
" 'information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description',\n",
" 'of'),\n",
" 23),\n",
" (('.', '(', 'preliminary', 'and', 'final', ')', '(', 'cc'), 23),\n",
" (('.', 'start', 'date', 'of', 'the', 'proposed', 'contract', ':'), 23),\n",
" ((':',\n",
" 'department',\n",
" 'of',\n",
" 'information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description'),\n",
" 23),\n",
" (('technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description',\n",
" 'of',\n",
" 'services',\n",
" 'sought',\n",
" ':'),\n",
" 23),\n",
" (('on', 'the', 'following', ':', 'in', 'the', 'matter', 'of'), 23),\n",
" (('of',\n",
" 'information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description',\n",
" 'of',\n",
" 'services'),\n",
" 23),\n",
" (('information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description',\n",
" 'of',\n",
" 'services',\n",
" 'sought'),\n",
" 23),\n",
" (('a', 'public', 'hearing', 'will', 'be', 'held', 'at', 'the'), 22),\n",
" (('services', 'performed', 'under', 'the', 'contract', ':', 'none', 'reason'),\n",
" 22),\n",
" (('municipal', 'building', ',', 'manhattan', ',', 'new', 'york', '10007'),\n",
" 22),\n",
" (('under', 'the', 'contract', ':', 'none', 'reason', '(', 's'), 22),\n",
" ((',', 'municipal', 'building', ',', 'manhattan', ',', 'new', 'york'), 22),\n",
" (('of', 'services', 'performed', 'under', 'the', 'contract', ':', 'none'),\n",
" 22),\n",
" (('for', 'a', 'term', 'of', 'two', 'years', '.', ')'), 22),\n",
" (('the', 'contract', ':', 'none', 'reason', '(', 's', ')'), 22),\n",
" (('contract', ':', 'none', 'reason', '(', 's', ')', 'the'), 22),\n",
" (('caf', 'for', 'a', 'term', 'of', 'two', 'years', '.'), 22),\n",
" (('performed', 'under', 'the', 'contract', ':', 'none', 'reason', '('), 22),\n",
" (('that', 'a', 'public', 'hearing', 'will', 'be', 'held', 'at'), 22),\n",
" (('none', 'reason', '(', 's', ')', 'the', 'agency', 'intends'), 22),\n",
" ((':', 'none', 'reason', '(', 's', ')', 'the', 'agency'), 22),\n",
" ((',', 'manhattan', ',', 'new', 'york', '10007', ',', 'at'), 22),\n",
" (('sidewalk', 'caf', 'for', 'a', 'term', 'of', 'two', 'years'), 22),\n",
" (('building', ',', 'manhattan', ',', 'new', 'york', '10007', ','), 22),\n",
" (('floor', ',', 'new', 'york', ',', 'ny', '10004', ','), 22),\n",
" (('services',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency'),\n",
" 21),\n",
" (('(', '212', ')', '788-7490', ',', 'no', 'later', 'than'), 21),\n",
" (('a.m.', 'on', 'the', 'following', ':', 'in', 'the', 'matter'), 21),\n",
" (('the', 'agency', 'intends', 'to', 'utilize', ':', 'amendment', 'extension'),\n",
" 21),\n",
" (('services', ',', 'public', 'hearings', 'unit', ',', '253', 'broadway'), 21),\n",
" ((',', 'public', 'hearings', 'unit', ',', '253', 'broadway', ','), 21),\n",
" (('street', ',', '9th', 'floor', ',', 'borough', 'of', 'manhattan'), 21),\n",
" (('start',\n",
" 'date',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'renewed/extended',\n",
" 'contract',\n",
" ':'),\n",
" 20),\n",
" (('the', 'matter', 'of', 'a', 'proposed', 'contract', 'between', 'the'), 20),\n",
" (('end',\n",
" 'date',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'renewed/extended',\n",
" 'contract',\n",
" ':'),\n",
" 20),\n",
" (('the', 'agency', 'intends', 'to', 'renew/extend', 'the', 'contract', ':'),\n",
" 20),\n",
" (('utilize', ':', 'amendment', 'extension', 'new', 'start', 'date', 'of'),\n",
" 20),\n",
" (('amendment', 'extension', 'new', 'start', 'date', 'of', 'the', 'proposed'),\n",
" 20),\n",
" (('s', ')', 'the', 'agency', 'intends', 'to', 'renew/extend', 'the'), 20),\n",
" (('in', 'the', 'matter', 'of', 'a', 'proposed', 'contract', 'between'), 20),\n",
" (('new',\n",
" 'start',\n",
" 'date',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'renewed/extended',\n",
" 'contract'),\n",
" 20),\n",
" (('intends', 'to', 'utilize', ':', 'amendment', 'extension', 'new', 'start'),\n",
" 20),\n",
" ((')', 'the', 'agency', 'intends', 'to', 'renew/extend', 'the', 'contract'),\n",
" 20),\n",
" (('agency', 'intends', 'to', 'utilize', ':', 'amendment', 'extension', 'new'),\n",
" 20),\n",
" ((':', 'amendment', 'extension', 'new', 'start', 'date', 'of', 'the'), 20),\n",
" (('to', 'utilize', ':', 'amendment', 'extension', 'new', 'start', 'date'),\n",
" 20),\n",
" (('new',\n",
" 'end',\n",
" 'date',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'renewed/extended',\n",
" 'contract'),\n",
" 20),\n",
" (('(', 's', ')', 'the', 'agency', 'intends', 'to', 'renew/extend'), 20),\n",
" ((',', 'no', 'later', 'than', 'seven', '(', '7', ')'), 19),\n",
" (('of',\n",
" 'renewal/extension',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':'),\n",
" 19),\n",
" ((')', '788-7490', ',', 'no', 'later', 'than', 'seven', '('), 19),\n",
" (('788-7490', ',', 'no', 'later', 'than', 'seven', '(', '7'), 19),\n",
" (('than', 'seven', '(', '7', ')', 'business', 'days', 'prior'), 19),\n",
" (('7', ')', 'business', 'days', 'prior', 'to', 'the', 'public'), 19),\n",
" ((',', 'maintain', ',', 'and', 'operate', 'an', 'unenclosed', 'sidewalk'),\n",
" 19),\n",
" (('of', 'the', 'new', 'york', 'city', 'charter', 'for', 'the'), 19),\n",
" (('no', 'later', 'than', 'seven', '(', '7', ')', 'business'), 19),\n",
" (('administration', 'for', 'children', \"'s\", 'services', ',', 'office', 'of'),\n",
" 19),\n",
" (('unenclosed', 'sidewalk', 'caf', 'for', 'a', 'term', 'of', 'two'), 19),\n",
" (('(', '7', ')', 'business', 'days', 'prior', 'to', 'the'), 19),\n",
" (('later', 'than', 'seven', '(', '7', ')', 'business', 'days'), 19),\n",
" (('method',\n",
" 'of',\n",
" 'renewal/extension',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize'),\n",
" 19),\n",
" (('seven', '(', '7', ')', 'business', 'days', 'prior', 'to'), 19),\n",
" (('212', ')', '788-7490', ',', 'no', 'later', 'than', 'seven'), 19),\n",
" (('of',\n",
" 'services',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within'),\n",
" 19),\n",
" (('contract', 'services', ',', 'public', 'hearings', 'unit', ',', '253'), 18),\n",
" (('197-c', 'and', '201', 'of', 'the', 'new', 'york', 'city'), 18),\n",
" (('.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact'),\n",
" 18),\n",
" ((',', '(', '212', ')', '788-7490', ',', 'no', 'later'), 18),\n",
" (('should', 'contact', 'the', 'mayor', \"'s\", 'office', 'of', 'contract'), 18),\n",
" (('pursuant', 'to', 'sections', '197-c', 'and', '201', 'of', 'the'), 18),\n",
" (('to', 'sections', '197-c', 'and', '201', 'of', 'the', 'new'), 18),\n",
" (('10007', ',', '(', '212', ')', '788-7490', ',', 'no'), 18),\n",
" (('office', 'of', 'contract', 'services', ',', 'public', 'hearings', 'unit'),\n",
" 18),\n",
" (('and', '201', 'of', 'the', 'new', 'york', 'city', 'charter'), 18),\n",
" (('201', 'of', 'the', 'new', 'york', 'city', 'charter', 'for'), 18),\n",
" (('mayor', \"'s\", 'office', 'of', 'contract', 'services', ',', 'public'), 18),\n",
" (('substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'notice'),\n",
" 18),\n",
" ((':', 'department', 'of', 'parks', 'and', 'recreation', 'nature', 'of'), 18),\n",
" ((\"'s\", 'office', 'of', 'contract', 'services', ',', 'public', 'hearings'),\n",
" 18),\n",
" (('contact', 'the', 'mayor', \"'s\", 'office', 'of', 'contract', 'services'),\n",
" 18),\n",
" (('agency', ':', 'department', 'of', 'parks', 'and', 'recreation', 'nature'),\n",
" 18),\n",
" (('the', 'mayor', \"'s\", 'office', 'of', 'contract', 'services', ','), 18),\n",
" (('of', 'contract', 'services', ',', 'public', 'hearings', 'unit', ','), 18),\n",
" ((',', 'borough', 'of', 'brooklyn', '.', 'community', 'board', '#'), 17),\n",
" (('note',\n",
" ':',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should'),\n",
" 17),\n",
" (('22', 'reade', 'street', ',', 'new', 'york', ',', 'ny'), 17),\n",
" (('community',\n",
" 'district',\n",
" '2',\n",
" ',',\n",
" 'manhattan',\n",
" 'certificate',\n",
" 'of',\n",
" 'appropriateness'),\n",
" 17),\n",
" (('sections', '197-c', 'and', '201', 'of', 'the', 'new', 'york'), 17),\n",
" (('installments', 'at', 'the', 'end', 'of', 'each', 'month', '.'), 16),\n",
" (('department',\n",
" 'of',\n",
" 'parks',\n",
" 'and',\n",
" 'recreation',\n",
" 'nature',\n",
" 'of',\n",
" 'services'),\n",
" 16),\n",
" (('contract', '(', 's', ')', 'not', 'included', 'in', 'fy'), 16),\n",
" (('reade', 'street', ',', 'new', 'york', ',', 'n.y.', '10007'), 16),\n",
" (('that', 'the', 'mayor', 'will', 'be', 'entering', 'into', 'the'), 16),\n",
" (('nan', 'notice', 'of', 'intent', 'to', 'issue', 'new', 'solicitation'), 16),\n",
" (('into', 'the', 'following', 'extension', '(', 's', ')', 'of'), 16),\n",
" (('the', 'city', 'of', 'new', 'york', ',', 'as', 'tenant'), 16),\n",
" (('later', 'than', 'five', '(', '5', ')', 'business', 'days'), 16),\n",
" (('hearing', '.', 'tdd', 'users', 'should', 'call', 'verizon', 'relay'), 16),\n",
" (('be', 'entering', 'into', 'the', 'following', 'extension', '(', 's'), 16),\n",
" (('payable', 'in', 'equal', 'monthly', 'installments', 'at', 'the', 'end'),\n",
" 16),\n",
" (('parks', 'and', 'recreation', 'nature', 'of', 'services', 'sought', ':'),\n",
" 16),\n",
" (('the', 'mayor', 'will', 'be', 'entering', 'into', 'the', 'following'), 16),\n",
" (('city', 'of', 'new', 'york', ',', 'as', 'tenant', ','), 16),\n",
" (('(', 'to', 'continue', 'to', ',', 'maintain', ',', 'and'), 16),\n",
" (('to', 'extend', 'contract', '(', 's', ')', 'not', 'included'), 16),\n",
" (('following', 'extension', '(', 's', ')', 'of', '(', 'a'), 16),\n",
" (('to', 'the', 'public', 'hearing', '.', 'tdd', 'users', 'should'), 16),\n",
" (('public', 'hearing', '.', 'tdd', 'users', 'should', 'call', 'verizon'), 16),\n",
" (('s', ')', 'of', '(', 'a', ')', 'contract', '('), 16),\n",
" (('extension', '(', 's', ')', 'of', '(', 'a', ')'), 16),\n",
" (('extend', 'contract', '(', 's', ')', 'not', 'included', 'in'), 16),\n",
" (('monthly', 'installments', 'at', 'the', 'end', 'of', 'each', 'month'), 16),\n",
" (('for', 'the', 'city', 'of', 'new', 'york', ',', 'as'), 16),\n",
" (('entering', 'into', 'the', 'following', 'extension', '(', 's', ')'), 16),\n",
" (('at', '100', 'church', 'street', ',', '12th', 'floor', ','), 16),\n",
" (('no', 'later', 'than', 'five', '(', '5', ')', 'business'), 16),\n",
" ((',', 'in', 'spector', 'hall', ',', '22', 'reade', 'street'), 16),\n",
" (('hereby', 'given', 'that', 'the', 'mayor', 'will', 'be', 'entering'), 16),\n",
" (('equal', 'monthly', 'installments', 'at', 'the', 'end', 'of', 'each'), 16),\n",
" (('of', 'intent', 'to', 'extend', 'contract', '(', 's', ')'), 16),\n",
" (('mayor', 'will', 'be', 'entering', 'into', 'the', 'following', 'extension'),\n",
" 16),\n",
" (('the', 'public', 'hearing', '.', 'tdd', 'users', 'should', 'call'), 16),\n",
" (('(', 's', ')', 'of', '(', 'a', ')', 'contract'), 16),\n",
" (('continue', 'to', ',', 'maintain', ',', 'and', 'operate', 'an'), 16),\n",
" (('a', ')', 'contract', '(', 's', ')', 'not', 'included'), 16),\n",
" ((')', 'of', '(', 'a', ')', 'contract', '(', 's'), 16),\n",
" (('intent', 'to', 'extend', 'contract', '(', 's', ')', 'not'), 16),\n",
" (('of', 'parks', 'and', 'recreation', 'nature', 'of', 'services', 'sought'),\n",
" 16),\n",
" (('of', '(', 'a', ')', 'contract', '(', 's', ')'), 16),\n",
" (('contract', '(', 's', ')', 'not', 'included', 'in', 'the'), 16),\n",
" (('notice', 'of', 'intent', 'to', 'extend', 'contract', '(', 's'), 16),\n",
" (('will', 'be', 'entering', 'into', 'the', 'following', 'extension', '('),\n",
" 16),\n",
" (('(', 'a', ')', 'contract', '(', 's', ')', 'not'), 16),\n",
" (('the', 'following', 'extension', '(', 's', ')', 'of', '('), 16),\n",
" (('given', 'that', 'the', 'mayor', 'will', 'be', 'entering', 'into'), 16),\n",
" ((',', 'borough', 'of', 'manhattan', '.', 'community', 'board', '#'), 16),\n",
" ((')', 'contract', '(', 's', ')', 'not', 'included', 'in'), 16),\n",
" (('22', 'reade', 'street', ',', 'new', 'york', ',', 'n.y.'), 16),\n",
" (('prior', 'to', 'the', 'public', 'hearing', '.', 'tdd', 'users'), 16),\n",
" (('to', 'continue', 'to', ',', 'maintain', ',', 'and', 'operate'), 16),\n",
" (('(', 'c', ')', '(', '3', ')', 'of', 'the'), 16),\n",
" (('.', 'notice', 'of', 'intent', 'to', 'issue', 'new', 'solicitation'), 16),\n",
" (('days', 'prior', 'to', 'the', 'public', 'hearing', '.', 'tdd'), 16),\n",
" (('in', 'equal', 'monthly', 'installments', 'at', 'the', 'end', 'of'), 16),\n",
" (('http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at'),\n",
" 15),\n",
" ((',', '12th', 'floor', ',', 'training', 'room', '#', '143'), 15),\n",
" (('street', ',', '2nd', 'floor', 'conference', 'room', ',', 'borough'), 15),\n",
" (('of', 'a', 'public', 'hearing', ',', 'tuesday', 'morning', ','), 15),\n",
" (('to', 'section', '3-04', '(', 'b', ')', '(', '2'), 15),\n",
" (('room', 'on', 'the', '12th', 'floor', 'of', '250', 'broadway'), 15),\n",
" (('12th', 'floor', ',', 'training', 'room', '#', '143', ','), 15),\n",
" (('on', 'the', '12th', 'floor', 'of', '250', 'broadway', ','), 15),\n",
" (('.', 'any', 'changes', 'to', 'the', 'schedule', 'will', 'be'), 15),\n",
" (('.', 'for', 'additional', 'information', ',', 'please', 'visit', 'nycha'),\n",
" 15),\n",
" (('changes', 'to', 'the', 'schedule', 'will', 'be', 'posted', 'here'), 15),\n",
" (('please', 'visit', 'nycha', \"'s\", 'website', 'or', 'contact', '('), 15),\n",
" (('reade', 'street', ',', '2nd', 'floor', 'conference', 'room', ','), 15),\n",
" (('pursuant', 'to', 'section', '3-04', '(', 'b', ')', '('), 15),\n",
" (('floor', ',', 'training', 'room', '#', '143', ',', 'new'), 15),\n",
" (('to', 'the', 'schedule', 'will', 'be', 'posted', 'here', 'and'), 15),\n",
" (('tdd', 'users', 'should', 'call', 'verizon', 'relay', 'services', '.'), 15),\n",
" (('to', 'the', 'extent', 'practicable', 'at', 'a', 'reasonable', 'time'), 15),\n",
" (('the', 'schedule', 'will', 'be', 'posted', 'here', 'and', 'on'), 15),\n",
" (('schedule', 'will', 'be', 'posted', 'here', 'and', 'on', 'nycha'), 15),\n",
" (('here', 'and', 'on', 'nycha', \"'s\", 'website', 'at', 'http'), 15),\n",
" (('district',\n",
" '2',\n",
" ',',\n",
" 'manhattan',\n",
" 'certificate',\n",
" 'of',\n",
" 'appropriateness',\n",
" 'a'),\n",
" 15),\n",
" (('information', ',', 'please', 'visit', 'nycha', \"'s\", 'website', 'or'), 15),\n",
" (('the', 'extent', 'practicable', 'at', 'a', 'reasonable', 'time', 'before'),\n",
" 15),\n",
" (('church', 'street', ',', '12th', 'floor', ',', 'training', 'room'), 15),\n",
" (('by', 'community', 'board', ':', 'borough', 'of', 'brooklyn', 'community'),\n",
" 15),\n",
" (('2nd', 'floor', 'conference', 'room', ',', 'borough', 'of', 'manhattan'),\n",
" 15),\n",
" (('and', 'on', 'nycha', \"'s\", 'website', 'at', 'http', ':'), 15),\n",
" ((',', 'training', 'room', '#', '143', ',', 'new', 'york'), 15),\n",
" (('22', 'reade', 'street', ',', '2nd', 'floor', 'conference', 'room'), 15),\n",
" (('at', 'a', 'reasonable', 'time', 'before', 'the', 'meeting', '.'), 15),\n",
" (('nycha', \"'s\", 'website', 'or', 'contact', '(', '212', ')'), 15),\n",
" (('posted', 'here', 'and', 'on', 'nycha', \"'s\", 'website', 'at'), 15),\n",
" (('//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at',\n",
" 'a',\n",
" 'reasonable'),\n",
" 15),\n",
" (('the', 'board', 'room', 'on', 'the', '12th', 'floor', 'of'), 15),\n",
" (('additional',\n",
" 'information',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website'),\n",
" 15),\n",
" (('section', '3-04', '(', 'b', ')', '(', '2', ')'), 15),\n",
" (('any', 'changes', 'to', 'the', 'schedule', 'will', 'be', 'posted'), 15),\n",
" (('be', 'posted', 'here', 'and', 'on', 'nycha', \"'s\", 'website'), 15),\n",
" (('extent', 'practicable', 'at', 'a', 'reasonable', 'time', 'before', 'the'),\n",
" 15),\n",
" (('community',\n",
" 'board',\n",
" ':',\n",
" 'borough',\n",
" 'of',\n",
" 'brooklyn',\n",
" 'community',\n",
" 'board'),\n",
" 15),\n",
" (('at', '10:00', 'a.m.', 'in', 'the', 'board', 'room', 'on'), 15),\n",
" (('to', ',', 'maintain', ',', 'and', 'operate', 'an', 'unenclosed'), 15),\n",
" (('hearing', 'by', 'community', 'board', ':', 'borough', 'of', 'brooklyn'),\n",
" 15),\n",
" (('training', 'room', '#', '143', ',', 'new', 'york', ','), 15),\n",
" (('extension',\n",
" 'new',\n",
" 'start',\n",
" 'date',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'renewed/extended'),\n",
" 15),\n",
" (('for', 'additional', 'information', ',', 'please', 'visit', 'nycha', \"'s\"),\n",
" 15),\n",
" (('floor', 'of', '250', 'broadway', ',', 'new', 'york', ','), 15),\n",
" ((',', '2nd', 'floor', 'conference', 'room', ',', 'borough', 'of'), 15),\n",
" (('10:00', 'a.m.', 'in', 'the', 'board', 'room', 'on', 'the'), 15),\n",
" (('of', 'the', 'new', 'york', 'city', 'charter', ',', 'will'), 15),\n",
" (('of', 'new', 'york', ',', 'as', 'tenant', ',', 'of'), 15),\n",
" ((',', 'please', 'visit', 'nycha', \"'s\", 'website', 'or', 'contact'), 15),\n",
" (('the', '12th', 'floor', 'of', '250', 'broadway', ',', 'new'), 15),\n",
" (('visit', 'nycha', \"'s\", 'website', 'or', 'contact', '(', '212'), 15),\n",
" (('hereby', 'given', 'of', 'a', 'public', 'hearing', ',', 'tuesday'), 15),\n",
" (('substantially', 'similar', 'titles', 'within', 'agency', ':', '0', 'nan'),\n",
" 15),\n",
" (('will', 'be', 'posted', 'here', 'and', 'on', 'nycha', \"'s\"), 15),\n",
" (('for', 'children', \"'s\", 'services', ',', 'office', 'of', 'procurement'),\n",
" 15),\n",
" (('at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable'),\n",
" 15),\n",
" (('nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to'),\n",
" 15),\n",
" (('.', 'tdd', 'users', 'should', 'call', 'verizon', 'relay', 'services'), 15),\n",
" (('website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent'),\n",
" 15),\n",
" (('12th', 'floor', 'of', '250', 'broadway', ',', 'new', 'york'), 15),\n",
" (('given', 'of', 'a', 'public', 'hearing', ',', 'tuesday', 'morning'), 15),\n",
" (('meeting', '.', 'for', 'additional', 'information', ',', 'please', 'visit'),\n",
" 15),\n",
" ((\"'s\",\n",
" 'website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the'),\n",
" 15),\n",
" (('a.m.', 'in', 'the', 'board', 'room', 'on', 'the', '12th'), 15),\n",
" (('board', 'room', 'on', 'the', '12th', 'floor', 'of', '250'), 15),\n",
" (('practicable', 'at', 'a', 'reasonable', 'time', 'before', 'the', 'meeting'),\n",
" 15),\n",
" ((',', '33', 'beaver', 'street', ',', '21st', 'floor', ','), 15),\n",
" (('is', 'hereby', 'given', 'of', 'a', 'public', 'hearing', ','), 15),\n",
" (('100', 'church', 'street', ',', '12th', 'floor', ',', 'training'), 15),\n",
" (('at', 'the', 'end', 'of', 'each', 'month', '.', 'the'), 15),\n",
" (('notice', 'is', 'hereby', 'given', 'of', 'a', 'public', 'hearing'), 15),\n",
" (('on',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml'),\n",
" 15),\n",
" (('in', 'the', 'board', 'room', 'on', 'the', '12th', 'floor'), 15),\n",
" (('street', ',', '12th', 'floor', ',', 'training', 'room', '#'), 15),\n",
" ((':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at',\n",
" 'a'),\n",
" 15),\n",
" (('obtained', 'at', 'one', 'centre', 'street', ',', 'room', '2000'), 14),\n",
" (('staten', 'island', ',', 'new', 'york', 'having', 'an', 'approximate'), 14),\n",
" (('the', 'proposed', 'lease', 'may', 'be', 'obtained', 'at', 'one'), 14),\n",
" (('(', '212', ')', '386-0315', '.', 'individuals', 'requesting', 'sign'), 14),\n",
" ((',', 'n.y.', '10007', ',', 'on', 'the', 'following', 'matters'), 14),\n",
" (('information',\n",
" ',',\n",
" 'including',\n",
" 'public',\n",
" 'inspection',\n",
" 'of',\n",
" 'the',\n",
" 'proposed'),\n",
" 14),\n",
" ((',', 'n.y.', '10007', ',', '(', '212', ')', '788-7490'), 14),\n",
" (('n.y.', '10007', ',', 'on', 'the', 'following', 'matters', ':'), 14),\n",
" (('new', 'york', ',', 'as', 'tenant', ',', 'of', 'approximately'), 14),\n",
" (('386-0315',\n",
" '.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should'),\n",
" 14),\n",
" (('municipal', 'building', ',', 'manhattan', ',', 'ny', '10007', ','), 14),\n",
" ((',', '22', 'reade', 'street', ',', '2nd', 'floor', 'conference'), 14),\n",
" ((':', '0', 'agency', ':', 'department', 'of', 'information', 'technology'),\n",
" 14),\n",
" (('street', ',', 'new', 'york', ',', 'n.y.', '10007', ','), 14),\n",
" (('further',\n",
" 'information',\n",
" ',',\n",
" 'including',\n",
" 'public',\n",
" 'inspection',\n",
" 'of',\n",
" 'the'),\n",
" 14),\n",
" ((',', 'staten', 'island', ',', 'new', 'york', 'having', 'an'), 14),\n",
" (('section', '824', 'of', 'the', 'new', 'york', 'city', 'charter'), 14),\n",
" (('n.y.', '10007', '.', 'to', 'schedule', 'an', 'inspection', ','), 14),\n",
" (('824', 'of', 'the', 'new', 'york', 'city', 'charter', ','), 14),\n",
" (('fleming', 'at', '(', '212', ')', '386-0315', '.', 'individuals'), 14),\n",
" (('n.y.', '10007', ',', '(', '212', ')', '788-7490', ','), 14),\n",
" (('new', 'york', ',', 'n.y.', '10007', ',', '(', '212'), 14),\n",
" (('that',\n",
" 'a',\n",
" 'real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public'),\n",
" 14),\n",
" (('property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'in'),\n",
" 14),\n",
" (('notice', 'is', 'hereby', 'given', 'that', 'a', 'real', 'property'), 14),\n",
" ((',', 'pursuant', 'to', 'section', '3-04', '(', 'b', ')'), 14),\n",
" (('public', 'inspection', 'of', 'the', 'proposed', 'lease', 'may', 'be'), 14),\n",
" (('2nd', 'floor', ',', 'new', 'york', ',', 'n.y.', '10007'), 14),\n",
" (('following', ':', 'in', 'the', 'matter', 'of', 'a', 'proposed'), 14),\n",
" (('public', 'hearing', ',', 'in', 'accordance', 'with', 'section', '824'),\n",
" 14),\n",
" (('hereby', 'given', 'that', 'a', 'real', 'property', 'acquisitions', 'and'),\n",
" 14),\n",
" (('solicitation',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'competitive'),\n",
" 14),\n",
" (('titles', 'within', 'agency', ':', '0', 'agency', ':', 'ddc'), 14),\n",
" (('island', ',', 'new', 'york', 'having', 'an', 'approximate', 'original'),\n",
" 14),\n",
" ((',', '2nd', 'floor', ',', 'new', 'york', ',', 'n.y.'), 14),\n",
" (('253', 'broadway', ',', '2nd', 'floor', ',', 'new', 'york'), 14),\n",
" (('2000', 'north', ',', 'new', 'york', ',', 'n.y.', '10007'), 14),\n",
" (('3-04', '(', 'b', ')', '(', '2', ')', '('), 14),\n",
" ((',', 'municipal', 'building', ',', 'manhattan', ',', 'ny', '10007'), 14),\n",
" (('to', 'schedule', 'an', 'inspection', ',', 'please', 'contact', 'chris'),\n",
" 14),\n",
" (('of', 'the', 'proposed', 'lease', 'may', 'be', 'obtained', 'at'), 14),\n",
" (('the', 'new', 'york', 'city', 'administration', 'for', 'children', \"'s\"),\n",
" 14),\n",
" ((',', 'new', 'york', ',', 'n.y.', '10007', ',', '('), 14),\n",
" (('10007', '.', 'to', 'schedule', 'an', 'inspection', ',', 'please'), 14),\n",
" (('hearings', 'unit', ',', '253', 'broadway', ',', '2nd', 'floor'), 14),\n",
" (('.',\n",
" 'further',\n",
" 'information',\n",
" ',',\n",
" 'including',\n",
" 'public',\n",
" 'inspection',\n",
" 'of'),\n",
" 14),\n",
" (('public', 'hearings', 'unit', ',', '253', 'broadway', ',', '2nd'), 14),\n",
" (('is', 'hereby', 'given', 'that', 'a', 'real', 'property', 'acquisitions'),\n",
" 14),\n",
" (('new', 'york', ',', 'n.y.', '10007', ',', 'on', 'the'), 14),\n",
" (('inspection', ',', 'please', 'contact', 'chris', 'fleming', 'at', '('), 14),\n",
" (('at', 'one', 'centre', 'street', ',', 'room', '2000', 'north'), 14),\n",
" (('inspection', 'of', 'the', 'proposed', 'lease', 'may', 'be', 'obtained'),\n",
" 14),\n",
" (('hearing', ',', 'in', 'accordance', 'with', 'section', '824', 'of'), 14),\n",
" ((',', 'new', 'york', ',', 'n.y.', '10007', '.', 'to'), 14),\n",
" (('york', ',', 'n.y.', '10007', '.', 'to', 'schedule', 'an'), 14),\n",
" (('agency', ':', '0', 'agency', ':', 'department', 'of', 'information'), 14),\n",
" (('.', 'to', 'schedule', 'an', 'inspection', ',', 'please', 'contact'), 14),\n",
" (('north', ',', 'new', 'york', ',', 'n.y.', '10007', '.'), 14),\n",
" ((',', '253', 'broadway', ',', '2nd', 'floor', ',', 'new'), 14),\n",
" (('chris', 'fleming', 'at', '(', '212', ')', '386-0315', '.'), 14),\n",
" (('with', 'section', '824', 'of', 'the', 'new', 'york', 'city'), 14),\n",
" (('york', 'city', 'charter', ',', 'will', 'be', 'held', 'on'), 14),\n",
" (('services', 'start', 'date', 'of', 'the', 'proposed', 'contract', ':'), 14),\n",
" (('please', 'contact', 'chris', 'fleming', 'at', '(', '212', ')'), 14),\n",
" (('new', 'york', 'city', 'charter', ',', 'will', 'be', 'held'), 14),\n",
" (('the', 'agency', 'intends', 'to', 'utilize', ':', 'competitive', 'sealed'),\n",
" 14),\n",
" (('new',\n",
" 'york',\n",
" 'city',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services'),\n",
" 14),\n",
" (('contact', 'chris', 'fleming', 'at', '(', '212', ')', '386-0315'), 14),\n",
" (('street', ',', 'room', '2000', 'north', ',', 'new', 'york'), 14),\n",
" (('new', 'york', ',', 'n.y.', '10007', '.', 'to', 'schedule'), 14),\n",
" (('the', 'new', 'york', 'city', 'charter', ',', 'will', 'be'), 14),\n",
" (('in', 'accordance', 'with', 'section', '824', 'of', 'the', 'new'), 14),\n",
" (('212',\n",
" ')',\n",
" '386-0315',\n",
" '.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language'),\n",
" 14),\n",
" ((',', 'please', 'contact', 'chris', 'fleming', 'at', '(', '212'), 14),\n",
" (('be', 'obtained', 'at', 'one', 'centre', 'street', ',', 'room'), 14),\n",
" ((')', 'of', 'the', 'procurement', 'policy', 'board', 'rules', '.'), 14),\n",
" (('york', ',', 'n.y.', '10007', ',', 'on', 'the', 'following'), 14),\n",
" ((')',\n",
" '386-0315',\n",
" '.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters'),\n",
" 14),\n",
" ((':', 'in', 'the', 'matter', 'of', 'a', 'proposed', 'contract'), 14),\n",
" (('one', 'centre', 'street', ',', 'room', '2000', 'north', ','), 14),\n",
" (('real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ','),\n",
" 14),\n",
" (('at', 'gotham', 'center', ',', '42-09', '28th', 'street', ','), 14),\n",
" (('similar', 'titles', 'within', 'agency', ':', '0', 'notice', 'of'), 14),\n",
" (('given',\n",
" 'that',\n",
" 'a',\n",
" 'real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions'),\n",
" 14),\n",
" (('may', 'be', 'obtained', 'at', 'one', 'centre', 'street', ','), 14),\n",
" (('acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'in',\n",
" 'accordance'),\n",
" 14),\n",
" (('york', ',', 'n.y.', '10007', ',', '(', '212', ')'), 14),\n",
" (('a',\n",
" 'real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing'),\n",
" 14),\n",
" (('a.m.', ',', '22', 'reade', 'street', ',', '2nd', 'floor'), 14),\n",
" (('from', 'the', 'date', 'of', 'approval', 'by', 'the', 'mayor'), 14),\n",
" (('dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'in',\n",
" 'accordance',\n",
" 'with',\n",
" 'section'),\n",
" 14),\n",
" (('including',\n",
" 'public',\n",
" 'inspection',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'lease',\n",
" 'may'),\n",
" 14),\n",
" (('schedule',\n",
" 'an',\n",
" 'inspection',\n",
" ',',\n",
" 'please',\n",
" 'contact',\n",
" 'chris',\n",
" 'fleming'),\n",
" 14),\n",
" (('room', '2000', 'north', ',', 'new', 'york', ',', 'n.y.'), 14),\n",
" ((',', 'including', 'public', 'inspection', 'of', 'the', 'proposed', 'lease'),\n",
" 14),\n",
" (('lease', 'may', 'be', 'obtained', 'at', 'one', 'centre', 'street'), 14),\n",
" ((',', 'in', 'accordance', 'with', 'section', '824', 'of', 'the'), 14),\n",
" (('at', '(', '212', ')', '386-0315', '.', 'individuals', 'requesting'), 14),\n",
" (('proposed', 'lease', 'may', 'be', 'obtained', 'at', 'one', 'centre'), 14),\n",
" (('centre', 'street', ',', 'room', '2000', 'north', ',', 'new'), 14),\n",
" ((',', 'new', 'york', ',', 'n.y.', '10007', ',', 'on'), 14),\n",
" ((',', 'n.y.', '10007', '.', 'to', 'schedule', 'an', 'inspection'), 14),\n",
" ((',', 'room', '2000', 'north', ',', 'new', 'york', ','), 14),\n",
" (('agency', ':', 'ddc', 'description', 'of', 'services', 'sought', ':'), 14),\n",
" (('the', 'following', ':', 'in', 'the', 'matter', 'of', 'a'), 14),\n",
" (('broadway', ',', '2nd', 'floor', ',', 'new', 'york', ','), 14),\n",
" ((',', 'new', 'york', 'having', 'an', 'approximate', 'original', 'principal'),\n",
" 14),\n",
" (('unit', ',', '253', 'broadway', ',', '2nd', 'floor', ','), 14),\n",
" (('street', ',', '2nd', 'floor', ',', 'new', 'york', ','), 14),\n",
" (('floor', ',', 'new', 'york', ',', 'n.y.', '10007', ','), 14),\n",
" (('and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'in',\n",
" 'accordance',\n",
" 'with'),\n",
" 14),\n",
" (('an', 'inspection', ',', 'please', 'contact', 'chris', 'fleming', 'at'),\n",
" 14),\n",
" (('accordance', 'with', 'section', '824', 'of', 'the', 'new', 'york'), 14),\n",
" ((\"'s\", 'services', 'of', 'the', 'city', 'of', 'new', 'york'), 13),\n",
" (('corporation',\n",
" 'exempt',\n",
" 'from',\n",
" 'federal',\n",
" 'taxation',\n",
" 'pursuant',\n",
" 'to',\n",
" 'section'),\n",
" 13),\n",
" (('to', 'section', '501', '(', 'c', ')', '(', '3'), 13),\n",
" (('department',\n",
" 'of',\n",
" 'design',\n",
" 'and',\n",
" 'construction',\n",
" 'description',\n",
" 'of',\n",
" 'services'),\n",
" 13),\n",
" (('procurement', 'policy', 'board', 'rules', '.', 'a', 'copy', 'of'), 13),\n",
" ((',', 'new', 'york', ',', 'ny', '10007', 'at', '9:15'), 13),\n",
" (('the', 'procurement', 'policy', 'board', 'rules', '.', 'a', 'copy'), 13),\n",
" (('be', 'held', 'at', 'the', 'administration', 'for', 'children', \"'s\"), 13),\n",
" ((':',\n",
" 'department',\n",
" 'of',\n",
" 'design',\n",
" 'and',\n",
" 'construction',\n",
" 'description',\n",
" 'of'),\n",
" 13),\n",
" (('pursuant', 'to', 'section', '501', '(', 'c', ')', '('), 13),\n",
" (('at', 'the', 'new', 'york', 'city', 'administration', 'for', 'children'),\n",
" 13),\n",
" (('william', 'street', ',', '9th', 'floor', ',', 'borough', 'of'), 13),\n",
" (('at', 'the', 'administration', 'for', 'children', \"'s\", 'services', ','),\n",
" 13),\n",
" (('new', 'york', ',', 'ny', '10007', 'at', '9:15', 'a.m.'), 13),\n",
" (('floor', ',', 'new', 'york', ',', 'ny', '10007', '.'), 13),\n",
" (('website', 'or', 'contact', '(', '212', ')', '306-6088', '.'), 13),\n",
" ((\"'s\", 'website', 'or', 'contact', '(', '212', ')', '306-6088'), 13),\n",
" (('llc', 'pursuant', 'to', 'sections', '197-c', 'and', '201', 'of'), 13),\n",
" (('section', '501', '(', 'c', ')', '(', '3', ')'), 13),\n",
" (('taxation', 'pursuant', 'to', 'section', '501', '(', 'c', ')'), 13),\n",
" (('agency',\n",
" ':',\n",
" 'department',\n",
" 'of',\n",
" 'design',\n",
" 'and',\n",
" 'construction',\n",
" 'description'),\n",
" 13),\n",
" (('at', '10:00', 'a.m.', 'on', 'the', 'following', ':', 'in'), 13),\n",
" (('services', 'of', 'the', 'city', 'of', 'new', 'york', 'and'), 13),\n",
" (('the', 'administration', 'for', 'children', \"'s\", 'services', 'of', 'the'),\n",
" 13),\n",
" (('children', \"'s\", 'services', 'of', 'the', 'city', 'of', 'new'), 13),\n",
" (('501', '(', 'c', ')', '(', '3', ')', 'of'), 13),\n",
" ((',', '9th', 'floor', ',', 'borough', 'of', 'manhattan', ','), 13),\n",
" (('policy', 'board', 'rules', '.', 'a', 'copy', 'of', 'the'), 13),\n",
" (('from', 'federal', 'taxation', 'pursuant', 'to', 'section', '501', '('),\n",
" 13),\n",
" (('room', '#', '143', ',', 'new', 'york', ',', 'ny'), 13),\n",
" (('having',\n",
" 'an',\n",
" 'approximate',\n",
" 'original',\n",
" 'principal',\n",
" 'amount',\n",
" 'of',\n",
" '$'),\n",
" 13),\n",
" (('inspection', 'at', 'the', 'new', 'york', 'city', 'administration', 'for'),\n",
" 13),\n",
" (('street', 'in', 'the', 'borough', 'of', 'manhattan', '(', 'to'), 13),\n",
" ((':',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact'),\n",
" 13),\n",
" ((',', '150', 'william', 'street', ',', '9th', 'floor', ','), 13),\n",
" (('between',\n",
" 'the',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" 'of'),\n",
" 13),\n",
" (('york', 'city', 'administration', 'for', 'children', \"'s\", 'services', ','),\n",
" 13),\n",
" (('design',\n",
" 'and',\n",
" 'construction',\n",
" 'description',\n",
" 'of',\n",
" 'services',\n",
" 'sought',\n",
" ':'),\n",
" 13),\n",
" (('#', '143', ',', 'new', 'york', ',', 'ny', '10007'), 13),\n",
" (('contract', 'is', 'available', 'for', 'public', 'inspection', 'at', 'the'),\n",
" 13),\n",
" (('exempt',\n",
" 'from',\n",
" 'federal',\n",
" 'taxation',\n",
" 'pursuant',\n",
" 'to',\n",
" 'section',\n",
" '501'),\n",
" 13),\n",
" (('city',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" ',',\n",
" 'office'),\n",
" 13),\n",
" (('commencing', 'at', '10:00', 'a.m.', 'on', 'the', 'following', ':'), 13),\n",
" (('administration', 'for', 'children', \"'s\", 'services', 'of', 'the', 'city'),\n",
" 13),\n",
" (('new',\n",
" 'york',\n",
" 'having',\n",
" 'an',\n",
" 'approximate',\n",
" 'original',\n",
" 'principal',\n",
" 'amount'),\n",
" 13),\n",
" (('will', 'be', 'held', 'at', 'the', 'administration', 'for', 'children'),\n",
" 13),\n",
" (('york',\n",
" 'having',\n",
" 'an',\n",
" 'approximate',\n",
" 'original',\n",
" 'principal',\n",
" 'amount',\n",
" 'of'),\n",
" 13),\n",
" (('the', 'matter', 'of', 'an', 'application', 'submitted', 'by', 'the'), 13),\n",
" (('10:00', 'a.m.', 'on', 'the', 'following', ':', 'in', 'the'), 13),\n",
" (('hearing', 'will', 'be', 'held', 'at', 'the', 'administration', 'for'), 13),\n",
" (('held', 'at', 'the', 'administration', 'for', 'children', \"'s\", 'services'),\n",
" 13),\n",
" (('brooklyn', ',', 'new', 'york', '.', 'site', 'no', '.'), 13),\n",
" (('for', 'children', \"'s\", 'services', 'of', 'the', 'city', 'of'), 13),\n",
" (('143', ',', 'new', 'york', ',', 'ny', '10007', 'at'), 13),\n",
" ((',', '2nd', 'floor', ',', 'new', 'york', ',', 'ny'), 13),\n",
" (('of', 'the', 'procurement', 'policy', 'board', 'rules', '.', 'a'), 13),\n",
" (('150', 'william', 'street', ',', '9th', 'floor', ',', 'borough'), 13),\n",
" (('of',\n",
" 'design',\n",
" 'and',\n",
" 'construction',\n",
" 'description',\n",
" 'of',\n",
" 'services',\n",
" 'sought'),\n",
" 13),\n",
" (('public', 'hearing', 'will', 'be', 'held', 'at', 'the', 'administration'),\n",
" 13),\n",
" (('federal', 'taxation', 'pursuant', 'to', 'section', '501', '(', 'c'), 13),\n",
" (('rem', 'foreclosure', 'release', 'board', 'meets', 'in', 'spector', 'hall'),\n",
" 12),\n",
" (('http',\n",
" ':',\n",
" '//www.nyc.gov/html/ccrb/html/meeting.html',\n",
" 'for',\n",
" 'additional',\n",
" 'information',\n",
" 'and',\n",
" 'scheduling'),\n",
" 12),\n",
" ((\"'s\", 'central', 'office', ',', '40', 'rector', 'street', ','), 12),\n",
" (('as',\n",
" 'warranted',\n",
" '.',\n",
" 'civilian',\n",
" 'complaint',\n",
" 'review',\n",
" 'board',\n",
" 'generally'),\n",
" 12),\n",
" (('the', 'administrative', 'code', 'of', 'the', 'city', 'of', 'new'), 12),\n",
" (('boardroom', ',', '22nd', 'floor', ',', '335', 'adams', 'street'), 12),\n",
" (('in', 'the', 'commission', \"'s\", 'central', 'office', ',', '40'), 12),\n",
" (('lease', 'for', 'the', 'city', 'of', 'new', 'york', ','), 12),\n",
" (('central', 'office', ',', '40', 'rector', 'street', ',', 'new'), 12),\n",
" (('the', 'hall', 'of', 'the', 'board', 'for', 'a', 'monthly'), 12),\n",
" (('at', '10:00', 'a.m.', ',', '22', 'reade', 'street', ','), 12),\n",
" (('rector', 'street', ',', '9th', 'floor', '.', 'tax', 'commission'), 12),\n",
" ((',', 'new', 'york', ',', 'ny', '10007', ',', 'twice'), 12),\n",
" (('.', 'the', 'annual', 'meeting', 'is', 'held', 'on', 'the'), 12),\n",
" (('services',\n",
" 'division',\n",
" 'of',\n",
" 'citywide',\n",
" 'personnel',\n",
" 'services',\n",
" 'will',\n",
" 'hold'),\n",
" 12),\n",
" (('a.m.', ',', 'unless', 'otherwise', 'noticed', 'by', 'the', 'commission'),\n",
" 12),\n",
" (('room', '603', ',', 'municipal', 'building', ',', 'manhattan', ','), 12),\n",
" (('month', 'at', '6:00', 'p.m', '.', 'the', 'annual', 'meeting'), 12),\n",
" (('call', 'of', 'the', 'chairman', '.', 'board', 'of', 'health'), 12),\n",
" (('current', 'meeting', 'dates', ',', 'times', 'and', 'agendas', ','), 12),\n",
" (('schedule',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nyc.gov/designcommission',\n",
" 'or',\n",
" 'call',\n",
" '212-788-3071'),\n",
" 12),\n",
" (('10:00', 'a.m.', 'board', 'of', 'elections', '32', 'broadway', ','), 12),\n",
" (('of', 'each', 'month', ',', 'at', 'the', 'call', 'of'), 12),\n",
" (('sessions', 'begin', 'at', '9:30', 'a.m.', 'and', 'are', 'customarily'),\n",
" 12),\n",
" (('street', ',', '9th', 'floor', '.', 'tax', 'commission', 'meets'), 12),\n",
" (('of', 'the', 'president', '.', 'manhattan', ',', 'monthly', 'on'), 12),\n",
" (('real',\n",
" 'property',\n",
" 'acquisition',\n",
" 'and',\n",
" 'disposition',\n",
" 'meets',\n",
" 'in',\n",
" 'spector'),\n",
" 12),\n",
" (('bsa', 'conference', 'room', 'on', 'the', '9th', 'floor', 'of'), 12),\n",
" (('on', 'tuesdays', 'at', '10:00', 'a.m.', 'review', 'sessions', 'begin'),\n",
" 12),\n",
" (('preservation', 'commission', 'meets', 'in', 'the', 'hearing', 'room', ','),\n",
" 12),\n",
" (('at', '1:30', 'p.m.', 'and', 'at', 'the', 'call', 'of'), 12),\n",
" (('on', 'tuesdays', ',', 'commencing', '10:00', 'a.m.', ',', 'and'), 12),\n",
" (('of', 'the', 'chairman', '.', 'board', 'of', 'higher', 'education'), 12),\n",
" (('times', 'and', 'agendas', ',', 'please', 'visit', 'our', 'website'), 12),\n",
" ((',', 'on', 'fourth', 'monday', 'in', 'january', ',', 'february'), 12),\n",
" (('on', 'fourth', 'monday', 'in', 'may', '.', 'citywide', 'administrative'),\n",
" 12),\n",
" (('each', 'month', 'at', '40', 'rector', 'street', ',', '2nd'), 12),\n",
" (('at', '40', 'rector', 'street', ',', '2nd', 'floor', ','), 12),\n",
" (('changes', '.', 'design', 'commission', 'meets', 'at', 'city', 'hall'), 12),\n",
" (('9:30', 'a.m.', ',', 'unless', 'otherwise', 'noticed', 'by', 'the'), 12),\n",
" (('at', '8:00', 'a.m', '.', 'in', 'rem', 'foreclosure', 'release'), 12),\n",
" (('meets', 'at', 'its', 'office', ',', '100', 'centre', 'street'), 12),\n",
" (('the', 'agency', 'intends', 'to', 'utilize', ':', 'request', 'for'), 12),\n",
" (('york', ',', 'ny', '10006', '.', 'visit', 'http', ':'), 12),\n",
" (('board', 'of', 'health', 'meets', 'at', 'gotham', 'center', ','), 12),\n",
" (('22', 'reade', 'street', ',', 'main', 'floor', ',', 'and'), 12),\n",
" (('main', 'floor', ',', 'manhattan', ',', 'monthly', 'on', 'tuesdays'), 12),\n",
" (('as',\n",
" 'warranted',\n",
" '.',\n",
" 'landmarks',\n",
" 'preservation',\n",
" 'commission',\n",
" 'meets',\n",
" 'in'),\n",
" 12),\n",
" (('tuesdays', ',', 'commencing', '10:00', 'a.m.', ',', 'and', 'other'), 12),\n",
" (('the',\n",
" 'call',\n",
" 'of',\n",
" 'the',\n",
" 'commissioner',\n",
" '.',\n",
" 'environmental',\n",
" 'control'),\n",
" 12),\n",
" (('at', 'city', 'hall', ',', 'third', 'floor', ',', 'new'), 12),\n",
" (('wednesday', 'of', 'each', 'month', ',', 'at', '8:00', 'a.m'), 12),\n",
" (('call', 'of', 'the', 'chairman', '.', 'board', 'of', 'standards'), 12),\n",
" (('conditions',\n",
" 'for',\n",
" 'compensation',\n",
" 'payable',\n",
" 'to',\n",
" 'the',\n",
" 'city',\n",
" 'according'),\n",
" 12),\n",
" (('rector', 'street', ',', 'new', 'york', ',', 'ny', '10006'), 12),\n",
" (('the', 'boardroom', ',', '22nd', 'floor', ',', '335', 'adams'), 12),\n",
" (('.', 'in', 'rem', 'foreclosure', 'release', 'board', 'meets', 'in'), 12),\n",
" (('at', '535', 'east', '80th', 'street', ',', 'manhattan', ','), 12),\n",
" (('bulletin', 'board', 'at', 'the', 'board', \"'s\", 'offices', ','), 12),\n",
" (('the', 'first', 'tuesday', 'of', 'july', 'at', '10:00', 'a.m.'), 12),\n",
" ((',', 'new', 'york', ',', 'ny', '10007', '(', 'unless'), 12),\n",
" (('release', 'board', 'meets', 'in', 'spector', 'hall', ',', '22'), 12),\n",
" (('wednesday', ',', 'of', 'each', 'month', 'at', '6:00', 'p.m'), 12),\n",
" (('wednesday', ',', 'at', '10:00', 'a.m.', ',', 'unless', 'otherwise'), 12),\n",
" (('n.y.', '10004', '.', 'commission', 'on', 'human', 'rights', 'meets'), 12),\n",
" (('month', 'at', 'the', 'call', 'of', 'the', 'chairman', '.'), 12),\n",
" (('its', 'office', ',', '100', 'centre', 'street', ',', 'manhattan'), 12),\n",
" (('and', 'conditions', 'for', 'compensation', 'payable', 'to', 'the', 'city'),\n",
" 12),\n",
" (('the', 'date', 'of', 'approval', 'by', 'the', 'mayor', 'to'), 12),\n",
" (('education', 'meets', 'at', '535', 'east', '80th', 'street', ','), 12),\n",
" ((',', '2014', 'special', 'permit', '(', '73-36', ')', 'to'), 12),\n",
" (('october', ',', 'november', 'and', 'december', '.', 'annual', 'meeting'),\n",
" 12),\n",
" (('nyc.gov/designcommission',\n",
" 'or',\n",
" 'call',\n",
" '212-788-3071',\n",
" '.',\n",
" 'department',\n",
" 'of',\n",
" 'education'),\n",
" 12),\n",
" (('board', 'meets', 'in', 'spector', 'hall', ',', '22', 'reade'), 12),\n",
" (('retirement', 'system', 'meets', 'in', 'the', 'boardroom', ',', '22nd'),\n",
" 12),\n",
" (('10007', ',', 'at', 'the', 'call', 'of', 'the', 'chairman'), 12),\n",
" (('main', 'floor', ',', 'manhattan', ',', 'weekly', ',', 'on'), 12),\n",
" (('city', 'housing', 'authority', 'are', 'scheduled', 'for', 'the', 'last'),\n",
" 12),\n",
" (('10:00', 'a.m.', ',', '22', 'reade', 'street', ',', '2nd'), 12),\n",
" ((',', 'on', 'the', 'third', 'thursday', 'of', 'each', 'month'), 12),\n",
" (('of', 'the', 'chairman', '.', 'housing', 'authority', 'board', 'meetings'),\n",
" 12),\n",
" (('at', '10:00', 'a.m.', ',', 'unless', 'otherwise', 'ordered', 'by'), 12),\n",
" (('at',\n",
" 'www.nyc.gov/landmarks',\n",
" '.',\n",
" 'employees',\n",
" \"'\",\n",
" 'retirement',\n",
" 'system',\n",
" 'meets'),\n",
" 12),\n",
" (('once', 'a', 'month', 'at', 'the', 'call', 'of', 'the'), 12),\n",
" (('notice', 'of', 'public', 'hearing', 'notice', 'is', 'hereby', 'given'),\n",
" 12),\n",
" (('and', 'scheduling', 'changes', '.', 'design', 'commission', 'meets', 'at'),\n",
" 12),\n",
" (('each', 'month', 'at', 'the', 'call', 'of', 'the', 'president'), 12),\n",
" ((',', '2', 'washington', 'street', ',', 'new', 'york', ','), 12),\n",
" (('city', 'planning', 'commission', 'meets', 'in', 'spector', 'hall', ','),\n",
" 12),\n",
" (('location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'franchise',\n",
" 'and',\n",
" 'concession',\n",
" 'review'),\n",
" 12),\n",
" (('meeting', 'is', 'held', 'on', 'the', 'first', 'tuesday', 'of'), 12),\n",
" (('otherwise', 'noted', ')', '.', 'any', 'changes', 'to', 'the'), 12),\n",
" (('the', 'call', 'of', 'the', 'president', '.', 'manhattan', ','), 12),\n",
" (('the', 'chairman', '.', 'housing', 'authority', 'board', 'meetings', 'of'),\n",
" 12),\n",
" (('in', 'councilman', \"'s\", 'chamber', ',', 'city', 'hall', ','), 12),\n",
" (('annual', 'meeting', 'held', 'on', 'fourth', 'monday', 'in', 'may'), 12),\n",
" ((',', 'manhattan', ',', 'bi-weekly', ',', 'on', 'wednesdays', ','), 12),\n",
" (('on', 'the', 'third', 'thursday', 'of', 'each', 'month', ','), 12),\n",
" (('city', ',', 'n.y.', '11101', ',', 'at', '10:00', 'a.m.'), 12),\n",
" (('each', 'month', '(', 'except', 'august', ')', 'at', '10:00'), 12),\n",
" (('of', 'each', 'month', 'at', '6:00', 'p.m', '.', 'the'), 12),\n",
" (('the', 'proposed', 'revocable', 'consent', 'is', 'for', 'a', 'term'), 12),\n",
" (('york', ',', 'ny', '10007', '(', 'unless', 'otherwise', 'noted'), 12),\n",
" (('manhattan',\n",
" 'on',\n",
" 'approximately',\n",
" 'three',\n",
" 'tuesday',\n",
" \"'s\",\n",
" 'each',\n",
" 'month'),\n",
" 12),\n",
" (('floor', ',', 'manhattan', ',', 'monthly', 'on', 'tuesdays', ','), 12),\n",
" ((',', '7th', 'floor', ',', 'new', 'york', ',', 'ny'), 12),\n",
" (('washington', 'street', ',', 'new', 'york', ',', 'n.y.', '10004'), 12),\n",
" (('manhattan', ',', 'bi-weekly', ',', 'on', 'wednesdays', ',', 'commencing'),\n",
" 12),\n",
" (('tuesday', 'of', 'july', 'at', '10:00', 'a.m.', 'board', 'of'), 12),\n",
" (('meets', 'on', '10th', 'floor', 'in', 'the', 'commission', \"'s\"), 12),\n",
" (('street', ',', 'long', 'island', 'city', ',', 'n.y.', '11101'), 12),\n",
" (('broadway', ',', 'new', 'york', ',', 'ny', '10007', '('), 12),\n",
" (('building', ',', '9th', 'floor', 'north', ',', '1', 'centre'), 12),\n",
" (('commencing', 'at', '9:30', 'a.m.', ',', 'unless', 'otherwise', 'noticed'),\n",
" 12),\n",
" (('tuesdays', 'at', '10:00', 'a.m.', 'review', 'sessions', 'begin', 'at'),\n",
" 12),\n",
" (('new', 'york', ',', 'ny', '10007', ',', 'twice', 'monthly'), 12),\n",
" (('for', 'the', 'last', 'wednesday', 'of', 'each', 'month', '('), 12),\n",
" (('on', '10th', 'floor', 'in', 'the', 'commission', \"'s\", 'central'), 12),\n",
" (('or', 'consult', 'the', 'bulletin', 'board', 'at', 'the', 'board'), 12),\n",
" (('board', 'meetings', 'of', 'the', 'new', 'york', 'city', 'housing'), 12),\n",
" (('center', ',', '42-09', '28th', 'street', ',', 'long', 'island'), 12),\n",
" (('meets', 'in', 'the', 'hall', 'of', 'the', 'board', 'for'), 12),\n",
" (('city', 'hall', ',', 'third', 'floor', ',', 'new', 'york'), 12),\n",
" (('street', ',', 'new', 'york', ',', 'ny', '10007', ','), 12),\n",
" ((',', 'at', '10:30', 'a.m.', 'board', 'of', 'revision', 'of'), 12),\n",
" (('island', 'city', ',', 'n.y.', '11101', ',', 'at', '10:00'), 12),\n",
" (('website',\n",
" 'at',\n",
" 'www.nyc.gov/landmarks',\n",
" '.',\n",
" 'employees',\n",
" \"'\",\n",
" 'retirement',\n",
" 'system'),\n",
" 12),\n",
" (('28th', 'street', ',', 'long', 'island', 'city', ',', 'n.y.'), 12),\n",
" (('approximately',\n",
" 'three',\n",
" 'tuesday',\n",
" \"'s\",\n",
" 'each',\n",
" 'month',\n",
" ',',\n",
" 'commencing'),\n",
" 12),\n",
" ((',', 'weekly', ',', 'on', 'thursday', ',', 'commencing', '10:00'), 12),\n",
" (('a', 'month', 'in', 'councilman', \"'s\", 'chamber', ',', 'city'), 12),\n",
" (('employees',\n",
" \"'\",\n",
" 'retirement',\n",
" 'system',\n",
" 'meets',\n",
" 'in',\n",
" 'the',\n",
" 'boardroom'),\n",
" 12),\n",
" (('meets', 'at', '10:00', 'a.m.', 'on', 'the', 'second', 'wednesday'), 12),\n",
" (('tuesday', ',', 'at', '1:30', 'p.m.', 'and', 'at', 'the'), 12),\n",
" (('times',\n",
" 'and',\n",
" 'location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'landmarks',\n",
" 'preservation'),\n",
" 12),\n",
" (('on', 'the', 'fourth', 'wednesday', 'of', 'each', 'month', ','), 12),\n",
" (('7th', 'floor', ',', 'new', 'york', ',', 'ny', '10004'), 12),\n",
" ((':',\n",
" '//www.nyc.gov/html/ccrb/html/meeting.html',\n",
" 'for',\n",
" 'additional',\n",
" 'information',\n",
" 'and',\n",
" 'scheduling',\n",
" 'changes'),\n",
" 12),\n",
" (('ny',\n",
" '10006',\n",
" '.',\n",
" 'visit',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/ccrb/html/meeting.html',\n",
" 'for'),\n",
" 12),\n",
" ((',', 'at', '1:30', 'p.m.', 'contract', 'awards', 'public', 'hearing'), 12),\n",
" ((',', '9th', 'floor', 'north', ',', '1', 'centre', 'street'), 12),\n",
" (('design', 'commission', 'meets', 'at', 'city', 'hall', ',', 'third'), 12),\n",
" ((',', 'of', 'each', 'month', 'at', '6:00', 'p.m', '.'), 12),\n",
" (('proposed', 'revocable', 'consent', 'is', 'for', 'a', 'term', 'of'), 12),\n",
" (('at', '1:30', 'p.m.', 'contract', 'awards', 'public', 'hearing', 'meets'),\n",
" 12),\n",
" ((',', 'unless', 'otherwise', 'noticed', 'by', 'the', 'commission', '.'), 12),\n",
" (('floor', 'of', '40', 'rector', 'street', '.', 'for', 'changes'), 12),\n",
" (('is', 'held', 'on', 'the', 'first', 'tuesday', 'of', 'july'), 12),\n",
" (('212-788-3071', '.', 'department', 'of', 'education', 'meets', 'in', 'the'),\n",
" 12),\n",
" ((',', '6th', 'floor', ',', 'hearing', 'room', '``', 'e'), 12),\n",
" (('floor', 'in', 'the', 'commission', \"'s\", 'central', 'office', ','), 12),\n",
" (('for', 'a', 'monthly', 'business', 'meeting', 'on', 'the', 'third'), 12),\n",
" (('board', 'of', 'higher', 'education', 'meets', 'at', '535', 'east'), 12),\n",
" ((',', 'new', 'york', ',', 'ny', '10006', ',', 'on'), 12),\n",
" (('except', 'august', ')', 'at', '10:00', 'a.m.', 'in', 'the'), 12),\n",
" (('system', 'meets', 'in', 'the', 'boardroom', ',', '22nd', 'floor'), 12),\n",
" (('at', 'its', 'office', ',', '100', 'centre', 'street', ','), 12),\n",
" ((',', 'payable', 'in', 'equal', 'monthly', 'installments', 'at', 'the'), 12),\n",
" ((',', 'ny', '10007', ',', 'twice', 'monthly', 'on', 'wednesday'), 12),\n",
" (('broadway', ',', '7th', 'floor', ',', 'new', 'york', ','), 12),\n",
" (('.', 'commission', 'on', 'human', 'rights', 'meets', 'on', '10th'), 12),\n",
" (('other',\n",
" 'terms',\n",
" 'and',\n",
" 'conditions',\n",
" 'for',\n",
" 'compensation',\n",
" 'payable',\n",
" 'to'),\n",
" 12),\n",
" (('at', '(', '212', ')', '513-4670', 'or', 'consult', 'the'), 12),\n",
" (('the', 'chairman', '.', 'board', 'of', 'health', 'meets', 'at'), 12),\n",
" (('on', 'the', 'second', 'wednesday', 'of', 'each', 'month', 'at'), 12),\n",
" (('of', 'revision', 'of', 'awards', 'meets', 'in', 'room', '603'), 12),\n",
" (('august', ')', 'at', '10:00', 'a.m.', 'in', 'the', 'board'), 12),\n",
" (('10:30', 'a.m.', 'board', 'of', 'revision', 'of', 'awards', 'meets'), 12),\n",
" (('compensation', 'payable', 'to', 'the', 'city', 'according', 'to', 'the'),\n",
" 12),\n",
" (('commission', 'meets', 'in', 'spector', 'hall', ',', '22', 'reade'), 12),\n",
" (('commission', 'meets', 'in', 'room', '936', ',', 'municipal', 'building'),\n",
" 12),\n",
" (('street', ',', '6th', 'floor', ',', 'hearing', 'room', '``'), 12),\n",
" (('40', 'rector', 'street', '.', 'for', 'changes', 'in', 'the'), 12),\n",
" (('on', 'approximately', 'three', 'tuesday', \"'s\", 'each', 'month', ','), 12),\n",
" (('the',\n",
" 'department',\n",
" 'of',\n",
" 'citywide',\n",
" 'administrative',\n",
" 'services',\n",
" 'may',\n",
" 'determine'),\n",
" 12),\n",
" (('dates', ',', 'times', 'and', 'agendas', ',', 'please', 'visit'), 12),\n",
" (('council', 'meets', 'by', 'charter', 'twice', 'a', 'month', 'in'), 12),\n",
" (('meets', 'at', '535', 'east', '80th', 'street', ',', 'manhattan'), 12),\n",
" (('among',\n",
" 'other',\n",
" 'terms',\n",
" 'and',\n",
" 'conditions',\n",
" 'for',\n",
" 'compensation',\n",
" 'payable'),\n",
" 12),\n",
" (('10th', 'floor', 'in', 'the', 'commission', \"'s\", 'central', 'office'), 12),\n",
" (('40', 'rector', 'street', ',', '6th', 'floor', ',', 'hearing'), 12),\n",
" (('10007', ',', 'at', 'call', 'of', 'the', 'chairman', '.'), 12),\n",
" (('10007', '(', 'unless', 'otherwise', 'noted', ')', '.', 'any'), 12),\n",
" (('third', 'thursday', 'of', 'each', 'month', ',', 'at', 'the'), 12),\n",
" (('as',\n",
" 'warranted',\n",
" '.',\n",
" 'franchise',\n",
" 'and',\n",
" 'concession',\n",
" 'review',\n",
" 'committee'),\n",
" 12),\n",
" (('civilian',\n",
" 'complaint',\n",
" 'review',\n",
" 'board',\n",
" 'generally',\n",
" 'meets',\n",
" 'at',\n",
" '10:00'),\n",
" 12),\n",
" (('room', '936', ',', 'municipal', 'building', ',', 'manhattan', ','), 12),\n",
" (('.', 'employees', \"'\", 'retirement', 'system', 'meets', 'in', 'the'), 12),\n",
" (('held', 'on', 'fourth', 'monday', 'in', 'may', '.', 'citywide'), 12),\n",
" (('visit',\n",
" 'nyc.gov/designcommission',\n",
" 'or',\n",
" 'call',\n",
" '212-788-3071',\n",
" '.',\n",
" 'department',\n",
" 'of'),\n",
" 12),\n",
" (('public', 'hearing', 'in', 'the', 'bsa', 'conference', 'room', 'on'), 12),\n",
" (('on', 'thursday', ',', 'at', '10:30', 'a.m.', 'board', 'of'), 12),\n",
" (('as',\n",
" 'warranted',\n",
" '.',\n",
" 'real',\n",
" 'property',\n",
" 'acquisition',\n",
" 'and',\n",
" 'disposition'),\n",
" 12),\n",
" (('three', 'tuesday', \"'s\", 'each', 'month', ',', 'commencing', 'at'), 12),\n",
" (('begin', 'at', '9:30', 'a.m.', 'and', 'are', 'customarily', 'held'), 12),\n",
" (('june', ',', 'september', ',', 'october', ',', 'november', 'and'), 12),\n",
" (('payable', 'to', 'the', 'city', 'according', 'to', 'the', 'following'), 12),\n",
" (('street', ',', 'main', 'floor', ',', 'and', 'other', 'days'), 12),\n",
" (('december', '.', 'annual', 'meeting', 'held', 'on', 'fourth', 'monday'),\n",
" 12),\n",
" ((',', 'main', 'floor', ',', 'and', 'other', 'days', ','), 12),\n",
" (('ny', '10007', ',', 'twice', 'monthly', 'on', 'wednesday', ','), 12),\n",
" (('in', 'room', '603', ',', 'municipal', 'building', ',', 'manhattan'), 12),\n",
" (('10:00', 'a.m.', ',', 'unless', 'otherwise', 'ordered', 'by', 'the'), 12),\n",
" (('please',\n",
" 'visit',\n",
" 'our',\n",
" 'website',\n",
" 'at',\n",
" 'www.nyc.gov/landmarks',\n",
" '.',\n",
" 'employees'),\n",
" 12),\n",
" (('location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'civilian',\n",
" 'complaint',\n",
" 'review',\n",
" 'board'),\n",
" 12),\n",
" (('month', ',', 'at', 'the', 'call', 'of', 'the', 'chairman'), 12),\n",
" (('month', 'at', 'the', 'call', 'of', 'the', 'president', '.'), 12),\n",
" (('the', 'commission', '.', 'city', 'council', 'meets', 'by', 'charter'), 12),\n",
" (('ny', '10007', '(', 'unless', 'otherwise', 'noted', ')', '.'), 12),\n",
" (('on', 'tuesday', ',', 'at', '1:30', 'p.m.', 'and', 'at'), 12),\n",
" (('hearing', 'meets', 'in', 'spector', 'hall', ',', '22', 'reade'), 12),\n",
" (('a.m.', 'board', 'of', 'revision', 'of', 'awards', 'meets', 'in'), 12),\n",
" ((',', 'february', ',', 'march', ',', 'april', ',', 'june'), 12),\n",
" (('review', 'committee', 'meets', 'in', 'spector', 'hall', ',', '22'), 12),\n",
" (('hours', 'of', '10', 'am', 'and', '4', 'pm', '.'), 12),\n",
" (('in',\n",
" 'may',\n",
" '.',\n",
" 'citywide',\n",
" 'administrative',\n",
" 'services',\n",
" 'division',\n",
" 'of'),\n",
" 12),\n",
" (('citywide',\n",
" 'administrative',\n",
" 'services',\n",
" 'division',\n",
" 'of',\n",
" 'citywide',\n",
" 'personnel',\n",
" 'services'),\n",
" 12),\n",
" (('office', ',', '40', 'rector', 'street', ',', 'new', 'york'), 12),\n",
" (('e', \"''\", 'on', 'tuesdays', 'at', '10:00', 'a.m.', 'review'), 12),\n",
" ((',', 'june', ',', 'september', ',', 'october', ',', 'november'), 12),\n",
" (('and', 'at', 'the', 'call', 'of', 'the', 'commissioner', '.'), 12),\n",
" ((\"''\", 'on', 'tuesdays', 'at', '10:00', 'a.m.', 'review', 'sessions'), 12),\n",
" (('p.m.',\n",
" 'contract',\n",
" 'awards',\n",
" 'public',\n",
" 'hearing',\n",
" 'meets',\n",
" 'in',\n",
" 'spector'),\n",
" 12),\n",
" ((',', 'borough', 'of', 'manhattan', ',', 'in', 'the', 'matter'), 12),\n",
" ((',', 'twice', 'monthly', 'on', 'wednesday', ',', 'at', '10:00'), 12),\n",
" (('chairman', '.', 'board', 'of', 'health', 'meets', 'at', 'gotham'), 12),\n",
" (('times', 'and', 'location', 'as', 'warranted', '.', 'real', 'property'),\n",
" 12),\n",
" (('york', ',', 'n.y.', '10004', '.', 'commission', 'on', 'human'), 12),\n",
" (('meeting', 'dates', ',', 'times', 'and', 'agendas', ',', 'please'), 12),\n",
" ((',', 'third', 'floor', ',', 'new', 'york', ',', 'ny'), 12),\n",
" (('rector', 'street', ',', '6th', 'floor', ',', 'hearing', 'room'), 12),\n",
" (('personnel', 'services', 'will', 'hold', 'hearings', 'as', 'needed', 'in'),\n",
" 12),\n",
" (('meets', 'in', 'room', '603', ',', 'municipal', 'building', ','), 12),\n",
" (('customarily',\n",
" 'held',\n",
" 'on',\n",
" 'mondays',\n",
" 'preceding',\n",
" 'a',\n",
" 'tuesday',\n",
" 'public'),\n",
" 12),\n",
" (('.', 'parole', 'commission', 'meets', 'at', 'its', 'office', ','), 12),\n",
" (('conference', 'room', 'on', 'the', '9th', 'floor', 'of', '40'), 12),\n",
" (('.',\n",
" 'for',\n",
" 'meeting',\n",
" 'schedule',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nyc.gov/designcommission'),\n",
" 12),\n",
" ((',', 'october', ',', 'november', 'and', 'december', '.', 'annual'), 12),\n",
" (('manhattan', ',', 'monthly', 'on', 'tuesdays', ',', 'commencing', '10:00'),\n",
" 12),\n",
" ((',', 'municipal', 'building', ',', '9th', 'floor', 'north', ','), 12),\n",
" ((',', 'on', 'tuesday', ',', 'at', '1:30', 'p.m.', 'and'), 12),\n",
" (('centre',\n",
" 'street',\n",
" 'in',\n",
" 'manhattan',\n",
" 'on',\n",
" 'approximately',\n",
" 'three',\n",
" 'tuesday'),\n",
" 12),\n",
" (('chairman', '.', 'health', 'insurance', 'board', 'meets', 'in', 'room'),\n",
" 12),\n",
" (('.', 'health', 'insurance', 'board', 'meets', 'in', 'room', '530'), 12),\n",
" (('information',\n",
" 'and',\n",
" 'scheduling',\n",
" 'changes',\n",
" '.',\n",
" 'design',\n",
" 'commission',\n",
" 'meets'),\n",
" 12),\n",
" ((')', 'at', '10:00', 'a.m.', 'in', 'the', 'board', 'room'), 12),\n",
" (('hall', 'of', 'the', 'board', 'for', 'a', 'monthly', 'business'), 12),\n",
" (('(', '212', ')', '513-4670', 'or', 'consult', 'the', 'bulletin'), 12),\n",
" (('and', 'provides', 'among', 'other', 'terms', 'and', 'conditions', 'for'),\n",
" 12),\n",
" (('.', 'for', 'changes', 'in', 'the', 'schedule', ',', 'or'), 12),\n",
" ((',',\n",
" 'please',\n",
" 'visit',\n",
" 'nyc.gov/designcommission',\n",
" 'or',\n",
" 'call',\n",
" '212-788-3071',\n",
" '.'),\n",
" 12),\n",
" (('the', 'third', 'thursday', 'of', 'each', 'month', ',', 'at'), 12),\n",
" (('landmarks',\n",
" 'preservation',\n",
" 'commission',\n",
" 'meets',\n",
" 'in',\n",
" 'the',\n",
" 'hearing',\n",
" 'room'),\n",
" 12),\n",
" (('//www.nyc.gov/html/ccrb/html/meeting.html',\n",
" 'for',\n",
" 'additional',\n",
" 'information',\n",
" 'and',\n",
" 'scheduling',\n",
" 'changes',\n",
" '.'),\n",
" 12),\n",
" (('street', '.', 'for', 'changes', 'in', 'the', 'schedule', ','), 12),\n",
" (('elections', '32', 'broadway', ',', '7th', 'floor', ',', 'new'), 12),\n",
" (('40', 'rector', 'street', ',', '2nd', 'floor', ',', 'new'), 12),\n",
" (('preceding', 'a', 'tuesday', 'public', 'hearing', 'in', 'the', 'bsa'), 12),\n",
" (('public', 'hearing', 'meets', 'in', 'spector', 'hall', ',', '22'), 12),\n",
" (('twice', 'monthly', 'on', 'wednesday', ',', 'at', '10:00', 'a.m.'), 12),\n",
" (('ny', '10007', 'at', '9:15', 'a.m.', 'once', 'a', 'month'), 12),\n",
" (('each', 'month', ',', 'at', '8:00', 'a.m', '.', 'in'), 12),\n",
" (('borough', 'of', 'manhattan', ',', 'in', 'the', 'matter', 'of'), 12),\n",
" (('monday', 'in', 'january', ',', 'february', ',', 'march', ','), 12),\n",
" (('.', 'the', 'proposed', 'revocable', 'consent', 'is', 'for', 'a'), 12),\n",
" (('and', 'december', '.', 'annual', 'meeting', 'held', 'on', 'fourth'), 12),\n",
" (('306-6088', '.', 'parole', 'commission', 'meets', 'at', 'its', 'office'),\n",
" 12),\n",
" (('on', 'the', 'third', 'wednesday', ',', 'of', 'each', 'month'), 12),\n",
" ((',', 'manhattan', ',', 'weekly', ',', 'on', 'thursday', ','), 12),\n",
" (('north', ',', '1', 'centre', 'street', 'in', 'manhattan', 'on'), 12),\n",
" ((\"'\", 'retirement', 'system', 'meets', 'in', 'the', 'boardroom', ','), 12),\n",
" (('at', '10:30', 'a.m.', 'board', 'of', 'revision', 'of', 'awards'), 12),\n",
" (('july', 'at', '10:00', 'a.m.', 'board', 'of', 'elections', '32'), 12),\n",
" ((',', 'new', 'york', ',', 'ny', '10006', '.', 'visit'), 12),\n",
" (('p.m', '.', 'the', 'annual', 'meeting', 'is', 'held', 'on'), 12),\n",
" (('commission', 'on', 'human', 'rights', 'meets', 'on', '10th', 'floor'), 12),\n",
" (('of', 'each', 'month', ',', 'at', '8:00', 'a.m', '.'), 12),\n",
" (('otherwise', 'noticed', 'by', 'the', 'commission', '.', 'for', 'current'),\n",
" 12),\n",
" (('floor', 'conference', 'room', ',', 'borough', 'of', 'manhattan', ','), 12),\n",
" (('212', ')', '306-6088', '.', 'parole', 'commission', 'meets', 'at'), 12),\n",
" (('call', 'of', 'the', 'president', '.', 'manhattan', ',', 'monthly'), 12),\n",
" (('held', 'on', 'mondays', 'preceding', 'a', 'tuesday', 'public', 'hearing'),\n",
" 12),\n",
" (('commission', 'meets', 'at', 'its', 'office', ',', '100', 'centre'), 12),\n",
" ((',', 'new', 'york', ',', 'ny', '10007', '.', 'for'), 12),\n",
" (('board', 'rules', '.', 'a', 'copy', 'of', 'the', 'draft'), 12),\n",
" (('42-09', '28th', 'street', ',', 'long', 'island', 'city', ','), 12),\n",
" (('thursday', ',', 'at', '10:30', 'a.m.', 'board', 'of', 'revision'), 12),\n",
" (('a', 'monthly', 'business', 'meeting', 'on', 'the', 'third', 'wednesday'),\n",
" 12),\n",
" (('visit',\n",
" 'our',\n",
" 'website',\n",
" 'at',\n",
" 'www.nyc.gov/landmarks',\n",
" '.',\n",
" 'employees',\n",
" \"'\"),\n",
" 12),\n",
" (('as', 'needed', 'in', 'room', '2203', ',', '2', 'washington'), 12),\n",
" (('chairman', '.', 'board', 'of', 'higher', 'education', 'meets', 'at'), 12),\n",
" ((')', '306-6088', '.', 'parole', 'commission', 'meets', 'at', 'its'), 12),\n",
" (('n.y.', '11101', ',', 'at', '10:00', 'a.m.', ',', 'quarterly'), 12),\n",
" (('hearing', 'room', '``', 'e', \"''\", 'on', 'tuesdays', 'at'), 12),\n",
" (('at', '40', 'rector', 'street', ',', '9th', 'floor', '.'), 12),\n",
" (('avenue', ',', 'staten', 'island', ',', 'new', 'york', 'having'), 12),\n",
" (('the', 'city', 'according', 'to', 'the', 'following', 'schedule', ':'), 12),\n",
" (('appeals', 'meets', 'at', '40', 'rector', 'street', ',', '6th'), 12),\n",
" (('a.m.', 'once', 'a', 'month', 'at', 'the', 'call', 'of'), 12),\n",
" (('at', '6:00', 'p.m', '.', 'the', 'annual', 'meeting', 'is'), 12),\n",
" (('the', 'schedule', ',', 'or', 'additonal', 'information', ',', 'please'),\n",
" 12),\n",
" (('our',\n",
" 'website',\n",
" 'at',\n",
" 'www.nyc.gov/landmarks',\n",
" '.',\n",
" 'employees',\n",
" \"'\",\n",
" 'retirement'),\n",
" 12),\n",
" (('human', 'rights', 'meets', 'on', '10th', 'floor', 'in', 'the'), 12),\n",
" (('10007', 'at', '9:15', 'a.m.', 'once', 'a', 'month', 'at'), 12),\n",
" ((',', '40', 'rector', 'street', ',', 'new', 'york', ','), 12),\n",
" ((',', 'quarterly', 'or', 'at', 'the', 'call', 'of', 'the'), 12),\n",
" (('twice', 'a', 'month', 'in', 'councilman', \"'s\", 'chamber', ','), 12),\n",
" (('manhattan', '(', 'to', 'continue', 'to', ',', 'maintain', ','), 12),\n",
" (('1:30', 'p.m.', 'contract', 'awards', 'public', 'hearing', 'meets', 'in'),\n",
" 12),\n",
" (('a', 'tuesday', 'public', 'hearing', 'in', 'the', 'bsa', 'conference'), 12),\n",
" (('2', 'washington', 'street', ',', 'new', 'york', ',', 'n.y.'), 12),\n",
" (('march', ',', 'april', ',', 'june', ',', 'september', ','), 12),\n",
" (('application', 'desk', 'at', '(', '212', ')', '513-4670', 'or'), 12),\n",
" (('room', ',', 'borough', 'of', 'manhattan', ',', 'in', 'the'), 12),\n",
" (('commission', 'meets', 'in', 'the', 'hearing', 'room', ',', 'municipal'),\n",
" 12),\n",
" (('32', 'broadway', ',', '7th', 'floor', ',', 'new', 'york'), 12),\n",
" (('meets', 'in', 'the', 'boardroom', ',', '22nd', 'floor', ','), 12),\n",
" (('awards', 'meets', 'in', 'room', '603', ',', 'municipal', 'building'), 12),\n",
" (('time',\n",
" 'before',\n",
" 'the',\n",
" 'meeting',\n",
" '.',\n",
" 'for',\n",
" 'additional',\n",
" 'information'),\n",
" 12),\n",
" (('40', 'rector', 'street', ',', '9th', 'floor', '.', 'tax'), 12),\n",
" (('at', 'the', 'board', \"'s\", 'offices', ',', 'at', '40'), 12),\n",
" (('at', 'the', 'call', 'of', 'the', 'commissioner', '.', 'environmental'),\n",
" 12),\n",
" (('health', 'meets', 'at', 'gotham', 'center', ',', '42-09', '28th'), 12),\n",
" (('fourth', 'wednesday', 'of', 'each', 'month', ',', 'at', '8:00'), 12),\n",
" (('at', '40', 'rector', 'street', ',', '6th', 'floor', ','), 12),\n",
" (('in', 'the', 'bsa', 'conference', 'room', 'on', 'the', '9th'), 12),\n",
" ((',', 'ny', '10006', ',', 'on', 'the', 'fourth', 'wednesday'), 12),\n",
" (('of',\n",
" 'the',\n",
" 'commissioner',\n",
" '.',\n",
" 'environmental',\n",
" 'control',\n",
" 'board',\n",
" 'meets'),\n",
" 12),\n",
" (('contact', '(', '212', ')', '306-6088', '.', 'parole', 'commission'), 12),\n",
" (('in', 'the', 'schedule', ',', 'or', 'additonal', 'information', ','), 12),\n",
" ((',', 'on', 'thursday', ',', 'commencing', '10:00', 'a.m.', ','), 12),\n",
" (('street',\n",
" 'in',\n",
" 'manhattan',\n",
" 'on',\n",
" 'approximately',\n",
" 'three',\n",
" 'tuesday',\n",
" \"'s\"),\n",
" 12),\n",
" (('.', 'housing', 'authority', 'board', 'meetings', 'of', 'the', 'new'), 12),\n",
" (('10004', '.', 'commission', 'on', 'human', 'rights', 'meets', 'on'), 12),\n",
" (('floor', ',', 'manhattan', ',', 'weekly', ',', 'on', 'thursday'), 12),\n",
" (('location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'real',\n",
" 'property',\n",
" 'acquisition',\n",
" 'and'),\n",
" 12),\n",
" (('and',\n",
" 'location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'real',\n",
" 'property',\n",
" 'acquisition'),\n",
" 12),\n",
" (('authority', 'are', 'scheduled', 'for', 'the', 'last', 'wednesday', 'of'),\n",
" 12),\n",
" ((',', '1', 'centre', 'street', 'in', 'manhattan', 'on', 'approximately'),\n",
" 12),\n",
" (('at', '9:30', 'a.m.', ',', 'unless', 'otherwise', 'noticed', 'by'), 12),\n",
" ((\"'s\", 'offices', ',', 'at', '40', 'rector', 'street', ','), 12),\n",
" (('floor', 'north', ',', '1', 'centre', 'street', 'in', 'manhattan'), 12),\n",
" (('proposal',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency'),\n",
" 12),\n",
" (('hall', ',', 'third', 'floor', ',', 'new', 'york', ','), 12),\n",
" (('the', 'call', 'of', 'the', 'chairman', '.', 'housing', 'authority'), 12),\n",
" (('the', 'chairman', '.', 'board', 'of', 'higher', 'education', 'meets'), 12),\n",
" ((',', 'new', 'york', ',', 'ny', '10004', ',', 'on'), 12),\n",
" (('a', 'month', 'at', 'the', 'call', 'of', 'the', 'chairman'), 12),\n",
" (('york', ',', 'ny', '10006', ',', 'on', 'the', 'fourth'), 12),\n",
" (('of', 'july', 'at', '10:00', 'a.m.', 'board', 'of', 'elections'), 12),\n",
" (('new', 'york', ',', 'n.y.', '10004', '.', 'commission', 'on'), 12),\n",
" (('please',\n",
" 'visit',\n",
" 'nyc.gov/designcommission',\n",
" 'or',\n",
" 'call',\n",
" '212-788-3071',\n",
" '.',\n",
" 'department'),\n",
" 12),\n",
" (('board', 'of', 'revision', 'of', 'awards', 'meets', 'in', 'room'), 12),\n",
" (('floor', ',', 'hearing', 'room', '``', 'e', \"''\", 'on'), 12),\n",
" (('floor', ',', 'manhattan', ',', 'bi-weekly', ',', 'on', 'wednesdays'), 12),\n",
" (('mondays', 'preceding', 'a', 'tuesday', 'public', 'hearing', 'in', 'the'),\n",
" 12),\n",
" (('administrative', 'code', 'of', 'the', 'city', 'of', 'new', 'york'), 12),\n",
" (('or', 'contact', '(', '212', ')', '306-6088', '.', 'parole'), 12),\n",
" (('the', 'new', 'york', 'city', 'housing', 'authority', 'are', 'scheduled'),\n",
" 12),\n",
" (('agency', 'intends', 'to', 'utilize', ':', 'competitive', 'sealed', 'bid'),\n",
" 12),\n",
" (('the', 'proposed', 'contractor', 'has', 'been', 'selected', 'by', 'means'),\n",
" 12),\n",
" (('11101', ',', 'at', '10:00', 'a.m.', ',', 'quarterly', 'or'), 12),\n",
" ((',', 'times', 'and', 'location', 'as', 'warranted', '.', 'real'), 12),\n",
" (('street', ',', 'main', 'floor', ',', 'manhattan', ',', 'weekly'), 12),\n",
" (('at', '9:15', 'a.m.', 'once', 'a', 'month', 'at', 'the'), 12),\n",
" (('between', 'the', 'hours', 'of', '10', 'am', 'and', '4'), 12),\n",
" (('of', 'the', 'chairman', '.', 'board', 'of', 'health', 'meets'), 12),\n",
" ((',', 'or', 'additonal', 'information', ',', 'please', 'call', 'the'), 12),\n",
" ((',', 'monthly', 'on', 'tuesdays', ',', 'commencing', '10:00', 'a.m.'), 12),\n",
" (('of', 'higher', 'education', 'meets', 'at', '535', 'east', '80th'), 12),\n",
" (('main', 'floor', ',', 'and', 'other', 'days', ',', 'times'), 12),\n",
" ((',', 'commencing', 'at', '9:30', 'a.m.', ',', 'unless', 'otherwise'), 12),\n",
" (('10006',\n",
" '.',\n",
" 'visit',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/ccrb/html/meeting.html',\n",
" 'for',\n",
" 'additional'),\n",
" 12),\n",
" (('division',\n",
" 'of',\n",
" 'citywide',\n",
" 'personnel',\n",
" 'services',\n",
" 'will',\n",
" 'hold',\n",
" 'hearings'),\n",
" 12),\n",
" (('of', 'manhattan', '(', 'to', 'continue', 'to', ',', 'maintain'), 12),\n",
" (('call', 'of', 'the', 'chairman', '.', 'housing', 'authority', 'board'), 12),\n",
" (('on', 'wednesdays', ',', 'commencing', '10:00', 'a.m.', ',', 'and'), 12),\n",
" (('5:30', 'p.m.', ',', 'on', 'fourth', 'monday', 'in', 'january'), 12),\n",
" (('meetings', 'of', 'the', 'new', 'york', 'city', 'housing', 'authority'),\n",
" 12),\n",
" (('rights', 'meets', 'on', '10th', 'floor', 'in', 'the', 'commission'), 12),\n",
" (('otherwise', 'ordered', 'by', 'the', 'commission', '.', 'city', 'council'),\n",
" 12),\n",
" (('.', 'board', 'of', 'higher', 'education', 'meets', 'at', '535'), 12),\n",
" (('councilman', \"'s\", 'chamber', ',', 'city', 'hall', ',', 'manhattan'), 12),\n",
" (('of', 'the', 'new', 'york', 'city', 'housing', 'authority', 'are'), 12),\n",
" ((',', 'on', 'thursday', ',', 'at', '10:30', 'a.m.', 'board'), 12),\n",
" (('meeting', 'on', 'the', 'third', 'wednesday', ',', 'of', 'each'), 12),\n",
" (('room', 'on', 'the', '9th', 'floor', 'of', '40', 'rector'), 12),\n",
" (('fourth', 'monday', 'in', 'january', ',', 'february', ',', 'march'), 12),\n",
" ((',', 'at', '8:00', 'a.m', '.', 'in', 'rem', 'foreclosure'), 12),\n",
" (('warranted',\n",
" '.',\n",
" 'franchise',\n",
" 'and',\n",
" 'concession',\n",
" 'review',\n",
" 'committee',\n",
" 'meets'),\n",
" 12),\n",
" (('or',\n",
" 'additonal',\n",
" 'information',\n",
" ',',\n",
" 'please',\n",
" 'call',\n",
" 'the',\n",
" 'application'),\n",
" 12),\n",
" (('board', 'at', 'the', 'board', \"'s\", 'offices', ',', 'at'), 12),\n",
" (('chairman', '.', 'housing', 'authority', 'board', 'meetings', 'of', 'the'),\n",
" 12),\n",
" (('location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'landmarks',\n",
" 'preservation',\n",
" 'commission',\n",
" 'meets'),\n",
" 12),\n",
" (('warranted',\n",
" '.',\n",
" 'civilian',\n",
" 'complaint',\n",
" 'review',\n",
" 'board',\n",
" 'generally',\n",
" 'meets'),\n",
" 12),\n",
" (('scheduled', 'for', 'the', 'last', 'wednesday', 'of', 'each', 'month'), 12),\n",
" (('unless', 'otherwise', 'noticed', 'by', 'the', 'commission', '.', 'for'),\n",
" 12),\n",
" (('the', 'last', 'wednesday', 'of', 'each', 'month', '(', 'except'), 12),\n",
" (('complaint',\n",
" 'review',\n",
" 'board',\n",
" 'generally',\n",
" 'meets',\n",
" 'at',\n",
" '10:00',\n",
" 'a.m.'),\n",
" 12),\n",
" ((',', 'times', 'and', 'agendas', ',', 'please', 'visit', 'our'), 12),\n",
" (('.',\n",
" 'citywide',\n",
" 'administrative',\n",
" 'services',\n",
" 'division',\n",
" 'of',\n",
" 'citywide',\n",
" 'personnel'),\n",
" 12),\n",
" ((',', '9th', 'floor', '.', 'tax', 'commission', 'meets', 'in'), 12),\n",
" (('6:00', 'p.m', '.', 'the', 'annual', 'meeting', 'is', 'held'), 12),\n",
" (('meets', 'in', 'the', 'hearing', 'room', ',', 'municipal', 'building'), 12),\n",
" (('1', 'centre', 'street', 'in', 'manhattan', 'on', 'approximately', 'three'),\n",
" 12),\n",
" ((',',\n",
" 'ny',\n",
" '10006',\n",
" '.',\n",
" 'visit',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/ccrb/html/meeting.html'),\n",
" 12),\n",
" (('in', 'room', '2203', ',', '2', 'washington', 'street', ','), 12),\n",
" (('york', ',', 'ny', '10007', 'at', '9:15', 'a.m.', 'once'), 12),\n",
" (('last', 'wednesday', 'of', 'each', 'month', '(', 'except', 'august'), 12),\n",
" (('meets', 'at', 'city', 'hall', ',', 'third', 'floor', ','), 12),\n",
" (('provides',\n",
" 'among',\n",
" 'other',\n",
" 'terms',\n",
" 'and',\n",
" 'conditions',\n",
" 'for',\n",
" 'compensation'),\n",
" 12),\n",
" (('the', 'board', 'for', 'a', 'monthly', 'business', 'meeting', 'on'), 12),\n",
" (('.', 'design', 'commission', 'meets', 'at', 'city', 'hall', ','), 12),\n",
" ((',', 'new', 'york', ',', 'n.y.', '10004', '.', 'commission'), 12),\n",
" (('method', 'of', 'extension', 'the', 'agency', 'intends', 'to', 'utilize'),\n",
" 12),\n",
" ((',', 'ny', '10007', '.', 'for', 'meeting', 'schedule', ','), 12),\n",
" (('tuesday', 'public', 'hearing', 'in', 'the', 'bsa', 'conference', 'room'),\n",
" 12),\n",
" (('in', 'the', 'matter', 'of', 'a', 'proposed', 'revocable', 'consent'), 12),\n",
" (('gotham', 'center', ',', '42-09', '28th', 'street', ',', 'long'), 12),\n",
" (('unless', 'otherwise', 'ordered', 'by', 'the', 'commission', '.', 'city'),\n",
" 12),\n",
" ...]"
]
}
],
"prompt_number": 32
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#We can keep going!\n",
"corpus9grams = list(ngrams(lowerTokens,9))\n",
"corpus9gramFreqs = nltk.FreqDist(corpus9grams)\n",
"corpus9gramFreqs.most_common()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 33,
"text": [
"[(('--', '--', '--', '--', '--', '--', '--', '--', '--'), 168),\n",
" (('of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':'),\n",
" 129),\n",
" (('headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency'),\n",
" 129),\n",
" (('maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed',\n",
" 'sidewalk',\n",
" 'caf',\n",
" 'for'),\n",
" 112),\n",
" ((',', 'and', 'operate', 'an', 'unenclosed', 'sidewalk', 'caf', 'for', 'a'),\n",
" 112),\n",
" (('and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed',\n",
" 'sidewalk',\n",
" 'caf',\n",
" 'for',\n",
" 'a',\n",
" 'term'),\n",
" 112),\n",
" (('operate', 'an', 'unenclosed', 'sidewalk', 'caf', 'for', 'a', 'term', 'of'),\n",
" 112),\n",
" (('method',\n",
" 'of',\n",
" 'solicitation',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':'),\n",
" 103),\n",
" (('sidewalk', 'caf', 'for', 'a', 'term', 'of', 'four', 'years', '.'), 101),\n",
" (('unenclosed', 'sidewalk', 'caf', 'for', 'a', 'term', 'of', 'four', 'years'),\n",
" 101),\n",
" (('caf', 'for', 'a', 'term', 'of', 'four', 'years', '.', ')'), 101),\n",
" (('an', 'unenclosed', 'sidewalk', 'caf', 'for', 'a', 'term', 'of', 'four'),\n",
" 94),\n",
" (('personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" 'none'),\n",
" 93),\n",
" ((':',\n",
" 'none',\n",
" 'headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles'),\n",
" 92),\n",
" (('agency',\n",
" ':',\n",
" 'none',\n",
" 'headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar'),\n",
" 92),\n",
" (('within',\n",
" 'agency',\n",
" ':',\n",
" 'none',\n",
" 'headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially'),\n",
" 91),\n",
" (('to',\n",
" 'maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed',\n",
" 'sidewalk',\n",
" 'caf'),\n",
" 91),\n",
" (('substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" 'none',\n",
" 'headcount',\n",
" 'of'),\n",
" 91),\n",
" (('similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" 'none',\n",
" 'headcount',\n",
" 'of',\n",
" 'personnel'),\n",
" 91),\n",
" (('titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" 'none',\n",
" 'headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in'),\n",
" 91),\n",
" (('in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" 'none',\n",
" 'headcount'),\n",
" 91),\n",
" (('none',\n",
" 'headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within'),\n",
" 89),\n",
" (('(', 'to', 'continue', 'to', 'maintain', ',', 'and', 'operate', 'an'), 86),\n",
" (('in', 'the', 'borough', 'of', 'manhattan', '(', 'to', 'continue', 'to'),\n",
" 86),\n",
" (('personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0'),\n",
" 83),\n",
" (('continue',\n",
" 'to',\n",
" 'maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed',\n",
" 'sidewalk'),\n",
" 82),\n",
" (('to',\n",
" 'continue',\n",
" 'to',\n",
" 'maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed'),\n",
" 79),\n",
" (('of', 'manhattan', '(', 'to', 'continue', 'to', 'maintain', ',', 'and'),\n",
" 74),\n",
" (('manhattan',\n",
" '(',\n",
" 'to',\n",
" 'continue',\n",
" 'to',\n",
" 'maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate'),\n",
" 74),\n",
" (('borough', 'of', 'manhattan', '(', 'to', 'continue', 'to', 'maintain', ','),\n",
" 74),\n",
" (('the',\n",
" 'borough',\n",
" 'of',\n",
" 'manhattan',\n",
" '(',\n",
" 'to',\n",
" 'continue',\n",
" 'to',\n",
" 'maintain'),\n",
" 74),\n",
" (('and',\n",
" 'schedule',\n",
" 'notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'mayor'),\n",
" 63),\n",
" (('schedule',\n",
" 'that',\n",
" 'is',\n",
" 'published',\n",
" 'pursuant',\n",
" 'to',\n",
" 'new',\n",
" 'york',\n",
" 'city'),\n",
" 63),\n",
" (('to', 'new', 'york', 'city', 'charter', '312', '(', 'a', ')'), 63),\n",
" (('contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that'),\n",
" 63),\n",
" (('city', 'charter', '312', '(', 'a', ')', ':', 'agency', ':'), 63),\n",
" (('pursuant', 'to', 'new', 'york', 'city', 'charter', '312', '(', 'a'), 63),\n",
" (('notice', 'is', 'hereby', 'given', 'that', 'the', 'mayor', 'will', 'be'),\n",
" 63),\n",
" (('that',\n",
" 'is',\n",
" 'published',\n",
" 'pursuant',\n",
" 'to',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'charter'),\n",
" 63),\n",
" (('york', 'city', 'charter', '312', '(', 'a', ')', ':', 'agency'), 63),\n",
" (('and',\n",
" 'schedule',\n",
" 'that',\n",
" 'is',\n",
" 'published',\n",
" 'pursuant',\n",
" 'to',\n",
" 'new',\n",
" 'york'),\n",
" 63),\n",
" (('plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the'),\n",
" 63),\n",
" (('annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given'),\n",
" 63),\n",
" (('schedule',\n",
" 'notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'mayor',\n",
" 'will'),\n",
" 63),\n",
" (('plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'that',\n",
" 'is',\n",
" 'published',\n",
" 'pursuant',\n",
" 'to',\n",
" 'new'),\n",
" 63),\n",
" (('contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'that',\n",
" 'is',\n",
" 'published',\n",
" 'pursuant',\n",
" 'to'),\n",
" 63),\n",
" (('new', 'york', 'city', 'charter', '312', '(', 'a', ')', ':'), 63),\n",
" (('published',\n",
" 'pursuant',\n",
" 'to',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'charter',\n",
" '312',\n",
" '('),\n",
" 63),\n",
" (('is',\n",
" 'published',\n",
" 'pursuant',\n",
" 'to',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'charter',\n",
" '312'),\n",
" 63),\n",
" (('annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'that',\n",
" 'is',\n",
" 'published',\n",
" 'pursuant'),\n",
" 63),\n",
" (('included',\n",
" 'in',\n",
" 'the',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and'),\n",
" 62),\n",
" (('in',\n",
" 'the',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule'),\n",
" 62),\n",
" (('not',\n",
" 'included',\n",
" 'in',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and'),\n",
" 62),\n",
" (('not',\n",
" 'included',\n",
" 'in',\n",
" 'the',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan'),\n",
" 62),\n",
" (('(', 's', ')', 'not', 'included', 'in', 'fy', '2015', 'annual'), 62),\n",
" (('included',\n",
" 'in',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule'),\n",
" 62),\n",
" (('s', ')', 'not', 'included', 'in', 'fy', '2015', 'annual', 'contracting'),\n",
" 62),\n",
" (('the',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'that'),\n",
" 62),\n",
" (('in',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'notice'),\n",
" 62),\n",
" (('fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'notice',\n",
" 'is'),\n",
" 62),\n",
" (('2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'that',\n",
" 'is',\n",
" 'published'),\n",
" 62),\n",
" (('2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'notice',\n",
" 'is',\n",
" 'hereby'),\n",
" 62),\n",
" (('(', 's', ')', 'not', 'included', 'in', 'the', 'fy', '2015'), 62),\n",
" ((')',\n",
" 'not',\n",
" 'included',\n",
" 'in',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan'),\n",
" 62),\n",
" (('s', ')', 'not', 'included', 'in', 'the', 'fy', '2015', 'annual'), 62),\n",
" ((')', 'not', 'included', 'in', 'the', 'fy', '2015', 'annual', 'contracting'),\n",
" 62),\n",
" (('fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'that',\n",
" 'is'),\n",
" 62),\n",
" (('meets', 'in', 'spector', 'hall', ',', '22', 'reade', 'street', ','), 60),\n",
" (('spector', 'hall', ',', '22', 'reade', 'street', ',', 'main', 'floor'), 50),\n",
" (('hall', ',', '22', 'reade', 'street', ',', 'main', 'floor', ','), 50),\n",
" (('in', 'spector', 'hall', ',', '22', 'reade', 'street', ',', 'main'), 50),\n",
" (('the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'office',\n",
" 'of',\n",
" 'environmental',\n",
" 'remediation',\n",
" '('),\n",
" 49),\n",
" ((')',\n",
" 'has',\n",
" 'received',\n",
" 'an',\n",
" 'nyc',\n",
" 'voluntary',\n",
" 'cleanup',\n",
" 'program',\n",
" '('),\n",
" 49),\n",
" (('utilize',\n",
" ':',\n",
" 'task',\n",
" 'order',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles'),\n",
" 49),\n",
" (('task',\n",
" 'order',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency'),\n",
" 49),\n",
" ((':',\n",
" 'task',\n",
" 'order',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within'),\n",
" 49),\n",
" (('received',\n",
" 'an',\n",
" 'nyc',\n",
" 'voluntary',\n",
" 'cleanup',\n",
" 'program',\n",
" '(',\n",
" 'vcp',\n",
" ')'),\n",
" 49),\n",
" (('solicitation',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'task',\n",
" 'order'),\n",
" 49),\n",
" (('intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'task',\n",
" 'order',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially'),\n",
" 49),\n",
" (('order',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':'),\n",
" 49),\n",
" (('york',\n",
" 'city',\n",
" 'office',\n",
" 'of',\n",
" 'environmental',\n",
" 'remediation',\n",
" '(',\n",
" 'oer',\n",
" ')'),\n",
" 49),\n",
" (('office',\n",
" 'of',\n",
" 'environmental',\n",
" 'remediation',\n",
" '(',\n",
" 'oer',\n",
" ')',\n",
" 'has',\n",
" 'received'),\n",
" 49),\n",
" (('oer',\n",
" ')',\n",
" 'has',\n",
" 'received',\n",
" 'an',\n",
" 'nyc',\n",
" 'voluntary',\n",
" 'cleanup',\n",
" 'program'),\n",
" 49),\n",
" (('new',\n",
" 'york',\n",
" 'city',\n",
" 'office',\n",
" 'of',\n",
" 'environmental',\n",
" 'remediation',\n",
" '(',\n",
" 'oer'),\n",
" 49),\n",
" (('has',\n",
" 'received',\n",
" 'an',\n",
" 'nyc',\n",
" 'voluntary',\n",
" 'cleanup',\n",
" 'program',\n",
" '(',\n",
" 'vcp'),\n",
" 49),\n",
" (('environmental',\n",
" 'remediation',\n",
" '(',\n",
" 'oer',\n",
" ')',\n",
" 'has',\n",
" 'received',\n",
" 'an',\n",
" 'nyc'),\n",
" 49),\n",
" (('remediation',\n",
" '(',\n",
" 'oer',\n",
" ')',\n",
" 'has',\n",
" 'received',\n",
" 'an',\n",
" 'nyc',\n",
" 'voluntary'),\n",
" 49),\n",
" (('of',\n",
" 'environmental',\n",
" 'remediation',\n",
" '(',\n",
" 'oer',\n",
" ')',\n",
" 'has',\n",
" 'received',\n",
" 'an'),\n",
" 49),\n",
" (('(', 'oer', ')', 'has', 'received', 'an', 'nyc', 'voluntary', 'cleanup'),\n",
" 49),\n",
" (('the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'task',\n",
" 'order',\n",
" 'personnel'),\n",
" 49),\n",
" (('to',\n",
" 'utilize',\n",
" ':',\n",
" 'task',\n",
" 'order',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar'),\n",
" 49),\n",
" (('an',\n",
" 'nyc',\n",
" 'voluntary',\n",
" 'cleanup',\n",
" 'program',\n",
" '(',\n",
" 'vcp',\n",
" ')',\n",
" 'application'),\n",
" 49),\n",
" (('of',\n",
" 'solicitation',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'task'),\n",
" 49),\n",
" (('agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'task',\n",
" 'order',\n",
" 'personnel',\n",
" 'in'),\n",
" 49),\n",
" (('city',\n",
" 'office',\n",
" 'of',\n",
" 'environmental',\n",
" 'remediation',\n",
" '(',\n",
" 'oer',\n",
" ')',\n",
" 'has'),\n",
" 49),\n",
" (('and', 'other', 'days', ',', 'times', 'and', 'location', 'as', 'warranted'),\n",
" 48),\n",
" ((',', 'and', 'other', 'days', ',', 'times', 'and', 'location', 'as'), 48),\n",
" (('nyc',\n",
" 'voluntary',\n",
" 'cleanup',\n",
" 'program',\n",
" '(',\n",
" 'vcp',\n",
" ')',\n",
" 'application',\n",
" 'from'),\n",
" 48),\n",
" (('other', 'days', ',', 'times', 'and', 'location', 'as', 'warranted', '.'),\n",
" 48),\n",
" (('mayor',\n",
" 'will',\n",
" 'be',\n",
" 'issuing',\n",
" 'the',\n",
" 'following',\n",
" 'solicitation',\n",
" '(',\n",
" 's'),\n",
" 47),\n",
" (('to', 'issue', 'new', 'solicitation', '(', 's', ')', 'not', 'included'),\n",
" 47),\n",
" (('solicitation', '(', 's', ')', 'not', 'included', 'in', 'the', 'fy'), 47),\n",
" (('given',\n",
" 'that',\n",
" 'the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'issuing',\n",
" 'the',\n",
" 'following'),\n",
" 47),\n",
" (('that',\n",
" 'the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'issuing',\n",
" 'the',\n",
" 'following',\n",
" 'solicitation'),\n",
" 47),\n",
" (('will', 'be', 'issuing', 'the', 'following', 'solicitation', '(', 's', ')'),\n",
" 47),\n",
" (('of', 'intent', 'to', 'issue', 'new', 'solicitation', '(', 's', ')'), 47),\n",
" (('issuing',\n",
" 'the',\n",
" 'following',\n",
" 'solicitation',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'not',\n",
" 'included'),\n",
" 47),\n",
" (('be', 'issuing', 'the', 'following', 'solicitation', '(', 's', ')', 'not'),\n",
" 47),\n",
" (('the', 'following', 'solicitation', '(', 's', ')', 'not', 'included', 'in'),\n",
" 47),\n",
" (('the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'issuing',\n",
" 'the',\n",
" 'following',\n",
" 'solicitation',\n",
" '('),\n",
" 47),\n",
" (('hereby', 'given', 'that', 'the', 'mayor', 'will', 'be', 'issuing', 'the'),\n",
" 47),\n",
" (('is', 'hereby', 'given', 'that', 'the', 'mayor', 'will', 'be', 'issuing'),\n",
" 47),\n",
" (('following', 'solicitation', '(', 's', ')', 'not', 'included', 'in', 'the'),\n",
" 47),\n",
" (('intent', 'to', 'issue', 'new', 'solicitation', '(', 's', ')', 'not'), 47),\n",
" (('issue', 'new', 'solicitation', '(', 's', ')', 'not', 'included', 'in'),\n",
" 47),\n",
" (('notice', 'of', 'intent', 'to', 'issue', 'new', 'solicitation', '(', 's'),\n",
" 47),\n",
" (('new', 'solicitation', '(', 's', ')', 'not', 'included', 'in', 'fy'), 47),\n",
" (('solicitation', '(', 's', ')', 'not', 'included', 'in', 'fy', '2015'), 46),\n",
" (('this', 'project', '.', 'the', 'new', 'york', 'city', 'office', 'of'), 45),\n",
" (('is', 'assigned', 'to', 'this', 'project', '.', 'the', 'new', 'york'), 45),\n",
" (('.',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'office',\n",
" 'of',\n",
" 'environmental',\n",
" 'remediation'),\n",
" 45),\n",
" (('project',\n",
" '.',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'office',\n",
" 'of',\n",
" 'environmental'),\n",
" 45),\n",
" (('substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'agency',\n",
" ':'),\n",
" 45),\n",
" (('to', 'this', 'project', '.', 'the', 'new', 'york', 'city', 'office'), 45),\n",
" (('in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'agency'),\n",
" 45),\n",
" (('assigned', 'to', 'this', 'project', '.', 'the', 'new', 'york', 'city'),\n",
" 45),\n",
" (('312', '(', 'a', ')', ':', 'agency', ':', 'department', 'of'), 44),\n",
" (('charter', '312', '(', 'a', ')', ':', 'agency', ':', 'department'), 44),\n",
" (('hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'following',\n",
" 'matters',\n",
" 'have',\n",
" 'been',\n",
" 'scheduled'),\n",
" 36),\n",
" (('is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'following',\n",
" 'matters',\n",
" 'have',\n",
" 'been'),\n",
" 36),\n",
" ((',', 'commencing', '10:00', 'a.m.', ',', 'and', 'other', 'days', ','), 36),\n",
" (('a.m.', ',', 'and', 'other', 'days', ',', 'times', 'and', 'location'), 36),\n",
" (('commencing', '10:00', 'a.m.', ',', 'and', 'other', 'days', ',', 'times'),\n",
" 36),\n",
" (('that',\n",
" 'the',\n",
" 'following',\n",
" 'matters',\n",
" 'have',\n",
" 'been',\n",
" 'scheduled',\n",
" 'for',\n",
" 'public'),\n",
" 36),\n",
" (('matters',\n",
" 'have',\n",
" 'been',\n",
" 'scheduled',\n",
" 'for',\n",
" 'public',\n",
" 'hearing',\n",
" 'by',\n",
" 'community'),\n",
" 36),\n",
" (('10:00', 'a.m.', ',', 'and', 'other', 'days', ',', 'times', 'and'), 36),\n",
" (('given',\n",
" 'that',\n",
" 'the',\n",
" 'following',\n",
" 'matters',\n",
" 'have',\n",
" 'been',\n",
" 'scheduled',\n",
" 'for'),\n",
" 36),\n",
" (('22', 'reade', 'street', ',', 'main', 'floor', ',', 'manhattan', ','), 36),\n",
" (('notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'following',\n",
" 'matters',\n",
" 'have'),\n",
" 36),\n",
" (('the',\n",
" 'following',\n",
" 'matters',\n",
" 'have',\n",
" 'been',\n",
" 'scheduled',\n",
" 'for',\n",
" 'public',\n",
" 'hearing'),\n",
" 36),\n",
" ((',', '22', 'reade', 'street', ',', 'main', 'floor', ',', 'manhattan'), 36),\n",
" (('public',\n",
" 'notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'following',\n",
" 'matters'),\n",
" 36),\n",
" (('following',\n",
" 'matters',\n",
" 'have',\n",
" 'been',\n",
" 'scheduled',\n",
" 'for',\n",
" 'public',\n",
" 'hearing',\n",
" 'by'),\n",
" 36),\n",
" (('ave', 'in', 'the', 'borough', 'of', 'manhattan', '(', 'to', 'continue'),\n",
" 36),\n",
" (('been',\n",
" 'scheduled',\n",
" 'for',\n",
" 'public',\n",
" 'hearing',\n",
" 'by',\n",
" 'community',\n",
" 'board',\n",
" ':'),\n",
" 35),\n",
" (('have',\n",
" 'been',\n",
" 'scheduled',\n",
" 'for',\n",
" 'public',\n",
" 'hearing',\n",
" 'by',\n",
" 'community',\n",
" 'board'),\n",
" 35),\n",
" (('scheduled',\n",
" 'for',\n",
" 'public',\n",
" 'hearing',\n",
" 'by',\n",
" 'community',\n",
" 'board',\n",
" ':',\n",
" 'borough'),\n",
" 35),\n",
" (('for',\n",
" 'public',\n",
" 'hearing',\n",
" 'by',\n",
" 'community',\n",
" 'board',\n",
" ':',\n",
" 'borough',\n",
" 'of'),\n",
" 35),\n",
" (('spector', 'hall', ',', '22', 'reade', 'street', ',', 'new', 'york'), 32),\n",
" (('the',\n",
" 'nature',\n",
" 'of',\n",
" 'services',\n",
" 'performed',\n",
" 'under',\n",
" 'the',\n",
" 'contract',\n",
" ':'),\n",
" 31),\n",
" (('in', 'spector', 'hall', ',', '22', 'reade', 'street', ',', 'new'), 31),\n",
" (('to',\n",
" 'the',\n",
" 'nature',\n",
" 'of',\n",
" 'services',\n",
" 'performed',\n",
" 'under',\n",
" 'the',\n",
" 'contract'),\n",
" 31),\n",
" (('modifications',\n",
" 'sought',\n",
" 'to',\n",
" 'the',\n",
" 'nature',\n",
" 'of',\n",
" 'services',\n",
" 'performed',\n",
" 'under'),\n",
" 31),\n",
" (('sought',\n",
" 'to',\n",
" 'the',\n",
" 'nature',\n",
" 'of',\n",
" 'services',\n",
" 'performed',\n",
" 'under',\n",
" 'the'),\n",
" 31),\n",
" (('hall', ',', '22', 'reade', 'street', ',', 'new', 'york', ','), 31),\n",
" (('similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'agency',\n",
" ':',\n",
" 'department'),\n",
" 30),\n",
" (('titles', 'within', 'agency', ':', '0', 'agency', ':', 'department', 'of'),\n",
" 30),\n",
" (('language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the',\n",
" 'mayor',\n",
" \"'s\",\n",
" 'office',\n",
" 'of'),\n",
" 27),\n",
" (('sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the',\n",
" 'mayor',\n",
" \"'s\",\n",
" 'office'),\n",
" 27),\n",
" (('individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the',\n",
" 'mayor'),\n",
" 27),\n",
" (('requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the',\n",
" 'mayor',\n",
" \"'s\"),\n",
" 27),\n",
" (('notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'a',\n",
" 'public',\n",
" 'hearing',\n",
" 'will'),\n",
" 25),\n",
" (('is', 'hereby', 'given', 'that', 'a', 'public', 'hearing', 'will', 'be'),\n",
" 25),\n",
" (('hereby', 'given', 'that', 'a', 'public', 'hearing', 'will', 'be', 'held'),\n",
" 25),\n",
" (('at', 'the', 'call', 'of', 'the', 'chairman', '.', 'board', 'of'), 24),\n",
" (('information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description',\n",
" 'of',\n",
" 'services',\n",
" 'sought',\n",
" ':'),\n",
" 23),\n",
" (('agency',\n",
" ':',\n",
" 'department',\n",
" 'of',\n",
" 'information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description'),\n",
" 23),\n",
" ((')', 'business', 'days', 'prior', 'to', 'the', 'public', 'hearing', '.'),\n",
" 23),\n",
" ((':',\n",
" 'department',\n",
" 'of',\n",
" 'information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description',\n",
" 'of'),\n",
" 23),\n",
" (('of',\n",
" 'information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description',\n",
" 'of',\n",
" 'services',\n",
" 'sought'),\n",
" 23),\n",
" (('st', 'in', 'the', 'borough', 'of', 'manhattan', '(', 'to', 'continue'),\n",
" 23),\n",
" (('department',\n",
" 'of',\n",
" 'information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description',\n",
" 'of',\n",
" 'services'),\n",
" 23),\n",
" (('given', 'that', 'a', 'public', 'hearing', 'will', 'be', 'held', 'at'), 22),\n",
" (('that', 'a', 'public', 'hearing', 'will', 'be', 'held', 'at', 'the'), 22),\n",
" (('nature',\n",
" 'of',\n",
" 'services',\n",
" 'performed',\n",
" 'under',\n",
" 'the',\n",
" 'contract',\n",
" ':',\n",
" 'none'),\n",
" 22),\n",
" ((',',\n",
" 'municipal',\n",
" 'building',\n",
" ',',\n",
" 'manhattan',\n",
" ',',\n",
" 'new',\n",
" 'york',\n",
" '10007'),\n",
" 22),\n",
" (('under', 'the', 'contract', ':', 'none', 'reason', '(', 's', ')'), 22),\n",
" (('performed', 'under', 'the', 'contract', ':', 'none', 'reason', '(', 's'),\n",
" 22),\n",
" (('of',\n",
" 'services',\n",
" 'performed',\n",
" 'under',\n",
" 'the',\n",
" 'contract',\n",
" ':',\n",
" 'none',\n",
" 'reason'),\n",
" 22),\n",
" (('contract', ':', 'none', 'reason', '(', 's', ')', 'the', 'agency'), 22),\n",
" (('the', 'contract', ':', 'none', 'reason', '(', 's', ')', 'the'), 22),\n",
" (('services',\n",
" 'performed',\n",
" 'under',\n",
" 'the',\n",
" 'contract',\n",
" ':',\n",
" 'none',\n",
" 'reason',\n",
" '('),\n",
" 22),\n",
" (('caf', 'for', 'a', 'term', 'of', 'two', 'years', '.', ')'), 22),\n",
" (('sidewalk', 'caf', 'for', 'a', 'term', 'of', 'two', 'years', '.'), 22),\n",
" ((':', 'none', 'reason', '(', 's', ')', 'the', 'agency', 'intends'), 22),\n",
" (('municipal',\n",
" 'building',\n",
" ',',\n",
" 'manhattan',\n",
" ',',\n",
" 'new',\n",
" 'york',\n",
" '10007',\n",
" ','),\n",
" 22),\n",
" (('none', 'reason', '(', 's', ')', 'the', 'agency', 'intends', 'to'), 22),\n",
" (('services',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':'),\n",
" 21),\n",
" (('services', ',', 'public', 'hearings', 'unit', ',', '253', 'broadway', ','),\n",
" 21),\n",
" (('s',\n",
" ')',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'renew/extend',\n",
" 'the',\n",
" 'contract'),\n",
" 20),\n",
" (('reason', '(', 's', ')', 'the', 'agency', 'intends', 'to', 'renew/extend'),\n",
" 20),\n",
" (('agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'amendment',\n",
" 'extension',\n",
" 'new',\n",
" 'start'),\n",
" 20),\n",
" (('(', 's', ')', 'the', 'agency', 'intends', 'to', 'renew/extend', 'the'),\n",
" 20),\n",
" (('in', 'the', 'matter', 'of', 'a', 'proposed', 'contract', 'between', 'the'),\n",
" 20),\n",
" (('new',\n",
" 'end',\n",
" 'date',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'renewed/extended',\n",
" 'contract',\n",
" ':'),\n",
" 20),\n",
" (('the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'amendment',\n",
" 'extension',\n",
" 'new'),\n",
" 20),\n",
" (('new',\n",
" 'start',\n",
" 'date',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'renewed/extended',\n",
" 'contract',\n",
" ':'),\n",
" 20),\n",
" ((')',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'renew/extend',\n",
" 'the',\n",
" 'contract',\n",
" ':'),\n",
" 20),\n",
" (('intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'amendment',\n",
" 'extension',\n",
" 'new',\n",
" 'start',\n",
" 'date'),\n",
" 20),\n",
" (('utilize',\n",
" ':',\n",
" 'amendment',\n",
" 'extension',\n",
" 'new',\n",
" 'start',\n",
" 'date',\n",
" 'of',\n",
" 'the'),\n",
" 20),\n",
" ((':',\n",
" 'amendment',\n",
" 'extension',\n",
" 'new',\n",
" 'start',\n",
" 'date',\n",
" 'of',\n",
" 'the',\n",
" 'proposed'),\n",
" 20),\n",
" (('a.m.', 'on', 'the', 'following', ':', 'in', 'the', 'matter', 'of'), 20),\n",
" (('to',\n",
" 'utilize',\n",
" ':',\n",
" 'amendment',\n",
" 'extension',\n",
" 'new',\n",
" 'start',\n",
" 'date',\n",
" 'of'),\n",
" 20),\n",
" (('method',\n",
" 'of',\n",
" 'renewal/extension',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':'),\n",
" 19),\n",
" ((',',\n",
" 'maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed',\n",
" 'sidewalk',\n",
" 'caf'),\n",
" 19),\n",
" (('212', ')', '788-7490', ',', 'no', 'later', 'than', 'seven', '('), 19),\n",
" (('later', 'than', 'seven', '(', '7', ')', 'business', 'days', 'prior'), 19),\n",
" ((',', 'no', 'later', 'than', 'seven', '(', '7', ')', 'business'), 19),\n",
" (('(', '212', ')', '788-7490', ',', 'no', 'later', 'than', 'seven'), 19),\n",
" (('than', 'seven', '(', '7', ')', 'business', 'days', 'prior', 'to'), 19),\n",
" ((')', '788-7490', ',', 'no', 'later', 'than', 'seven', '(', '7'), 19),\n",
" (('788-7490', ',', 'no', 'later', 'than', 'seven', '(', '7', ')'), 19),\n",
" (('of',\n",
" 'services',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency'),\n",
" 19),\n",
" (('(', '7', ')', 'business', 'days', 'prior', 'to', 'the', 'public'), 19),\n",
" (('unenclosed', 'sidewalk', 'caf', 'for', 'a', 'term', 'of', 'two', 'years'),\n",
" 19),\n",
" (('seven', '(', '7', ')', 'business', 'days', 'prior', 'to', 'the'), 19),\n",
" (('no', 'later', 'than', 'seven', '(', '7', ')', 'business', 'days'), 19),\n",
" (('the',\n",
" 'mayor',\n",
" \"'s\",\n",
" 'office',\n",
" 'of',\n",
" 'contract',\n",
" 'services',\n",
" ',',\n",
" 'public'),\n",
" 18),\n",
" (('197-c', 'and', '201', 'of', 'the', 'new', 'york', 'city', 'charter'), 18),\n",
" (('agency',\n",
" ':',\n",
" 'department',\n",
" 'of',\n",
" 'parks',\n",
" 'and',\n",
" 'recreation',\n",
" 'nature',\n",
" 'of'),\n",
" 18),\n",
" (('of',\n",
" 'contract',\n",
" 'services',\n",
" ',',\n",
" 'public',\n",
" 'hearings',\n",
" 'unit',\n",
" ',',\n",
" '253'),\n",
" 18),\n",
" (('pursuant', 'to', 'sections', '197-c', 'and', '201', 'of', 'the', 'new'),\n",
" 18),\n",
" (('10007', ',', '(', '212', ')', '788-7490', ',', 'no', 'later'), 18),\n",
" (('.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the'),\n",
" 18),\n",
" ((\"'s\",\n",
" 'office',\n",
" 'of',\n",
" 'contract',\n",
" 'services',\n",
" ',',\n",
" 'public',\n",
" 'hearings',\n",
" 'unit'),\n",
" 18),\n",
" (('should',\n",
" 'contact',\n",
" 'the',\n",
" 'mayor',\n",
" \"'s\",\n",
" 'office',\n",
" 'of',\n",
" 'contract',\n",
" 'services'),\n",
" 18),\n",
" (('contact',\n",
" 'the',\n",
" 'mayor',\n",
" \"'s\",\n",
" 'office',\n",
" 'of',\n",
" 'contract',\n",
" 'services',\n",
" ','),\n",
" 18),\n",
" (('and', '201', 'of', 'the', 'new', 'york', 'city', 'charter', 'for'), 18),\n",
" (('in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'notice'),\n",
" 18),\n",
" (('an', 'unenclosed', 'sidewalk', 'caf', 'for', 'a', 'term', 'of', 'two'),\n",
" 18),\n",
" (('mayor',\n",
" \"'s\",\n",
" 'office',\n",
" 'of',\n",
" 'contract',\n",
" 'services',\n",
" ',',\n",
" 'public',\n",
" 'hearings'),\n",
" 18),\n",
" (('contract',\n",
" 'services',\n",
" ',',\n",
" 'public',\n",
" 'hearings',\n",
" 'unit',\n",
" ',',\n",
" '253',\n",
" 'broadway'),\n",
" 18),\n",
" ((',', '(', '212', ')', '788-7490', ',', 'no', 'later', 'than'), 18),\n",
" (('interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the',\n",
" 'mayor',\n",
" \"'s\",\n",
" 'office',\n",
" 'of',\n",
" 'contract'),\n",
" 18),\n",
" (('office',\n",
" 'of',\n",
" 'contract',\n",
" 'services',\n",
" ',',\n",
" 'public',\n",
" 'hearings',\n",
" 'unit',\n",
" ','),\n",
" 18),\n",
" (('sections', '197-c', 'and', '201', 'of', 'the', 'new', 'york', 'city'), 17),\n",
" ((',', '22', 'reade', 'street', ',', 'new', 'york', ',', 'ny'), 17),\n",
" (('to', 'sections', '197-c', 'and', '201', 'of', 'the', 'new', 'york'), 17),\n",
" ((':',\n",
" 'department',\n",
" 'of',\n",
" 'parks',\n",
" 'and',\n",
" 'recreation',\n",
" 'nature',\n",
" 'of',\n",
" 'services'),\n",
" 16),\n",
" (('the', 'following', 'extension', '(', 's', ')', 'of', '(', 'a'), 16),\n",
" ((')', 'of', '(', 'a', ')', 'contract', '(', 's', ')'), 16),\n",
" (('in', 'equal', 'monthly', 'installments', 'at', 'the', 'end', 'of', 'each'),\n",
" 16),\n",
" (('contract', '(', 's', ')', 'not', 'included', 'in', 'the', 'fy'), 16),\n",
" (('following', 'extension', '(', 's', ')', 'of', '(', 'a', ')'), 16),\n",
" (('a', ')', 'contract', '(', 's', ')', 'not', 'included', 'in'), 16),\n",
" (('extension', '(', 's', ')', 'of', '(', 'a', ')', 'contract'), 16),\n",
" (('of', 'intent', 'to', 'extend', 'contract', '(', 's', ')', 'not'), 16),\n",
" (('prior', 'to', 'the', 'public', 'hearing', '.', 'tdd', 'users', 'should'),\n",
" 16),\n",
" (('no', 'later', 'than', 'five', '(', '5', ')', 'business', 'days'), 16),\n",
" ((')', 'contract', '(', 's', ')', 'not', 'included', 'in', 'the'), 16),\n",
" (('for', 'the', 'city', 'of', 'new', 'york', ',', 'as', 'tenant'), 16),\n",
" (('intent', 'to', 'extend', 'contract', '(', 's', ')', 'not', 'included'),\n",
" 16),\n",
" (('to', 'continue', 'to', ',', 'maintain', ',', 'and', 'operate', 'an'), 16),\n",
" (('notice', 'of', 'intent', 'to', 'extend', 'contract', '(', 's', ')'), 16),\n",
" (('extend', 'contract', '(', 's', ')', 'not', 'included', 'in', 'fy'), 16),\n",
" ((',', '22', 'reade', 'street', ',', 'new', 'york', ',', 'n.y.'), 16),\n",
" (('nan', 'notice', 'of', 'intent', 'to', 'issue', 'new', 'solicitation', '('),\n",
" 16),\n",
" (('(', 's', ')', 'of', '(', 'a', ')', 'contract', '('), 16),\n",
" (('(', 'a', ')', 'contract', '(', 's', ')', 'not', 'included'), 16),\n",
" (('hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'entering',\n",
" 'into'),\n",
" 16),\n",
" (('will',\n",
" 'be',\n",
" 'entering',\n",
" 'into',\n",
" 'the',\n",
" 'following',\n",
" 'extension',\n",
" '(',\n",
" 's'),\n",
" 16),\n",
" (('to', 'the', 'public', 'hearing', '.', 'tdd', 'users', 'should', 'call'),\n",
" 16),\n",
" (('.', 'notice', 'of', 'intent', 'to', 'issue', 'new', 'solicitation', '('),\n",
" 16),\n",
" (('payable',\n",
" 'in',\n",
" 'equal',\n",
" 'monthly',\n",
" 'installments',\n",
" 'at',\n",
" 'the',\n",
" 'end',\n",
" 'of'),\n",
" 16),\n",
" (('(', 'to', 'continue', 'to', ',', 'maintain', ',', 'and', 'operate'), 16),\n",
" (('22', 'reade', 'street', ',', 'new', 'york', ',', 'n.y.', '10007'), 16),\n",
" (('the', 'city', 'of', 'new', 'york', ',', 'as', 'tenant', ','), 16),\n",
" (('mayor',\n",
" 'will',\n",
" 'be',\n",
" 'entering',\n",
" 'into',\n",
" 'the',\n",
" 'following',\n",
" 'extension',\n",
" '('),\n",
" 16),\n",
" (('contract', '(', 's', ')', 'not', 'included', 'in', 'fy', '2015'), 16),\n",
" (('that',\n",
" 'the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'entering',\n",
" 'into',\n",
" 'the',\n",
" 'following'),\n",
" 16),\n",
" (('of', '(', 'a', ')', 'contract', '(', 's', ')', 'not'), 16),\n",
" (('s', ')', 'of', '(', 'a', ')', 'contract', '(', 's'), 16),\n",
" (('public',\n",
" 'hearing',\n",
" '.',\n",
" 'tdd',\n",
" 'users',\n",
" 'should',\n",
" 'call',\n",
" 'verizon',\n",
" 'relay'),\n",
" 16),\n",
" (('days', 'prior', 'to', 'the', 'public', 'hearing', '.', 'tdd', 'users'),\n",
" 16),\n",
" (('be', 'entering', 'into', 'the', 'following', 'extension', '(', 's', ')'),\n",
" 16),\n",
" (('the',\n",
" 'public',\n",
" 'hearing',\n",
" '.',\n",
" 'tdd',\n",
" 'users',\n",
" 'should',\n",
" 'call',\n",
" 'verizon'),\n",
" 16),\n",
" (('given', 'that', 'the', 'mayor', 'will', 'be', 'entering', 'into', 'the'),\n",
" 16),\n",
" (('monthly', 'installments', 'at', 'the', 'end', 'of', 'each', 'month', '.'),\n",
" 16),\n",
" (('department',\n",
" 'of',\n",
" 'parks',\n",
" 'and',\n",
" 'recreation',\n",
" 'nature',\n",
" 'of',\n",
" 'services',\n",
" 'sought'),\n",
" 16),\n",
" (('to', 'extend', 'contract', '(', 's', ')', 'not', 'included', 'in'), 16),\n",
" (('into', 'the', 'following', 'extension', '(', 's', ')', 'of', '('), 16),\n",
" (('7', ')', 'business', 'days', 'prior', 'to', 'the', 'public', 'hearing'),\n",
" 16),\n",
" (('business', 'days', 'prior', 'to', 'the', 'public', 'hearing', '.', 'tdd'),\n",
" 16),\n",
" (('of',\n",
" 'parks',\n",
" 'and',\n",
" 'recreation',\n",
" 'nature',\n",
" 'of',\n",
" 'services',\n",
" 'sought',\n",
" ':'),\n",
" 16),\n",
" (('is', 'hereby', 'given', 'that', 'the', 'mayor', 'will', 'be', 'entering'),\n",
" 16),\n",
" ((',', 'in', 'spector', 'hall', ',', '22', 'reade', 'street', ','), 16),\n",
" (('entering', 'into', 'the', 'following', 'extension', '(', 's', ')', 'of'),\n",
" 16),\n",
" (('the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'entering',\n",
" 'into',\n",
" 'the',\n",
" 'following',\n",
" 'extension'),\n",
" 16),\n",
" (('equal',\n",
" 'monthly',\n",
" 'installments',\n",
" 'at',\n",
" 'the',\n",
" 'end',\n",
" 'of',\n",
" 'each',\n",
" 'month'),\n",
" 16),\n",
" (('the', 'schedule', 'will', 'be', 'posted', 'here', 'and', 'on', 'nycha'),\n",
" 15),\n",
" (('be', 'posted', 'here', 'and', 'on', 'nycha', \"'s\", 'website', 'at'), 15),\n",
" (('and',\n",
" 'on',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml'),\n",
" 15),\n",
" (('hereby',\n",
" 'given',\n",
" 'of',\n",
" 'a',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'tuesday',\n",
" 'morning'),\n",
" 15),\n",
" (('posted', 'here', 'and', 'on', 'nycha', \"'s\", 'website', 'at', 'http'), 15),\n",
" (('here', 'and', 'on', 'nycha', \"'s\", 'website', 'at', 'http', ':'), 15),\n",
" (('to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at',\n",
" 'a',\n",
" 'reasonable',\n",
" 'time',\n",
" 'before'),\n",
" 15),\n",
" (('reade',\n",
" 'street',\n",
" ',',\n",
" '2nd',\n",
" 'floor',\n",
" 'conference',\n",
" 'room',\n",
" ',',\n",
" 'borough'),\n",
" 15),\n",
" ((':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at',\n",
" 'a',\n",
" 'reasonable'),\n",
" 15),\n",
" (('the', 'board', 'room', 'on', 'the', '12th', 'floor', 'of', '250'), 15),\n",
" (('.', 'any', 'changes', 'to', 'the', 'schedule', 'will', 'be', 'posted'),\n",
" 15),\n",
" (('22', 'reade', 'street', ',', '2nd', 'floor', 'conference', 'room', ','),\n",
" 15),\n",
" (('//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at',\n",
" 'a',\n",
" 'reasonable',\n",
" 'time'),\n",
" 15),\n",
" ((',', 'please', 'visit', 'nycha', \"'s\", 'website', 'or', 'contact', '('),\n",
" 15),\n",
" (('public',\n",
" 'hearing',\n",
" 'by',\n",
" 'community',\n",
" 'board',\n",
" ':',\n",
" 'borough',\n",
" 'of',\n",
" 'brooklyn'),\n",
" 15),\n",
" (('street', ',', '12th', 'floor', ',', 'training', 'room', '#', '143'), 15),\n",
" (('12th', 'floor', ',', 'training', 'room', '#', '143', ',', 'new'), 15),\n",
" ((',', 'training', 'room', '#', '143', ',', 'new', 'york', ','), 15),\n",
" (('at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at'),\n",
" 15),\n",
" (('extension',\n",
" 'new',\n",
" 'start',\n",
" 'date',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'renewed/extended',\n",
" 'contract'),\n",
" 15),\n",
" ((\"'s\",\n",
" 'website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent'),\n",
" 15),\n",
" (('the', '12th', 'floor', 'of', '250', 'broadway', ',', 'new', 'york'), 15),\n",
" (('to', 'section', '3-04', '(', 'b', ')', '(', '2', ')'), 15),\n",
" (('visit', 'nycha', \"'s\", 'website', 'or', 'contact', '(', '212', ')'), 15),\n",
" (('administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" ',',\n",
" 'office',\n",
" 'of',\n",
" 'procurement'),\n",
" 15),\n",
" (('.', 'tdd', 'users', 'should', 'call', 'verizon', 'relay', 'services', '.'),\n",
" 15),\n",
" (('schedule', 'will', 'be', 'posted', 'here', 'and', 'on', 'nycha', \"'s\"),\n",
" 15),\n",
" (('room', 'on', 'the', '12th', 'floor', 'of', '250', 'broadway', ','), 15),\n",
" (('installments', 'at', 'the', 'end', 'of', 'each', 'month', '.', 'the'), 15),\n",
" (('the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at',\n",
" 'a',\n",
" 'reasonable',\n",
" 'time',\n",
" 'before',\n",
" 'the'),\n",
" 15),\n",
" ((',', '12th', 'floor', ',', 'training', 'room', '#', '143', ','), 15),\n",
" (('practicable',\n",
" 'at',\n",
" 'a',\n",
" 'reasonable',\n",
" 'time',\n",
" 'before',\n",
" 'the',\n",
" 'meeting',\n",
" '.'),\n",
" 15),\n",
" (('is', 'hereby', 'given', 'of', 'a', 'public', 'hearing', ',', 'tuesday'),\n",
" 15),\n",
" (('website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable'),\n",
" 15),\n",
" (('notice', 'is', 'hereby', 'given', 'of', 'a', 'public', 'hearing', ','),\n",
" 15),\n",
" (('by',\n",
" 'community',\n",
" 'board',\n",
" ':',\n",
" 'borough',\n",
" 'of',\n",
" 'brooklyn',\n",
" 'community',\n",
" 'board'),\n",
" 15),\n",
" (('city', 'of', 'new', 'york', ',', 'as', 'tenant', ',', 'of'), 15),\n",
" (('information',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'or',\n",
" 'contact'),\n",
" 15),\n",
" (('to', 'the', 'schedule', 'will', 'be', 'posted', 'here', 'and', 'on'), 15),\n",
" (('meeting',\n",
" '.',\n",
" 'for',\n",
" 'additional',\n",
" 'information',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nycha'),\n",
" 15),\n",
" (('for',\n",
" 'additional',\n",
" 'information',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website'),\n",
" 15),\n",
" (('any', 'changes', 'to', 'the', 'schedule', 'will', 'be', 'posted', 'here'),\n",
" 15),\n",
" (('to',\n",
" ',',\n",
" 'maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed',\n",
" 'sidewalk'),\n",
" 15),\n",
" (('in', 'the', 'board', 'room', 'on', 'the', '12th', 'floor', 'of'), 15),\n",
" (('hearing',\n",
" 'by',\n",
" 'community',\n",
" 'board',\n",
" ':',\n",
" 'borough',\n",
" 'of',\n",
" 'brooklyn',\n",
" 'community'),\n",
" 15),\n",
" (('changes', 'to', 'the', 'schedule', 'will', 'be', 'posted', 'here', 'and'),\n",
" 15),\n",
" (('a.m.', 'in', 'the', 'board', 'room', 'on', 'the', '12th', 'floor'), 15),\n",
" (('extent',\n",
" 'practicable',\n",
" 'at',\n",
" 'a',\n",
" 'reasonable',\n",
" 'time',\n",
" 'before',\n",
" 'the',\n",
" 'meeting'),\n",
" 15),\n",
" (('hearing',\n",
" '.',\n",
" 'tdd',\n",
" 'users',\n",
" 'should',\n",
" 'call',\n",
" 'verizon',\n",
" 'relay',\n",
" 'services'),\n",
" 15),\n",
" (('on',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to'),\n",
" 15),\n",
" (('will', 'be', 'posted', 'here', 'and', 'on', 'nycha', \"'s\", 'website'), 15),\n",
" (('12th', 'floor', 'of', '250', 'broadway', ',', 'new', 'york', ','), 15),\n",
" (('http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at',\n",
" 'a'),\n",
" 15),\n",
" (('100', 'church', 'street', ',', '12th', 'floor', ',', 'training', 'room'),\n",
" 15),\n",
" (('at', '100', 'church', 'street', ',', '12th', 'floor', ',', 'training'),\n",
" 15),\n",
" (('in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'nan'),\n",
" 15),\n",
" (('on', 'the', '12th', 'floor', 'of', '250', 'broadway', ',', 'new'), 15),\n",
" (('street', ',', '2nd', 'floor', 'conference', 'room', ',', 'borough', 'of'),\n",
" 15),\n",
" (('.',\n",
" 'for',\n",
" 'additional',\n",
" 'information',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nycha',\n",
" \"'s\"),\n",
" 15),\n",
" (('nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the'),\n",
" 15),\n",
" (('given', 'of', 'a', 'public', 'hearing', ',', 'tuesday', 'morning', ','),\n",
" 15),\n",
" (('church', 'street', ',', '12th', 'floor', ',', 'training', 'room', '#'),\n",
" 15),\n",
" (('10:00', 'a.m.', 'in', 'the', 'board', 'room', 'on', 'the', '12th'), 15),\n",
" (('continue',\n",
" 'to',\n",
" ',',\n",
" 'maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed'),\n",
" 15),\n",
" (('board', 'room', 'on', 'the', '12th', 'floor', 'of', '250', 'broadway'),\n",
" 15),\n",
" (('pursuant', 'to', 'section', '3-04', '(', 'b', ')', '(', '2'), 15),\n",
" (('at', '10:00', 'a.m.', 'in', 'the', 'board', 'room', 'on', 'the'), 15),\n",
" (('please', 'visit', 'nycha', \"'s\", 'website', 'or', 'contact', '(', '212'),\n",
" 15),\n",
" (('floor', ',', 'training', 'room', '#', '143', ',', 'new', 'york'), 15),\n",
" (('additional',\n",
" 'information',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'or'),\n",
" 15),\n",
" ((',',\n",
" '2nd',\n",
" 'floor',\n",
" 'conference',\n",
" 'room',\n",
" ',',\n",
" 'borough',\n",
" 'of',\n",
" 'manhattan'),\n",
" 15),\n",
" (('community',\n",
" 'district',\n",
" '2',\n",
" ',',\n",
" 'manhattan',\n",
" 'certificate',\n",
" 'of',\n",
" 'appropriateness',\n",
" 'a'),\n",
" 15),\n",
" (('building', ',', 'manhattan', ',', 'new', 'york', '10007', ',', 'at'), 15),\n",
" ((',', '253', 'broadway', ',', '2nd', 'floor', ',', 'new', 'york'), 14),\n",
" (('substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'notice',\n",
" 'of'),\n",
" 14),\n",
" (('212',\n",
" ')',\n",
" '386-0315',\n",
" '.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters'),\n",
" 14),\n",
" (('2nd', 'floor', ',', 'new', 'york', ',', 'n.y.', '10007', ','), 14),\n",
" ((',', 'new', 'york', ',', 'n.y.', '10007', '.', 'to', 'schedule'), 14),\n",
" (('agency',\n",
" ':',\n",
" '0',\n",
" 'agency',\n",
" ':',\n",
" 'department',\n",
" 'of',\n",
" 'information',\n",
" 'technology'),\n",
" 14),\n",
" (('of', 'new', 'york', ',', 'as', 'tenant', ',', 'of', 'approximately'), 14),\n",
" (('centre', 'street', ',', 'room', '2000', 'north', ',', 'new', 'york'), 14),\n",
" (('reade', 'street', ',', 'new', 'york', ',', 'n.y.', '10007', ','), 14),\n",
" (('unit', ',', '253', 'broadway', ',', '2nd', 'floor', ',', 'new'), 14),\n",
" (('at', 'one', 'centre', 'street', ',', 'room', '2000', 'north', ','), 14),\n",
" ((',', 'public', 'hearings', 'unit', ',', '253', 'broadway', ',', '2nd'), 14),\n",
" (('an',\n",
" 'inspection',\n",
" ',',\n",
" 'please',\n",
" 'contact',\n",
" 'chris',\n",
" 'fleming',\n",
" 'at',\n",
" '('),\n",
" 14),\n",
" (('386-0315',\n",
" '.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact'),\n",
" 14),\n",
" (('contact', 'chris', 'fleming', 'at', '(', '212', ')', '386-0315', '.'), 14),\n",
" (('that',\n",
" 'a',\n",
" 'real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing'),\n",
" 14),\n",
" (('solicitation',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'competitive',\n",
" 'sealed'),\n",
" 14),\n",
" (('at',\n",
" '(',\n",
" '212',\n",
" ')',\n",
" '386-0315',\n",
" '.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign'),\n",
" 14),\n",
" (('dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'in',\n",
" 'accordance',\n",
" 'with',\n",
" 'section',\n",
" '824'),\n",
" 14),\n",
" (('n.y.', '10007', ',', '(', '212', ')', '788-7490', ',', 'no'), 14),\n",
" (('section', '3-04', '(', 'b', ')', '(', '2', ')', '('), 14),\n",
" (('obtained', 'at', 'one', 'centre', 'street', ',', 'room', '2000', 'north'),\n",
" 14),\n",
" (('fleming',\n",
" 'at',\n",
" '(',\n",
" '212',\n",
" ')',\n",
" '386-0315',\n",
" '.',\n",
" 'individuals',\n",
" 'requesting'),\n",
" 14),\n",
" (('a.m.', ',', '22', 'reade', 'street', ',', '2nd', 'floor', 'conference'),\n",
" 14),\n",
" (('room', '2000', 'north', ',', 'new', 'york', ',', 'n.y.', '10007'), 14),\n",
" (('n.y.', '10007', '.', 'to', 'schedule', 'an', 'inspection', ',', 'please'),\n",
" 14),\n",
" (('824', 'of', 'the', 'new', 'york', 'city', 'charter', ',', 'will'), 14),\n",
" (('notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'a',\n",
" 'real',\n",
" 'property',\n",
" 'acquisitions'),\n",
" 14),\n",
" (('york', ',', 'n.y.', '10007', ',', 'on', 'the', 'following', 'matters'),\n",
" 14),\n",
" (('island',\n",
" ',',\n",
" 'new',\n",
" 'york',\n",
" 'having',\n",
" 'an',\n",
" 'approximate',\n",
" 'original',\n",
" 'principal'),\n",
" 14),\n",
" ((',', 'municipal', 'building', ',', 'manhattan', ',', 'ny', '10007', ','),\n",
" 14),\n",
" (('new', 'york', 'city', 'charter', ',', 'will', 'be', 'held', 'on'), 14),\n",
" (('hearings', 'unit', ',', '253', 'broadway', ',', '2nd', 'floor', ','), 14),\n",
" (('information',\n",
" ',',\n",
" 'including',\n",
" 'public',\n",
" 'inspection',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'lease'),\n",
" 14),\n",
" (('york', ',', 'n.y.', '10007', ',', '(', '212', ')', '788-7490'), 14),\n",
" (('on', 'the', 'following', ':', 'in', 'the', 'matter', 'of', 'a'), 14),\n",
" (('further',\n",
" 'information',\n",
" ',',\n",
" 'including',\n",
" 'public',\n",
" 'inspection',\n",
" 'of',\n",
" 'the',\n",
" 'proposed'),\n",
" 14),\n",
" (('to',\n",
" 'schedule',\n",
" 'an',\n",
" 'inspection',\n",
" ',',\n",
" 'please',\n",
" 'contact',\n",
" 'chris',\n",
" 'fleming'),\n",
" 14),\n",
" (('similar', 'titles', 'within', 'agency', ':', '0', 'agency', ':', 'ddc'),\n",
" 14),\n",
" (('10007',\n",
" '.',\n",
" 'to',\n",
" 'schedule',\n",
" 'an',\n",
" 'inspection',\n",
" ',',\n",
" 'please',\n",
" 'contact'),\n",
" 14),\n",
" ((',', '2nd', 'floor', ',', 'new', 'york', ',', 'n.y.', '10007'), 14),\n",
" ((',', 'new', 'york', ',', 'n.y.', '10007', ',', '(', '212'), 14),\n",
" (('staten',\n",
" 'island',\n",
" ',',\n",
" 'new',\n",
" 'york',\n",
" 'having',\n",
" 'an',\n",
" 'approximate',\n",
" 'original'),\n",
" 14),\n",
" (('acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'in',\n",
" 'accordance',\n",
" 'with'),\n",
" 14),\n",
" (('section', '824', 'of', 'the', 'new', 'york', 'city', 'charter', ','), 14),\n",
" (('one', 'centre', 'street', ',', 'room', '2000', 'north', ',', 'new'), 14),\n",
" (('2000', 'north', ',', 'new', 'york', ',', 'n.y.', '10007', '.'), 14),\n",
" (('following', ':', 'in', 'the', 'matter', 'of', 'a', 'proposed', 'contract'),\n",
" 14),\n",
" (('of', 'the', 'new', 'york', 'city', 'charter', ',', 'will', 'be'), 14),\n",
" (('inspection',\n",
" ',',\n",
" 'please',\n",
" 'contact',\n",
" 'chris',\n",
" 'fleming',\n",
" 'at',\n",
" '(',\n",
" '212'),\n",
" 14),\n",
" (('the', 'new', 'york', 'city', 'charter', ',', 'will', 'be', 'held'), 14),\n",
" (('new', 'york', ',', 'n.y.', '10007', ',', '(', '212', ')'), 14),\n",
" (('please', 'contact', 'chris', 'fleming', 'at', '(', '212', ')', '386-0315'),\n",
" 14),\n",
" (('new', 'york', ',', 'n.y.', '10007', '.', 'to', 'schedule', 'an'), 14),\n",
" ((':', 'in', 'the', 'matter', 'of', 'a', 'proposed', 'contract', 'between'),\n",
" 14),\n",
" ((',',\n",
" 'including',\n",
" 'public',\n",
" 'inspection',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'lease',\n",
" 'may'),\n",
" 14),\n",
" (('street', ',', 'room', '2000', 'north', ',', 'new', 'york', ','), 14),\n",
" ((')',\n",
" '386-0315',\n",
" '.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should'),\n",
" 14),\n",
" (('the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services'),\n",
" 14),\n",
" (('given',\n",
" 'that',\n",
" 'a',\n",
" 'real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public'),\n",
" 14),\n",
" (('be', 'obtained', 'at', 'one', 'centre', 'street', ',', 'room', '2000'),\n",
" 14),\n",
" (('of', 'the', 'proposed', 'lease', 'may', 'be', 'obtained', 'at', 'one'),\n",
" 14),\n",
" (('inspection',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'lease',\n",
" 'may',\n",
" 'be',\n",
" 'obtained',\n",
" 'at'),\n",
" 14),\n",
" (('.',\n",
" 'to',\n",
" 'schedule',\n",
" 'an',\n",
" 'inspection',\n",
" ',',\n",
" 'please',\n",
" 'contact',\n",
" 'chris'),\n",
" 14),\n",
" (('253', 'broadway', ',', '2nd', 'floor', ',', 'new', 'york', ','), 14),\n",
" (('north', ',', 'new', 'york', ',', 'n.y.', '10007', '.', 'to'), 14),\n",
" (('.',\n",
" 'further',\n",
" 'information',\n",
" ',',\n",
" 'including',\n",
" 'public',\n",
" 'inspection',\n",
" 'of',\n",
" 'the'),\n",
" 14),\n",
" (('is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'a',\n",
" 'real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and'),\n",
" 14),\n",
" ((',', '22', 'reade', 'street', ',', '2nd', 'floor', 'conference', 'room'),\n",
" 14),\n",
" (('accordance', 'with', 'section', '824', 'of', 'the', 'new', 'york', 'city'),\n",
" 14),\n",
" (('hearing', ',', 'in', 'accordance', 'with', 'section', '824', 'of', 'the'),\n",
" 14),\n",
" (('schedule',\n",
" 'an',\n",
" 'inspection',\n",
" ',',\n",
" 'please',\n",
" 'contact',\n",
" 'chris',\n",
" 'fleming',\n",
" 'at'),\n",
" 14),\n",
" (('street', ',', 'new', 'york', ',', 'n.y.', '10007', ',', 'on'), 14),\n",
" (('real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'in'),\n",
" 14),\n",
" (('with', 'section', '824', 'of', 'the', 'new', 'york', 'city', 'charter'),\n",
" 14),\n",
" (('hereby',\n",
" 'given',\n",
" 'that',\n",
" 'a',\n",
" 'real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions'),\n",
" 14),\n",
" (('the', 'proposed', 'lease', 'may', 'be', 'obtained', 'at', 'one', 'centre'),\n",
" 14),\n",
" ((',', 'staten', 'island', ',', 'new', 'york', 'having', 'an', 'approximate'),\n",
" 14),\n",
" (('a',\n",
" 'real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ','),\n",
" 14),\n",
" (('may', 'be', 'obtained', 'at', 'one', 'centre', 'street', ',', 'room'), 14),\n",
" (('floor', ',', 'new', 'york', ',', 'n.y.', '10007', ',', '('), 14),\n",
" ((',', 'in', 'accordance', 'with', 'section', '824', 'of', 'the', 'new'), 14),\n",
" (('public',\n",
" 'hearing',\n",
" ',',\n",
" 'in',\n",
" 'accordance',\n",
" 'with',\n",
" 'section',\n",
" '824',\n",
" 'of'),\n",
" 14),\n",
" ((',', 'n.y.', '10007', '.', 'to', 'schedule', 'an', 'inspection', ','), 14),\n",
" ((',', 'please', 'contact', 'chris', 'fleming', 'at', '(', '212', ')'), 14),\n",
" (('property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'in',\n",
" 'accordance'),\n",
" 14),\n",
" (('chris', 'fleming', 'at', '(', '212', ')', '386-0315', '.', 'individuals'),\n",
" 14),\n",
" (('the', 'following', ':', 'in', 'the', 'matter', 'of', 'a', 'proposed'), 14),\n",
" ((',', 'n.y.', '10007', ',', '(', '212', ')', '788-7490', ','), 14),\n",
" (('lease', 'may', 'be', 'obtained', 'at', 'one', 'centre', 'street', ','),\n",
" 14),\n",
" (('in', 'accordance', 'with', 'section', '824', 'of', 'the', 'new', 'york'),\n",
" 14),\n",
" (('broadway', ',', '2nd', 'floor', ',', 'new', 'york', ',', 'n.y.'), 14),\n",
" ((',', 'room', '2000', 'north', ',', 'new', 'york', ',', 'n.y.'), 14),\n",
" (('and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'in',\n",
" 'accordance',\n",
" 'with',\n",
" 'section'),\n",
" 14),\n",
" (('201', 'of', 'the', 'new', 'york', 'city', 'charter', 'for', 'the'), 14),\n",
" (('public', 'hearings', 'unit', ',', '253', 'broadway', ',', '2nd', 'floor'),\n",
" 14),\n",
" (('including',\n",
" 'public',\n",
" 'inspection',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'lease',\n",
" 'may',\n",
" 'be'),\n",
" 14),\n",
" ((',', 'n.y.', '10007', ',', 'on', 'the', 'following', 'matters', ':'), 14),\n",
" ((',', 'pursuant', 'to', 'section', '3-04', '(', 'b', ')', '('), 14),\n",
" (('(',\n",
" '212',\n",
" ')',\n",
" '386-0315',\n",
" '.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language'),\n",
" 14),\n",
" (('of',\n",
" 'solicitation',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'competitive'),\n",
" 14),\n",
" ((',', 'new', 'york', ',', 'n.y.', '10007', ',', 'on', 'the'), 14),\n",
" (('york', ',', 'n.y.', '10007', '.', 'to', 'schedule', 'an', 'inspection'),\n",
" 14),\n",
" (('public',\n",
" 'inspection',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'lease',\n",
" 'may',\n",
" 'be',\n",
" 'obtained'),\n",
" 14),\n",
" (('new', 'york', ',', 'n.y.', '10007', ',', 'on', 'the', 'following'), 14),\n",
" (('proposed',\n",
" 'lease',\n",
" 'may',\n",
" 'be',\n",
" 'obtained',\n",
" 'at',\n",
" 'one',\n",
" 'centre',\n",
" 'street'),\n",
" 14),\n",
" (('inspection',\n",
" 'at',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'administration',\n",
" 'for',\n",
" 'children'),\n",
" 13),\n",
" (('pursuant', 'to', 'section', '501', '(', 'c', ')', '(', '3'), 13),\n",
" (('to', 'section', '501', '(', 'c', ')', '(', '3', ')'), 13),\n",
" (('room', '#', '143', ',', 'new', 'york', ',', 'ny', '10007'), 13),\n",
" (('held',\n",
" 'at',\n",
" 'the',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" ','),\n",
" 13),\n",
" ((',', '150', 'william', 'street', ',', '9th', 'floor', ',', 'borough'), 13),\n",
" (('501', '(', 'c', ')', '(', '3', ')', 'of', 'the'), 13),\n",
" (('corporation',\n",
" 'exempt',\n",
" 'from',\n",
" 'federal',\n",
" 'taxation',\n",
" 'pursuant',\n",
" 'to',\n",
" 'section',\n",
" '501'),\n",
" 13),\n",
" (('federal', 'taxation', 'pursuant', 'to', 'section', '501', '(', 'c', ')'),\n",
" 13),\n",
" (('the', 'procurement', 'policy', 'board', 'rules', '.', 'a', 'copy', 'of'),\n",
" 13),\n",
" (('of', 'the', 'procurement', 'policy', 'board', 'rules', '.', 'a', 'copy'),\n",
" 13),\n",
" (('be',\n",
" 'held',\n",
" 'at',\n",
" 'the',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services'),\n",
" 13),\n",
" (('street', ',', '9th', 'floor', ',', 'borough', 'of', 'manhattan', ','), 13),\n",
" (('exempt',\n",
" 'from',\n",
" 'federal',\n",
" 'taxation',\n",
" 'pursuant',\n",
" 'to',\n",
" 'section',\n",
" '501',\n",
" '('),\n",
" 13),\n",
" (('the',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" 'of',\n",
" 'the',\n",
" 'city'),\n",
" 13),\n",
" (('will',\n",
" 'be',\n",
" 'held',\n",
" 'at',\n",
" 'the',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\"),\n",
" 13),\n",
" (('public',\n",
" 'hearing',\n",
" 'will',\n",
" 'be',\n",
" 'held',\n",
" 'at',\n",
" 'the',\n",
" 'administration',\n",
" 'for'),\n",
" 13),\n",
" (('hearing',\n",
" 'will',\n",
" 'be',\n",
" 'held',\n",
" 'at',\n",
" 'the',\n",
" 'administration',\n",
" 'for',\n",
" 'children'),\n",
" 13),\n",
" (('procurement', 'policy', 'board', 'rules', '.', 'a', 'copy', 'of', 'the'),\n",
" 13),\n",
" (('note',\n",
" ':',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact'),\n",
" 13),\n",
" (('of',\n",
" 'design',\n",
" 'and',\n",
" 'construction',\n",
" 'description',\n",
" 'of',\n",
" 'services',\n",
" 'sought',\n",
" ':'),\n",
" 13),\n",
" (('143', ',', 'new', 'york', ',', 'ny', '10007', 'at', '9:15'), 13),\n",
" ((',', 'new', 'york', ',', 'ny', '10007', 'at', '9:15', 'a.m.'), 13),\n",
" (('new',\n",
" 'york',\n",
" 'having',\n",
" 'an',\n",
" 'approximate',\n",
" 'original',\n",
" 'principal',\n",
" 'amount',\n",
" 'of'),\n",
" 13),\n",
" (('150', 'william', 'street', ',', '9th', 'floor', ',', 'borough', 'of'), 13),\n",
" (('training', 'room', '#', '143', ',', 'new', 'york', ',', 'ny'), 13),\n",
" (('new',\n",
" 'york',\n",
" 'city',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" ','),\n",
" 13),\n",
" ((',',\n",
" 'new',\n",
" 'york',\n",
" 'having',\n",
" 'an',\n",
" 'approximate',\n",
" 'original',\n",
" 'principal',\n",
" 'amount'),\n",
" 13),\n",
" (('for', 'children', \"'s\", 'services', 'of', 'the', 'city', 'of', 'new'), 13),\n",
" (('city',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" ',',\n",
" 'office',\n",
" 'of'),\n",
" 13),\n",
" (('administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" 'of',\n",
" 'the',\n",
" 'city',\n",
" 'of'),\n",
" 13),\n",
" (('children', \"'s\", 'services', 'of', 'the', 'city', 'of', 'new', 'york'),\n",
" 13),\n",
" ((\"'s\", 'website', 'or', 'contact', '(', '212', ')', '306-6088', '.'), 13),\n",
" (('10:00', 'a.m.', 'on', 'the', 'following', ':', 'in', 'the', 'matter'), 13),\n",
" (('william',\n",
" 'street',\n",
" ',',\n",
" '9th',\n",
" 'floor',\n",
" ',',\n",
" 'borough',\n",
" 'of',\n",
" 'manhattan'),\n",
" 13),\n",
" (('street', ',', '2nd', 'floor', ',', 'new', 'york', ',', 'ny'), 13),\n",
" (('at', '10:00', 'a.m.', 'on', 'the', 'following', ':', 'in', 'the'), 13),\n",
" (('#', '143', ',', 'new', 'york', ',', 'ny', '10007', 'at'), 13),\n",
" ((':',\n",
" 'department',\n",
" 'of',\n",
" 'design',\n",
" 'and',\n",
" 'construction',\n",
" 'description',\n",
" 'of',\n",
" 'services'),\n",
" 13),\n",
" (('york',\n",
" 'city',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" ',',\n",
" 'office'),\n",
" 13),\n",
" (('between',\n",
" 'the',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" 'of',\n",
" 'the'),\n",
" 13),\n",
" ((\"'s\", 'services', 'of', 'the', 'city', 'of', 'new', 'york', 'and'), 13),\n",
" (('from',\n",
" 'federal',\n",
" 'taxation',\n",
" 'pursuant',\n",
" 'to',\n",
" 'section',\n",
" '501',\n",
" '(',\n",
" 'c'),\n",
" 13),\n",
" (('within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'agency',\n",
" ':',\n",
" 'department',\n",
" 'of',\n",
" 'information'),\n",
" 13),\n",
" (('a',\n",
" 'public',\n",
" 'hearing',\n",
" 'will',\n",
" 'be',\n",
" 'held',\n",
" 'at',\n",
" 'the',\n",
" 'administration'),\n",
" 13),\n",
" (('nycha', \"'s\", 'website', 'or', 'contact', '(', '212', ')', '306-6088'),\n",
" 13),\n",
" (('agency',\n",
" ':',\n",
" 'department',\n",
" 'of',\n",
" 'design',\n",
" 'and',\n",
" 'construction',\n",
" 'description',\n",
" 'of'),\n",
" 13),\n",
" (('department',\n",
" 'of',\n",
" 'design',\n",
" 'and',\n",
" 'construction',\n",
" 'description',\n",
" 'of',\n",
" 'services',\n",
" 'sought'),\n",
" 13),\n",
" (('llc', 'pursuant', 'to', 'sections', '197-c', 'and', '201', 'of', 'the'),\n",
" 13),\n",
" (('section', '501', '(', 'c', ')', '(', '3', ')', 'of'), 13),\n",
" (('york',\n",
" 'having',\n",
" 'an',\n",
" 'approximate',\n",
" 'original',\n",
" 'principal',\n",
" 'amount',\n",
" 'of',\n",
" '$'),\n",
" 13),\n",
" (('taxation', 'pursuant', 'to', 'section', '501', '(', 'c', ')', '('), 13),\n",
" (('at',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\"),\n",
" 13),\n",
" (('chairman',\n",
" '.',\n",
" 'housing',\n",
" 'authority',\n",
" 'board',\n",
" 'meetings',\n",
" 'of',\n",
" 'the',\n",
" 'new'),\n",
" 12),\n",
" (('meeting',\n",
" 'schedule',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nyc.gov/designcommission',\n",
" 'or',\n",
" 'call',\n",
" '212-788-3071'),\n",
" 12),\n",
" (('street', ',', 'main', 'floor', ',', 'manhattan', ',', 'monthly', 'on'),\n",
" 12),\n",
" (('40', 'rector', 'street', '.', 'for', 'changes', 'in', 'the', 'schedule'),\n",
" 12),\n",
" (('manhattan', '(', 'to', 'continue', 'to', ',', 'maintain', ',', 'and'), 12),\n",
" (('month', 'in', 'councilman', \"'s\", 'chamber', ',', 'city', 'hall', ','),\n",
" 12),\n",
" (('hours', 'of', '10', 'am', 'and', '4', 'pm', '.', 'please'), 12),\n",
" (('in', 'the', 'commission', \"'s\", 'central', 'office', ',', '40', 'rector'),\n",
" 12),\n",
" (('the', 'annual', 'meeting', 'is', 'held', 'on', 'the', 'first', 'tuesday'),\n",
" 12),\n",
" (('10007', ',', 'each', 'month', 'at', 'the', 'call', 'of', 'the'), 12),\n",
" (('between', 'the', 'hours', 'of', '10', 'am', 'and', '4', 'pm'), 12),\n",
" (('a.m.', 'review', 'sessions', 'begin', 'at', '9:30', 'a.m.', 'and', 'are'),\n",
" 12),\n",
" (('the',\n",
" 'meeting',\n",
" '.',\n",
" 'for',\n",
" 'additional',\n",
" 'information',\n",
" ',',\n",
" 'please',\n",
" 'visit'),\n",
" 12),\n",
" (('and',\n",
" 'location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'landmarks',\n",
" 'preservation',\n",
" 'commission',\n",
" 'meets'),\n",
" 12),\n",
" (('personnel',\n",
" 'services',\n",
" 'will',\n",
" 'hold',\n",
" 'hearings',\n",
" 'as',\n",
" 'needed',\n",
" 'in',\n",
" 'room'),\n",
" 12),\n",
" ((',',\n",
" 'please',\n",
" 'visit',\n",
" 'our',\n",
" 'website',\n",
" 'at',\n",
" 'www.nyc.gov/landmarks',\n",
" '.',\n",
" 'employees'),\n",
" 12),\n",
" (('floor', 'of', '40', 'rector', 'street', '.', 'for', 'changes', 'in'), 12),\n",
" (('public', 'hearing', 'meets', 'in', 'spector', 'hall', ',', '22', 'reade'),\n",
" 12),\n",
" (('.',\n",
" 'environmental',\n",
" 'control',\n",
" 'board',\n",
" 'meets',\n",
" 'at',\n",
" '100',\n",
" 'church',\n",
" 'street'),\n",
" 12),\n",
" (('main', 'floor', ',', 'manhattan', ',', 'monthly', 'on', 'tuesdays', ','),\n",
" 12),\n",
" (('floor',\n",
" 'conference',\n",
" 'room',\n",
" ',',\n",
" 'borough',\n",
" 'of',\n",
" 'manhattan',\n",
" ',',\n",
" 'in'),\n",
" 12),\n",
" (('for',\n",
" 'meeting',\n",
" 'schedule',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nyc.gov/designcommission',\n",
" 'or',\n",
" 'call'),\n",
" 12),\n",
" (('citywide',\n",
" 'administrative',\n",
" 'services',\n",
" 'division',\n",
" 'of',\n",
" 'citywide',\n",
" 'personnel',\n",
" 'services',\n",
" 'will'),\n",
" 12),\n",
" (('a.m.',\n",
" 'and',\n",
" 'are',\n",
" 'customarily',\n",
" 'held',\n",
" 'on',\n",
" 'mondays',\n",
" 'preceding',\n",
" 'a'),\n",
" 12),\n",
" (('board', 'of', 'higher', 'education', 'meets', 'at', '535', 'east', '80th'),\n",
" 12),\n",
" (('system', 'meets', 'in', 'the', 'boardroom', ',', '22nd', 'floor', ','),\n",
" 12),\n",
" (('are',\n",
" 'customarily',\n",
" 'held',\n",
" 'on',\n",
" 'mondays',\n",
" 'preceding',\n",
" 'a',\n",
" 'tuesday',\n",
" 'public'),\n",
" 12),\n",
" (('visit',\n",
" 'nyc.gov/designcommission',\n",
" 'or',\n",
" 'call',\n",
" '212-788-3071',\n",
" '.',\n",
" 'department',\n",
" 'of',\n",
" 'education'),\n",
" 12),\n",
" (('in', 'the', 'bsa', 'conference', 'room', 'on', 'the', '9th', 'floor'), 12),\n",
" (('meetings',\n",
" 'of',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'housing',\n",
" 'authority',\n",
" 'are'),\n",
" 12),\n",
" (('and',\n",
" 'concession',\n",
" 'review',\n",
" 'committee',\n",
" 'meets',\n",
" 'in',\n",
" 'spector',\n",
" 'hall',\n",
" ','),\n",
" 12),\n",
" (('at', 'city', 'hall', ',', 'third', 'floor', ',', 'new', 'york'), 12),\n",
" (('hearing', 'room', '``', 'e', \"''\", 'on', 'tuesdays', 'at', '10:00'), 12),\n",
" (('rights', 'meets', 'on', '10th', 'floor', 'in', 'the', 'commission', \"'s\"),\n",
" 12),\n",
" (('as',\n",
" 'warranted',\n",
" '.',\n",
" 'civilian',\n",
" 'complaint',\n",
" 'review',\n",
" 'board',\n",
" 'generally',\n",
" 'meets'),\n",
" 12),\n",
" (('board', 'at', 'the', 'board', \"'s\", 'offices', ',', 'at', '40'), 12),\n",
" (('of',\n",
" 'the',\n",
" 'chairman',\n",
" '.',\n",
" 'housing',\n",
" 'authority',\n",
" 'board',\n",
" 'meetings',\n",
" 'of'),\n",
" 12),\n",
" (('commissioner',\n",
" '.',\n",
" 'environmental',\n",
" 'control',\n",
" 'board',\n",
" 'meets',\n",
" 'at',\n",
" '100',\n",
" 'church'),\n",
" 12),\n",
" (('monday', 'in', 'january', ',', 'february', ',', 'march', ',', 'april'),\n",
" 12),\n",
" (('the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'housing',\n",
" 'authority',\n",
" 'are',\n",
" 'scheduled',\n",
" 'for'),\n",
" 12),\n",
" (('ny', '10004', ',', 'on', 'tuesday', ',', 'at', '1:30', 'p.m.'), 12),\n",
" (('or',\n",
" 'additonal',\n",
" 'information',\n",
" ',',\n",
" 'please',\n",
" 'call',\n",
" 'the',\n",
" 'application',\n",
" 'desk'),\n",
" 12),\n",
" (('room', '2203', ',', '2', 'washington', 'street', ',', 'new', 'york'), 12),\n",
" ((',', 'twice', 'monthly', 'on', 'wednesday', ',', 'at', '10:00', 'a.m.'),\n",
" 12),\n",
" (('for',\n",
" 'compensation',\n",
" 'payable',\n",
" 'to',\n",
" 'the',\n",
" 'city',\n",
" 'according',\n",
" 'to',\n",
" 'the'),\n",
" 12),\n",
" ((',', 'on', 'fourth', 'monday', 'in', 'january', ',', 'february', ','), 12),\n",
" (('fourth',\n",
" 'monday',\n",
" 'in',\n",
" 'may',\n",
" '.',\n",
" 'citywide',\n",
" 'administrative',\n",
" 'services',\n",
" 'division'),\n",
" 12),\n",
" (('are',\n",
" 'scheduled',\n",
" 'for',\n",
" 'the',\n",
" 'last',\n",
" 'wednesday',\n",
" 'of',\n",
" 'each',\n",
" 'month'),\n",
" 12),\n",
" ((',', 'n.y.', '11101', ',', 'at', '10:00', 'a.m.', ',', 'quarterly'), 12),\n",
" (('new', 'york', ',', 'ny', '10006', ',', 'on', 'the', 'fourth'), 12),\n",
" ((',',\n",
" 'manhattan',\n",
" ',',\n",
" 'monthly',\n",
" 'on',\n",
" 'tuesdays',\n",
" ',',\n",
" 'commencing',\n",
" '10:00'),\n",
" 12),\n",
" (('of',\n",
" 'higher',\n",
" 'education',\n",
" 'meets',\n",
" 'at',\n",
" '535',\n",
" 'east',\n",
" '80th',\n",
" 'street'),\n",
" 12),\n",
" (('by', 'the', 'commission', '.', 'for', 'current', 'meeting', 'dates', ','),\n",
" 12),\n",
" ((',', 'at', '8:00', 'a.m', '.', 'in', 'rem', 'foreclosure', 'release'), 12),\n",
" (('offices', ',', 'at', '40', 'rector', 'street', ',', '9th', 'floor'), 12),\n",
" (('the', 'administrative', 'code', 'of', 'the', 'city', 'of', 'new', 'york'),\n",
" 12),\n",
" (('.',\n",
" 'landmarks',\n",
" 'preservation',\n",
" 'commission',\n",
" 'meets',\n",
" 'in',\n",
" 'the',\n",
" 'hearing',\n",
" 'room'),\n",
" 12),\n",
" ((',', 'municipal', 'building', ',', '9th', 'floor', 'north', ',', '1'), 12),\n",
" (('march', ',', 'april', ',', 'june', ',', 'september', ',', 'october'), 12),\n",
" ((',', 'ny', '10007', '(', 'unless', 'otherwise', 'noted', ')', '.'), 12),\n",
" (('ordered',\n",
" 'by',\n",
" 'the',\n",
" 'commission',\n",
" '.',\n",
" 'city',\n",
" 'council',\n",
" 'meets',\n",
" 'by'),\n",
" 12),\n",
" (('at', 'a', 'reasonable', 'time', 'before', 'the', 'meeting', '.', 'for'),\n",
" 12),\n",
" (('meets', 'at', '535', 'east', '80th', 'street', ',', 'manhattan', ','), 12),\n",
" ((',', 'at', 'the', 'call', 'of', 'the', 'chairman', '.', 'housing'), 12),\n",
" ((',', 'borough', 'of', 'manhattan', ',', 'in', 'the', 'matter', 'of'), 12),\n",
" (('meets',\n",
" 'in',\n",
" 'room',\n",
" '530',\n",
" ',',\n",
" 'municipal',\n",
" 'building',\n",
" ',',\n",
" 'manhattan'),\n",
" 12),\n",
" (('york', ',', 'ny', '10007', '.', 'for', 'meeting', 'schedule', ','), 12),\n",
" (('held', 'on', 'the', 'first', 'tuesday', 'of', 'july', 'at', '10:00'), 12),\n",
" (('times',\n",
" 'and',\n",
" 'location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'real',\n",
" 'property',\n",
" 'acquisition'),\n",
" 12),\n",
" (('release', 'board', 'meets', 'in', 'spector', 'hall', ',', '22', 'reade'),\n",
" 12),\n",
" (('meets',\n",
" 'in',\n",
" 'room',\n",
" '936',\n",
" ',',\n",
" 'municipal',\n",
" 'building',\n",
" ',',\n",
" 'manhattan'),\n",
" 12),\n",
" (('monthly',\n",
" 'on',\n",
" 'tuesdays',\n",
" ',',\n",
" 'commencing',\n",
" '10:00',\n",
" 'a.m.',\n",
" ',',\n",
" 'and'),\n",
" 12),\n",
" (('.', 'the', 'proposed', 'revocable', 'consent', 'is', 'for', 'a', 'term'),\n",
" 12),\n",
" (('meeting', 'held', 'on', 'fourth', 'monday', 'in', 'may', '.', 'citywide'),\n",
" 12),\n",
" (('street', '.', 'for', 'changes', 'in', 'the', 'schedule', ',', 'or'), 12),\n",
" (('on',\n",
" 'mondays',\n",
" 'preceding',\n",
" 'a',\n",
" 'tuesday',\n",
" 'public',\n",
" 'hearing',\n",
" 'in',\n",
" 'the'),\n",
" 12),\n",
" (('32', 'broadway', ',', '7th', 'floor', ',', 'new', 'york', ','), 12),\n",
" (('york',\n",
" 'city',\n",
" 'housing',\n",
" 'authority',\n",
" 'are',\n",
" 'scheduled',\n",
" 'for',\n",
" 'the',\n",
" 'last'),\n",
" 12),\n",
" (('as',\n",
" 'warranted',\n",
" '.',\n",
" 'landmarks',\n",
" 'preservation',\n",
" 'commission',\n",
" 'meets',\n",
" 'in',\n",
" 'the'),\n",
" 12),\n",
" (('parole',\n",
" 'commission',\n",
" 'meets',\n",
" 'at',\n",
" 'its',\n",
" 'office',\n",
" ',',\n",
" '100',\n",
" 'centre'),\n",
" 12),\n",
" (('11101', ',', 'at', '10:00', 'a.m.', ',', 'quarterly', 'or', 'at'), 12),\n",
" (('awards', 'public', 'hearing', 'meets', 'in', 'spector', 'hall', ',', '22'),\n",
" 12),\n",
" (('and',\n",
" 'are',\n",
" 'customarily',\n",
" 'held',\n",
" 'on',\n",
" 'mondays',\n",
" 'preceding',\n",
" 'a',\n",
" 'tuesday'),\n",
" 12),\n",
" (('october',\n",
" ',',\n",
" 'november',\n",
" 'and',\n",
" 'december',\n",
" '.',\n",
" 'annual',\n",
" 'meeting',\n",
" 'held'),\n",
" 12),\n",
" (('board', 'of', 'elections', '32', 'broadway', ',', '7th', 'floor', ','),\n",
" 12),\n",
" (('1:30', 'p.m.', 'and', 'at', 'the', 'call', 'of', 'the', 'commissioner'),\n",
" 12),\n",
" (('street', ',', '9th', 'floor', '.', 'tax', 'commission', 'meets', 'in'),\n",
" 12),\n",
" (('the', 'third', 'wednesday', ',', 'of', 'each', 'month', 'at', '6:00'), 12),\n",
" (('a.m.',\n",
" ',',\n",
" 'unless',\n",
" 'otherwise',\n",
" 'ordered',\n",
" 'by',\n",
" 'the',\n",
" 'commission',\n",
" '.'),\n",
" 12),\n",
" (('call',\n",
" 'of',\n",
" 'the',\n",
" 'commissioner',\n",
" '.',\n",
" 'environmental',\n",
" 'control',\n",
" 'board',\n",
" 'meets'),\n",
" 12),\n",
" (('borough', 'of', 'manhattan', '(', 'to', 'continue', 'to', ',', 'maintain'),\n",
" 12),\n",
" (('and',\n",
" 'agendas',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'our',\n",
" 'website',\n",
" 'at',\n",
" 'www.nyc.gov/landmarks'),\n",
" 12),\n",
" ((',', 'september', ',', 'october', ',', 'november', 'and', 'december', '.'),\n",
" 12),\n",
" ((',', 'at', '5:30', 'p.m.', ',', 'on', 'fourth', 'monday', 'in'), 12),\n",
" ((',', 'new', 'york', ',', 'n.y.', '10004', '.', 'commission', 'on'), 12),\n",
" (('new',\n",
" 'york',\n",
" 'city',\n",
" 'housing',\n",
" 'authority',\n",
" 'are',\n",
" 'scheduled',\n",
" 'for',\n",
" 'the'),\n",
" 12),\n",
" (('board',\n",
" 'of',\n",
" 'standards',\n",
" 'and',\n",
" 'appeals',\n",
" 'meets',\n",
" 'at',\n",
" '40',\n",
" 'rector'),\n",
" 12),\n",
" (('reade', 'street', ',', 'main', 'floor', ',', 'manhattan', ',', 'monthly'),\n",
" 12),\n",
" (('a.m.', 'once', 'a', 'month', 'at', 'the', 'call', 'of', 'the'), 12),\n",
" (('boardroom', ',', '22nd', 'floor', ',', '335', 'adams', 'street', ','), 12),\n",
" (('bsa', 'conference', 'room', 'on', 'the', '9th', 'floor', 'of', '40'), 12),\n",
" (('board',\n",
" 'for',\n",
" 'a',\n",
" 'monthly',\n",
" 'business',\n",
" 'meeting',\n",
" 'on',\n",
" 'the',\n",
" 'third'),\n",
" 12),\n",
" (('.', 'for', 'current', 'meeting', 'dates', ',', 'times', 'and', 'agendas'),\n",
" 12),\n",
" (('at',\n",
" '1:30',\n",
" 'p.m.',\n",
" 'contract',\n",
" 'awards',\n",
" 'public',\n",
" 'hearing',\n",
" 'meets',\n",
" 'in'),\n",
" 12),\n",
" (('by',\n",
" 'the',\n",
" 'commission',\n",
" '.',\n",
" 'city',\n",
" 'council',\n",
" 'meets',\n",
" 'by',\n",
" 'charter'),\n",
" 12),\n",
" (('manhattan',\n",
" 'on',\n",
" 'approximately',\n",
" 'three',\n",
" 'tuesday',\n",
" \"'s\",\n",
" 'each',\n",
" 'month',\n",
" ','),\n",
" 12),\n",
" (('compensation',\n",
" 'payable',\n",
" 'to',\n",
" 'the',\n",
" 'city',\n",
" 'according',\n",
" 'to',\n",
" 'the',\n",
" 'following'),\n",
" 12),\n",
" (('at', '10:00', 'a.m.', 'board', 'of', 'elections', '32', 'broadway', ','),\n",
" 12),\n",
" (('revision', 'of', 'awards', 'meets', 'in', 'room', '603', ',', 'municipal'),\n",
" 12),\n",
" (('a',\n",
" 'reasonable',\n",
" 'time',\n",
" 'before',\n",
" 'the',\n",
" 'meeting',\n",
" '.',\n",
" 'for',\n",
" 'additional'),\n",
" 12),\n",
" (('once', 'a', 'month', 'at', 'the', 'call', 'of', 'the', 'chairman'), 12),\n",
" (('environmental',\n",
" 'control',\n",
" 'board',\n",
" 'meets',\n",
" 'at',\n",
" '100',\n",
" 'church',\n",
" 'street',\n",
" ','),\n",
" 12),\n",
" (('hold', 'hearings', 'as', 'needed', 'in', 'room', '2203', ',', '2'), 12),\n",
" (('or', 'contact', '(', '212', ')', '306-6088', '.', 'parole', 'commission'),\n",
" 12),\n",
" (('212', ')', '306-6088', '.', 'parole', 'commission', 'meets', 'at', 'its'),\n",
" 12),\n",
" ((',',\n",
" 'times',\n",
" 'and',\n",
" 'location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'franchise',\n",
" 'and'),\n",
" 12),\n",
" (('each', 'month', ',', 'at', '8:00', 'a.m', '.', 'in', 'rem'), 12),\n",
" (('.',\n",
" 'manhattan',\n",
" ',',\n",
" 'monthly',\n",
" 'on',\n",
" 'wednesdays',\n",
" ',',\n",
" 'commencing',\n",
" '2:30'),\n",
" 12),\n",
" (('of', '250', 'broadway', ',', 'new', 'york', ',', 'ny', '10007'), 12),\n",
" (('hearing', 'in', 'the', 'bsa', 'conference', 'room', 'on', 'the', '9th'),\n",
" 12),\n",
" (('at', '10:00', 'a.m.', 'on', 'the', 'second', 'wednesday', 'of', 'each'),\n",
" 12),\n",
" ((',', 'at', '1:30', 'p.m.', 'and', 'at', 'the', 'call', 'of'), 12),\n",
" (('10:00', 'a.m.', ',', 'quarterly', 'or', 'at', 'the', 'call', 'of'), 12),\n",
" (('consult',\n",
" 'the',\n",
" 'bulletin',\n",
" 'board',\n",
" 'at',\n",
" 'the',\n",
" 'board',\n",
" \"'s\",\n",
" 'offices'),\n",
" 12),\n",
" (('street', ',', '6th', 'floor', ',', 'hearing', 'room', '``', 'e'), 12),\n",
" (('month', 'at', 'the', 'call', 'of', 'the', 'chairman', '.', 'board'), 12),\n",
" (('location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'civilian',\n",
" 'complaint',\n",
" 'review',\n",
" 'board',\n",
" 'generally'),\n",
" 12),\n",
" (('the',\n",
" 'commissioner',\n",
" '.',\n",
" 'environmental',\n",
" 'control',\n",
" 'board',\n",
" 'meets',\n",
" 'at',\n",
" '100'),\n",
" 12),\n",
" (('250', 'broadway', ',', 'new', 'york', ',', 'ny', '10007', '('), 12),\n",
" (('2nd',\n",
" 'floor',\n",
" 'conference',\n",
" 'room',\n",
" ',',\n",
" 'borough',\n",
" 'of',\n",
" 'manhattan',\n",
" ','),\n",
" 12),\n",
" (('at', '9:15', 'a.m.', 'once', 'a', 'month', 'at', 'the', 'call'), 12),\n",
" (('n.y.', '10004', '.', 'commission', 'on', 'human', 'rights', 'meets', 'on'),\n",
" 12),\n",
" (('on',\n",
" 'wednesdays',\n",
" ',',\n",
" 'commencing',\n",
" '10:00',\n",
" 'a.m.',\n",
" ',',\n",
" 'and',\n",
" 'other'),\n",
" 12),\n",
" (('street',\n",
" 'in',\n",
" 'manhattan',\n",
" 'on',\n",
" 'approximately',\n",
" 'three',\n",
" 'tuesday',\n",
" \"'s\",\n",
" 'each'),\n",
" 12),\n",
" ((',',\n",
" 'times',\n",
" 'and',\n",
" 'location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'real',\n",
" 'property'),\n",
" 12),\n",
" (('main',\n",
" 'floor',\n",
" ',',\n",
" 'manhattan',\n",
" ',',\n",
" 'bi-weekly',\n",
" ',',\n",
" 'on',\n",
" 'wednesdays'),\n",
" 12),\n",
" (('9:30', 'a.m.', ',', 'on', 'the', 'third', 'thursday', 'of', 'each'), 12),\n",
" (('awards', 'meets', 'in', 'room', '603', ',', 'municipal', 'building', ','),\n",
" 12),\n",
" (('floor', 'of', '250', 'broadway', ',', 'new', 'york', ',', 'ny'), 12),\n",
" (('11201', ',', 'at', '9:30', 'a.m.', ',', 'on', 'the', 'third'), 12),\n",
" (('information',\n",
" ',',\n",
" 'please',\n",
" 'call',\n",
" 'the',\n",
" 'application',\n",
" 'desk',\n",
" 'at',\n",
" '('),\n",
" 12),\n",
" ((',',\n",
" 'unless',\n",
" 'otherwise',\n",
" 'ordered',\n",
" 'by',\n",
" 'the',\n",
" 'commission',\n",
" '.',\n",
" 'city'),\n",
" 12),\n",
" (('of', 'the', 'administrative', 'code', 'of', 'the', 'city', 'of', 'new'),\n",
" 12),\n",
" (('at', 'its', 'office', ',', '100', 'centre', 'street', ',', 'manhattan'),\n",
" 12),\n",
" (('unless',\n",
" 'otherwise',\n",
" 'noticed',\n",
" 'by',\n",
" 'the',\n",
" 'commission',\n",
" '.',\n",
" 'for',\n",
" 'current'),\n",
" 12),\n",
" (('authority',\n",
" 'board',\n",
" 'meetings',\n",
" 'of',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'housing'),\n",
" 12),\n",
" (('10006',\n",
" '.',\n",
" 'visit',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/ccrb/html/meeting.html',\n",
" 'for',\n",
" 'additional',\n",
" 'information'),\n",
" 12),\n",
" (('in', 'room', '603', ',', 'municipal', 'building', ',', 'manhattan', ','),\n",
" 12),\n",
" (('the', 'borough', 'of', 'manhattan', '(', 'to', 'continue', 'to', ','), 12),\n",
" (('.',\n",
" 'civilian',\n",
" 'complaint',\n",
" 'review',\n",
" 'board',\n",
" 'generally',\n",
" 'meets',\n",
" 'at',\n",
" '10:00'),\n",
" 12),\n",
" (('at', '9:30', 'a.m.', ',', 'on', 'the', 'third', 'thursday', 'of'), 12),\n",
" (('and',\n",
" 'scheduling',\n",
" 'changes',\n",
" '.',\n",
" 'design',\n",
" 'commission',\n",
" 'meets',\n",
" 'at',\n",
" 'city'),\n",
" 12),\n",
" (('board', 'of', 'health', 'meets', 'at', 'gotham', 'center', ',', '42-09'),\n",
" 12),\n",
" (('higher', 'education', 'meets', 'at', '535', 'east', '80th', 'street', ','),\n",
" 12),\n",
" (('city', 'council', 'meets', 'by', 'charter', 'twice', 'a', 'month', 'in'),\n",
" 12),\n",
" ((',', 'long', 'island', 'city', ',', 'n.y.', '11101', ',', 'at'), 12),\n",
" ((\"'s\", 'offices', ',', 'at', '40', 'rector', 'street', ',', '9th'), 12),\n",
" (('40', 'rector', 'street', ',', 'new', 'york', ',', 'ny', '10006'), 12),\n",
" (('mondays',\n",
" 'preceding',\n",
" 'a',\n",
" 'tuesday',\n",
" 'public',\n",
" 'hearing',\n",
" 'in',\n",
" 'the',\n",
" 'bsa'),\n",
" 12),\n",
" ((',', 'new', 'york', ',', 'ny', '10006', ',', 'on', 'the'), 12),\n",
" (('center', ',', '42-09', '28th', 'street', ',', 'long', 'island', 'city'),\n",
" 12),\n",
" ((',', 'weekly', ',', 'on', 'thursday', ',', 'commencing', '10:00', 'a.m.'),\n",
" 12),\n",
" (('the', 'date', 'of', 'approval', 'by', 'the', 'mayor', 'to', 'june'), 12),\n",
" (('a.m.', 'board', 'of', 'revision', 'of', 'awards', 'meets', 'in', 'room'),\n",
" 12),\n",
" (('10007', ',', 'at', 'call', 'of', 'the', 'chairman', '.', 'board'), 12),\n",
" (('.',\n",
" 'employees',\n",
" \"'\",\n",
" 'retirement',\n",
" 'system',\n",
" 'meets',\n",
" 'in',\n",
" 'the',\n",
" 'boardroom'),\n",
" 12),\n",
" (('august', ')', 'at', '10:00', 'a.m.', 'in', 'the', 'board', 'room'), 12),\n",
" (('new', 'york', ',', 'n.y.', '10004', '.', 'commission', 'on', 'human'), 12),\n",
" (('in', 'the', 'hearing', 'room', ',', 'municipal', 'building', ',', '9th'),\n",
" 12),\n",
" ((',', 'february', ',', 'march', ',', 'april', ',', 'june', ','), 12),\n",
" (('floor', '.', 'tax', 'commission', 'meets', 'in', 'room', '936', ','), 12),\n",
" (('new', 'york', ',', 'ny', '10007', '(', 'unless', 'otherwise', 'noted'),\n",
" 12),\n",
" (('commission',\n",
" 'on',\n",
" 'human',\n",
" 'rights',\n",
" 'meets',\n",
" 'on',\n",
" '10th',\n",
" 'floor',\n",
" 'in'),\n",
" 12),\n",
" (('commission',\n",
" 'meets',\n",
" 'in',\n",
" 'spector',\n",
" 'hall',\n",
" ',',\n",
" '22',\n",
" 'reade',\n",
" 'street'),\n",
" 12),\n",
" (('1:30',\n",
" 'p.m.',\n",
" 'contract',\n",
" 'awards',\n",
" 'public',\n",
" 'hearing',\n",
" 'meets',\n",
" 'in',\n",
" 'spector'),\n",
" 12),\n",
" (('policy', 'board', 'rules', '.', 'a', 'copy', 'of', 'the', 'draft'), 12),\n",
" (('at', '40', 'rector', 'street', ',', '9th', 'floor', '.', 'tax'), 12),\n",
" (('website', 'or', 'contact', '(', '212', ')', '306-6088', '.', 'parole'),\n",
" 12),\n",
" (('citywide',\n",
" 'personnel',\n",
" 'services',\n",
" 'will',\n",
" 'hold',\n",
" 'hearings',\n",
" 'as',\n",
" 'needed',\n",
" 'in'),\n",
" 12),\n",
" (('information',\n",
" 'and',\n",
" 'scheduling',\n",
" 'changes',\n",
" '.',\n",
" 'design',\n",
" 'commission',\n",
" 'meets',\n",
" 'at'),\n",
" 12),\n",
" (('of', 'elections', '32', 'broadway', ',', '7th', 'floor', ',', 'new'), 12),\n",
" (('of', '10', 'am', 'and', '4', 'pm', '.', 'please', 'contact'), 12),\n",
" (('york', ',', 'ny', '10007', '(', 'unless', 'otherwise', 'noted', ')'), 12),\n",
" ((',',\n",
" 'or',\n",
" 'additonal',\n",
" 'information',\n",
" ',',\n",
" 'please',\n",
" 'call',\n",
" 'the',\n",
" 'application'),\n",
" 12),\n",
" (('call',\n",
" 'of',\n",
" 'the',\n",
" 'chairman',\n",
" '.',\n",
" 'health',\n",
" 'insurance',\n",
" 'board',\n",
" 'meets'),\n",
" 12),\n",
" (('.', 'annual', 'meeting', 'held', 'on', 'fourth', 'monday', 'in', 'may'),\n",
" 12),\n",
" (('2', 'washington', 'street', ',', 'new', 'york', ',', 'n.y.', '10004'), 12),\n",
" ((',', 'of', 'each', 'month', 'at', '6:00', 'p.m', '.', 'the'), 12),\n",
" (('at', '10:00', 'a.m.', ',', '22', 'reade', 'street', ',', '2nd'), 12),\n",
" (('of', 'revision', 'of', 'awards', 'meets', 'in', 'room', '603', ','), 12),\n",
" (('education', 'meets', 'in', 'the', 'hall', 'of', 'the', 'board', 'for'),\n",
" 12),\n",
" (('annual', 'meeting', 'held', 'on', 'fourth', 'monday', 'in', 'may', '.'),\n",
" 12),\n",
" (('committee',\n",
" 'meets',\n",
" 'in',\n",
" 'spector',\n",
" 'hall',\n",
" ',',\n",
" '22',\n",
" 'reade',\n",
" 'street'),\n",
" 12),\n",
" (('.',\n",
" 'housing',\n",
" 'authority',\n",
" 'board',\n",
" 'meetings',\n",
" 'of',\n",
" 'the',\n",
" 'new',\n",
" 'york'),\n",
" 12),\n",
" (('the',\n",
" 'hearing',\n",
" 'room',\n",
" ',',\n",
" 'municipal',\n",
" 'building',\n",
" ',',\n",
" '9th',\n",
" 'floor'),\n",
" 12),\n",
" (('and',\n",
" 'location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'real',\n",
" 'property',\n",
" 'acquisition',\n",
" 'and'),\n",
" 12),\n",
" (('disposition',\n",
" 'meets',\n",
" 'in',\n",
" 'spector',\n",
" 'hall',\n",
" ',',\n",
" '22',\n",
" 'reade',\n",
" 'street'),\n",
" 12),\n",
" (('10007', ',', 'at', 'the', 'call', 'of', 'the', 'chairman', '.'), 12),\n",
" (('new', 'york', ',', 'ny', '10007', ',', 'twice', 'monthly', 'on'), 12),\n",
" ((',', 'on', 'tuesday', ',', 'at', '1:30', 'p.m.', 'and', 'at'), 12),\n",
" (('of',\n",
" 'the',\n",
" 'chairman',\n",
" '.',\n",
" 'health',\n",
" 'insurance',\n",
" 'board',\n",
" 'meets',\n",
" 'in'),\n",
" 12),\n",
" (('22', 'reade', 'street', ',', 'main', 'floor', ',', 'and', 'other'), 12),\n",
" ((',',\n",
" 'payable',\n",
" 'in',\n",
" 'equal',\n",
" 'monthly',\n",
" 'installments',\n",
" 'at',\n",
" 'the',\n",
" 'end'),\n",
" 12),\n",
" (('york', ',', 'n.y.', '10004', '.', 'commission', 'on', 'human', 'rights'),\n",
" 12),\n",
" (('held',\n",
" 'on',\n",
" 'mondays',\n",
" 'preceding',\n",
" 'a',\n",
" 'tuesday',\n",
" 'public',\n",
" 'hearing',\n",
" 'in'),\n",
" 12),\n",
" (('in', 'room', '2203', ',', '2', 'washington', 'street', ',', 'new'), 12),\n",
" (('chairman',\n",
" '.',\n",
" 'health',\n",
" 'insurance',\n",
" 'board',\n",
" 'meets',\n",
" 'in',\n",
" 'room',\n",
" '530'),\n",
" 12),\n",
" (('times',\n",
" 'and',\n",
" 'location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'landmarks',\n",
" 'preservation',\n",
" 'commission'),\n",
" 12),\n",
" (('gotham', 'center', ',', '42-09', '28th', 'street', ',', 'long', 'island'),\n",
" 12),\n",
" (('rector', 'street', ',', 'new', 'york', ',', 'ny', '10006', ','), 12),\n",
" ((',', 'hearing', 'room', '``', 'e', \"''\", 'on', 'tuesdays', 'at'), 12),\n",
" (('health',\n",
" 'meets',\n",
" 'at',\n",
" 'gotham',\n",
" 'center',\n",
" ',',\n",
" '42-09',\n",
" '28th',\n",
" 'street'),\n",
" 12),\n",
" (('third', 'wednesday', ',', 'of', 'each', 'month', 'at', '6:00', 'p.m'), 12),\n",
" (('ny', '10007', ',', 'twice', 'monthly', 'on', 'wednesday', ',', 'at'), 12),\n",
" (('at', '10:30', 'a.m.', 'board', 'of', 'revision', 'of', 'awards', 'meets'),\n",
" 12),\n",
" (('.',\n",
" 'real',\n",
" 'property',\n",
" 'acquisition',\n",
" 'and',\n",
" 'disposition',\n",
" 'meets',\n",
" 'in',\n",
" 'spector'),\n",
" 12),\n",
" ((',', 'quarterly', 'or', 'at', 'the', 'call', 'of', 'the', 'chairman'), 12),\n",
" (('the',\n",
" 'schedule',\n",
" ',',\n",
" 'or',\n",
" 'additonal',\n",
" 'information',\n",
" ',',\n",
" 'please',\n",
" 'call'),\n",
" 12),\n",
" (('5:30', 'p.m.', ',', 'on', 'fourth', 'monday', 'in', 'january', ','), 12),\n",
" ((',', 'ny', '10007', ',', 'twice', 'monthly', 'on', 'wednesday', ','), 12),\n",
" (('40', 'rector', 'street', ',', '6th', 'floor', ',', 'hearing', 'room'), 12),\n",
" (('manhattan',\n",
" ',',\n",
" 'bi-weekly',\n",
" ',',\n",
" 'on',\n",
" 'wednesdays',\n",
" ',',\n",
" 'commencing',\n",
" '10:00'),\n",
" 12),\n",
" (('the', 'proposed', 'revocable', 'consent', 'is', 'for', 'a', 'term', 'of'),\n",
" 12),\n",
" (('floor', ',', 'hearing', 'room', '``', 'e', \"''\", 'on', 'tuesdays'), 12),\n",
" ((',',\n",
" 'unless',\n",
" 'otherwise',\n",
" 'noticed',\n",
" 'by',\n",
" 'the',\n",
" 'commission',\n",
" '.',\n",
" 'for'),\n",
" 12),\n",
" (('desk', 'at', '(', '212', ')', '513-4670', 'or', 'consult', 'the'), 12),\n",
" (('9th', 'floor', '.', 'tax', 'commission', 'meets', 'in', 'room', '936'),\n",
" 12),\n",
" (('the', 'application', 'desk', 'at', '(', '212', ')', '513-4670', 'or'), 12),\n",
" (('reade',\n",
" 'street',\n",
" ',',\n",
" 'main',\n",
" 'floor',\n",
" ',',\n",
" 'manhattan',\n",
" ',',\n",
" 'bi-weekly'),\n",
" 12),\n",
" (('location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'real',\n",
" 'property',\n",
" 'acquisition',\n",
" 'and',\n",
" 'disposition'),\n",
" 12),\n",
" (('meeting', 'is', 'held', 'on', 'the', 'first', 'tuesday', 'of', 'july'),\n",
" 12),\n",
" (('of',\n",
" 'standards',\n",
" 'and',\n",
" 'appeals',\n",
" 'meets',\n",
" 'at',\n",
" '40',\n",
" 'rector',\n",
" 'street'),\n",
" 12),\n",
" (('for', 'current', 'meeting', 'dates', ',', 'times', 'and', 'agendas', ','),\n",
" 12),\n",
" (('floor', ',', 'manhattan', ',', 'weekly', ',', 'on', 'thursday', ','), 12),\n",
" ((',',\n",
" 'october',\n",
" ',',\n",
" 'november',\n",
" 'and',\n",
" 'december',\n",
" '.',\n",
" 'annual',\n",
" 'meeting'),\n",
" 12),\n",
" (('june',\n",
" ',',\n",
" 'september',\n",
" ',',\n",
" 'october',\n",
" ',',\n",
" 'november',\n",
" 'and',\n",
" 'december'),\n",
" 12),\n",
" (('6th', 'floor', ',', 'hearing', 'room', '``', 'e', \"''\", 'on'), 12),\n",
" (('thursday', 'of', 'each', 'month', ',', 'at', 'the', 'call', 'of'), 12),\n",
" (('22nd', 'floor', ',', '335', 'adams', 'street', ',', 'brooklyn', ','), 12),\n",
" (('9:30',\n",
" 'a.m.',\n",
" ',',\n",
" 'unless',\n",
" 'otherwise',\n",
" 'noticed',\n",
" 'by',\n",
" 'the',\n",
" 'commission'),\n",
" 12),\n",
" (('on', 'the', 'third', 'thursday', 'of', 'each', 'month', ',', 'at'), 12),\n",
" (('tuesdays',\n",
" ',',\n",
" 'commencing',\n",
" '10:00',\n",
" 'a.m.',\n",
" ',',\n",
" 'and',\n",
" 'other',\n",
" 'days'),\n",
" 12),\n",
" (('at', 'the', 'call', 'of', 'the', 'chairman', '.', 'health', 'insurance'),\n",
" 12),\n",
" (('in', 'councilman', \"'s\", 'chamber', ',', 'city', 'hall', ',', 'manhattan'),\n",
" 12),\n",
" (('fourth', 'monday', 'in', 'january', ',', 'february', ',', 'march', ','),\n",
" 12),\n",
" (('scheduled', 'for', 'the', 'last', 'wednesday', 'of', 'each', 'month', '('),\n",
" 12),\n",
" (('commission',\n",
" 'meets',\n",
" 'at',\n",
" 'its',\n",
" 'office',\n",
" ',',\n",
" '100',\n",
" 'centre',\n",
" 'street'),\n",
" 12),\n",
" (('services',\n",
" 'will',\n",
" 'hold',\n",
" 'hearings',\n",
" 'as',\n",
" 'needed',\n",
" 'in',\n",
" 'room',\n",
" '2203'),\n",
" 12),\n",
" (('preceding',\n",
" 'a',\n",
" 'tuesday',\n",
" 'public',\n",
" 'hearing',\n",
" 'in',\n",
" 'the',\n",
" 'bsa',\n",
" 'conference'),\n",
" 12),\n",
" (('10:00', 'a.m.', ',', '22', 'reade', 'street', ',', '2nd', 'floor'), 12),\n",
" (('board',\n",
" 'meetings',\n",
" 'of',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'housing',\n",
" 'authority'),\n",
" 12),\n",
" (('january', ',', 'february', ',', 'march', ',', 'april', ',', 'june'), 12),\n",
" ((',', 'at', '10:30', 'a.m.', 'board', 'of', 'revision', 'of', 'awards'), 12),\n",
" (('the',\n",
" 'chairman',\n",
" '.',\n",
" 'board',\n",
" 'of',\n",
" 'higher',\n",
" 'education',\n",
" 'meets',\n",
" 'at'),\n",
" 12),\n",
" (('acquisition',\n",
" 'and',\n",
" 'disposition',\n",
" 'meets',\n",
" 'in',\n",
" 'spector',\n",
" 'hall',\n",
" ',',\n",
" '22'),\n",
" 12),\n",
" (('floor', ',', 'new', 'york', ',', 'ny', '10004', ',', 'on'), 12),\n",
" (('insurance',\n",
" 'board',\n",
" 'meets',\n",
" 'in',\n",
" 'room',\n",
" '530',\n",
" ',',\n",
" 'municipal',\n",
" 'building'),\n",
" 12),\n",
" (('of', 'july', 'at', '10:00', 'a.m.', 'board', 'of', 'elections', '32'), 12),\n",
" (('councilman', \"'s\", 'chamber', ',', 'city', 'hall', ',', 'manhattan', ','),\n",
" 12),\n",
" ((',',\n",
" 'please',\n",
" 'visit',\n",
" 'nyc.gov/designcommission',\n",
" 'or',\n",
" 'call',\n",
" '212-788-3071',\n",
" '.',\n",
" 'department'),\n",
" 12),\n",
" (('.',\n",
" 'franchise',\n",
" 'and',\n",
" 'concession',\n",
" 'review',\n",
" 'committee',\n",
" 'meets',\n",
" 'in',\n",
" 'spector'),\n",
" 12),\n",
" (('april', ',', 'june', ',', 'september', ',', 'october', ',', 'november'),\n",
" 12),\n",
" (('of', 'education', 'meets', 'in', 'the', 'hall', 'of', 'the', 'board'), 12),\n",
" (('room', ',', 'municipal', 'building', ',', '9th', 'floor', 'north', ','),\n",
" 12),\n",
" (('please',\n",
" 'visit',\n",
" 'our',\n",
" 'website',\n",
" 'at',\n",
" 'www.nyc.gov/landmarks',\n",
" '.',\n",
" 'employees',\n",
" \"'\"),\n",
" 12),\n",
" (('``', 'e', \"''\", 'on', 'tuesdays', 'at', '10:00', 'a.m.', 'review'), 12),\n",
" (('meets', 'by', 'charter', 'twice', 'a', 'month', 'in', 'councilman', \"'s\"),\n",
" 12),\n",
" (('times',\n",
" 'and',\n",
" 'location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'civilian',\n",
" 'complaint',\n",
" 'review'),\n",
" 12),\n",
" (('of', 'health', 'meets', 'at', 'gotham', 'center', ',', '42-09', '28th'),\n",
" 12),\n",
" (('city',\n",
" 'planning',\n",
" 'commission',\n",
" 'meets',\n",
" 'in',\n",
" 'spector',\n",
" 'hall',\n",
" ',',\n",
" '22'),\n",
" 12),\n",
" (('lease', 'for', 'the', 'city', 'of', 'new', 'york', ',', 'as'), 12),\n",
" (('tuesday', ',', 'at', '1:30', 'p.m.', 'and', 'at', 'the', 'call'), 12),\n",
" (('on', 'the', 'third', 'wednesday', ',', 'of', 'each', 'month', 'at'), 12),\n",
" (('other',\n",
" 'terms',\n",
" 'and',\n",
" 'conditions',\n",
" 'for',\n",
" 'compensation',\n",
" 'payable',\n",
" 'to',\n",
" 'the'),\n",
" 12),\n",
" ((',', 'new', 'york', ',', 'ny', '10004', ',', 'on', 'tuesday'), 12),\n",
" (('on',\n",
" 'fourth',\n",
" 'monday',\n",
" 'in',\n",
" 'may',\n",
" '.',\n",
" 'citywide',\n",
" 'administrative',\n",
" 'services'),\n",
" 12),\n",
" (('meets', 'in', 'the', 'hall', 'of', 'the', 'board', 'for', 'a'), 12),\n",
" (('and', 'appeals', 'meets', 'at', '40', 'rector', 'street', ',', '6th'), 12),\n",
" (('meets', 'at', 'city', 'hall', ',', 'third', 'floor', ',', 'new'), 12),\n",
" (('twice', 'monthly', 'on', 'wednesday', ',', 'at', '10:00', 'a.m.', ','),\n",
" 12),\n",
" (('tuesdays',\n",
" 'at',\n",
" '10:00',\n",
" 'a.m.',\n",
" 'review',\n",
" 'sessions',\n",
" 'begin',\n",
" 'at',\n",
" '9:30'),\n",
" 12),\n",
" ((',', 'new', 'york', ',', 'ny', '10007', ',', 'twice', 'monthly'), 12),\n",
" (('1',\n",
" 'centre',\n",
" 'street',\n",
" 'in',\n",
" 'manhattan',\n",
" 'on',\n",
" 'approximately',\n",
" 'three',\n",
" 'tuesday'),\n",
" 12),\n",
" (('administrative',\n",
" 'services',\n",
" 'division',\n",
" 'of',\n",
" 'citywide',\n",
" 'personnel',\n",
" 'services',\n",
" 'will',\n",
" 'hold'),\n",
" 12),\n",
" ((',', '6th', 'floor', ',', 'hearing', 'room', '``', 'e', \"''\"), 12),\n",
" ((',', 'at', '10:00', 'a.m.', ',', 'quarterly', 'or', 'at', 'the'), 12),\n",
" (('10007', 'at', '9:15', 'a.m.', 'once', 'a', 'month', 'at', 'the'), 12),\n",
" (('each', 'month', 'at', '6:00', 'p.m', '.', 'the', 'annual', 'meeting'), 12),\n",
" ((',', 'at', 'call', 'of', 'the', 'chairman', '.', 'board', 'of'), 12),\n",
" (('at', '10:00', 'a.m.', 'review', 'sessions', 'begin', 'at', '9:30', 'a.m.'),\n",
" 12),\n",
" (('visit',\n",
" 'our',\n",
" 'website',\n",
" 'at',\n",
" 'www.nyc.gov/landmarks',\n",
" '.',\n",
" 'employees',\n",
" \"'\",\n",
" 'retirement'),\n",
" 12),\n",
" (('each', 'month', 'at', '40', 'rector', 'street', ',', '2nd', 'floor'), 12),\n",
" (('the', 'first', 'tuesday', 'of', 'july', 'at', '10:00', 'a.m.', 'board'),\n",
" 12),\n",
" (('p.m.',\n",
" 'contract',\n",
" 'awards',\n",
" 'public',\n",
" 'hearing',\n",
" 'meets',\n",
" 'in',\n",
" 'spector',\n",
" 'hall'),\n",
" 12),\n",
" (('month', 'at', '40', 'rector', 'street', ',', '2nd', 'floor', ','), 12),\n",
" ((',',\n",
" 'times',\n",
" 'and',\n",
" 'location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'landmarks',\n",
" 'preservation'),\n",
" 12),\n",
" (('or', 'consult', 'the', 'bulletin', 'board', 'at', 'the', 'board', \"'s\"),\n",
" 12),\n",
" (('at', 'the', 'board', \"'s\", 'offices', ',', 'at', '40', 'rector'), 12),\n",
" (('bi-weekly',\n",
" ',',\n",
" 'on',\n",
" 'wednesdays',\n",
" ',',\n",
" 'commencing',\n",
" '10:00',\n",
" 'a.m.',\n",
" ','),\n",
" 12),\n",
" (('ny', '10006', ',', 'on', 'the', 'fourth', 'wednesday', 'of', 'each'), 12),\n",
" (('complaint',\n",
" 'review',\n",
" 'board',\n",
" 'generally',\n",
" 'meets',\n",
" 'at',\n",
" '10:00',\n",
" 'a.m.',\n",
" 'on'),\n",
" 12),\n",
" ((',', 'manhattan', ',', 'weekly', ',', 'on', 'thursday', ',', 'commencing'),\n",
" 12),\n",
" (('212-788-3071',\n",
" '.',\n",
" 'department',\n",
" 'of',\n",
" 'education',\n",
" 'meets',\n",
" 'in',\n",
" 'the',\n",
" 'hall'),\n",
" 12),\n",
" (('.',\n",
" 'headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within'),\n",
" 12),\n",
" (('september',\n",
" ',',\n",
" 'october',\n",
" ',',\n",
" 'november',\n",
" 'and',\n",
" 'december',\n",
" '.',\n",
" 'annual'),\n",
" 12),\n",
" (('time',\n",
" 'before',\n",
" 'the',\n",
" 'meeting',\n",
" '.',\n",
" 'for',\n",
" 'additional',\n",
" 'information',\n",
" ','),\n",
" 12),\n",
" (('10006', ',', 'on', 'the', 'fourth', 'wednesday', 'of', 'each', 'month'),\n",
" 12),\n",
" (('on', 'fourth', 'monday', 'in', 'january', ',', 'february', ',', 'march'),\n",
" 12),\n",
" (('floor', ',', 'manhattan', ',', 'bi-weekly', ',', 'on', 'wednesdays', ','),\n",
" 12),\n",
" (('agendas',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'our',\n",
" 'website',\n",
" 'at',\n",
" 'www.nyc.gov/landmarks',\n",
" '.'),\n",
" 12),\n",
" (('commission',\n",
" \"'s\",\n",
" 'central',\n",
" 'office',\n",
" ',',\n",
" '40',\n",
" 'rector',\n",
" 'street',\n",
" ','),\n",
" 12),\n",
" (('days',\n",
" ',',\n",
" 'times',\n",
" 'and',\n",
" 'location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'franchise'),\n",
" 12),\n",
" (('warranted',\n",
" '.',\n",
" 'civilian',\n",
" 'complaint',\n",
" 'review',\n",
" 'board',\n",
" 'generally',\n",
" 'meets',\n",
" 'at'),\n",
" 12),\n",
" (('scheduling',\n",
" 'changes',\n",
" '.',\n",
" 'design',\n",
" 'commission',\n",
" 'meets',\n",
" 'at',\n",
" 'city',\n",
" 'hall'),\n",
" 12),\n",
" ((',', 'at', 'the', 'call', 'of', 'the', 'chairman', '.', 'board'), 12),\n",
" (('franchise',\n",
" 'and',\n",
" 'concession',\n",
" 'review',\n",
" 'committee',\n",
" 'meets',\n",
" 'in',\n",
" 'spector',\n",
" 'hall'),\n",
" 12),\n",
" ((',', 'ny', '10007', '.', 'for', 'meeting', 'schedule', ',', 'please'), 12),\n",
" (('city',\n",
" 'housing',\n",
" 'authority',\n",
" 'are',\n",
" 'scheduled',\n",
" 'for',\n",
" 'the',\n",
" 'last',\n",
" 'wednesday'),\n",
" 12),\n",
" (('10013', ',', 'on', 'thursday', ',', 'at', '10:30', 'a.m.', 'board'), 12),\n",
" (('of', '40', 'rector', 'street', '.', 'for', 'changes', 'in', 'the'), 12),\n",
" ((\"'s\", 'central', 'office', ',', '40', 'rector', 'street', ',', 'new'), 12),\n",
" (('in', 'room', '530', ',', 'municipal', 'building', ',', 'manhattan', ','),\n",
" 12),\n",
" (('.', 'board', 'of', 'higher', 'education', 'meets', 'at', '535', 'east'),\n",
" 12),\n",
" (('please',\n",
" 'visit',\n",
" 'nyc.gov/designcommission',\n",
" 'or',\n",
" 'call',\n",
" '212-788-3071',\n",
" '.',\n",
" 'department',\n",
" 'of'),\n",
" 12),\n",
" (('tax',\n",
" 'commission',\n",
" 'meets',\n",
" 'in',\n",
" 'room',\n",
" '936',\n",
" ',',\n",
" 'municipal',\n",
" 'building'),\n",
" 12),\n",
" (('at', '6:00', 'p.m', '.', 'the', 'annual', 'meeting', 'is', 'held'), 12),\n",
" ((',', 'main', 'floor', ',', 'manhattan', ',', 'weekly', ',', 'on'), 12),\n",
" (('at', 'call', 'of', 'the', 'chairman', '.', 'board', 'of', 'higher'), 12),\n",
" (('in',\n",
" 'the',\n",
" 'matter',\n",
" 'of',\n",
" 'a',\n",
" 'proposed',\n",
" 'revocable',\n",
" 'consent',\n",
" 'authorizing'),\n",
" 12),\n",
" (('p.m.', 'and', 'at', 'the', 'call', 'of', 'the', 'commissioner', '.'), 12),\n",
" (('wednesday',\n",
" ',',\n",
" 'at',\n",
" '10:00',\n",
" 'a.m.',\n",
" ',',\n",
" 'unless',\n",
" 'otherwise',\n",
" 'ordered'),\n",
" 12),\n",
" (('island', 'city', ',', 'n.y.', '11101', ',', 'at', '10:00', 'a.m.'), 12),\n",
" (('rector', 'street', ',', '2nd', 'floor', ',', 'new', 'york', ','), 12),\n",
" (('the', 'chairman', '.', 'board', 'of', 'health', 'meets', 'at', 'gotham'),\n",
" 12),\n",
" (('in',\n",
" 'rem',\n",
" 'foreclosure',\n",
" 'release',\n",
" 'board',\n",
" 'meets',\n",
" 'in',\n",
" 'spector',\n",
" 'hall'),\n",
" 12),\n",
" (('commission',\n",
" 'meets',\n",
" 'in',\n",
" 'room',\n",
" '936',\n",
" ',',\n",
" 'municipal',\n",
" 'building',\n",
" ','),\n",
" 12),\n",
" (('dates', ',', 'times', 'and', 'agendas', ',', 'please', 'visit', 'our'),\n",
" 12),\n",
" (('street', ',', 'main', 'floor', ',', 'manhattan', ',', 'bi-weekly', ','),\n",
" 12),\n",
" (('7th', 'floor', ',', 'new', 'york', ',', 'ny', '10004', ','), 12),\n",
" (('to',\n",
" 'the',\n",
" 'city',\n",
" 'according',\n",
" 'to',\n",
" 'the',\n",
" 'following',\n",
" 'schedule',\n",
" ':'),\n",
" 12),\n",
" (('york', ',', 'ny', '10006', ',', 'on', 'the', 'fourth', 'wednesday'), 12),\n",
" (('in', 'room', '936', ',', 'municipal', 'building', ',', 'manhattan', ','),\n",
" 12),\n",
" (('monday',\n",
" 'in',\n",
" 'may',\n",
" '.',\n",
" 'citywide',\n",
" 'administrative',\n",
" 'services',\n",
" 'division',\n",
" 'of'),\n",
" 12),\n",
" ((')', '513-4670', 'or', 'consult', 'the', 'bulletin', 'board', 'at', 'the'),\n",
" 12),\n",
" (('of',\n",
" 'the',\n",
" 'chairman',\n",
" '.',\n",
" 'board',\n",
" 'of',\n",
" 'higher',\n",
" 'education',\n",
" 'meets'),\n",
" 12),\n",
" (('business',\n",
" 'meeting',\n",
" 'on',\n",
" 'the',\n",
" 'third',\n",
" 'wednesday',\n",
" ',',\n",
" 'of',\n",
" 'each'),\n",
" 12),\n",
" (('new', 'york', ',', 'ny', '10007', 'at', '9:15', 'a.m.', 'once'), 12),\n",
" (('on', 'the', 'second', 'wednesday', 'of', 'each', 'month', 'at', '40'), 12),\n",
" (('municipal', 'building', ',', '9th', 'floor', 'north', ',', '1', 'centre'),\n",
" 12),\n",
" (('foreclosure',\n",
" 'release',\n",
" 'board',\n",
" 'meets',\n",
" 'in',\n",
" 'spector',\n",
" 'hall',\n",
" ',',\n",
" '22'),\n",
" 12),\n",
" (('unless', 'otherwise', 'noted', ')', '.', 'any', 'changes', 'to', 'the'),\n",
" 12),\n",
" (('on',\n",
" 'tuesdays',\n",
" 'at',\n",
" '10:00',\n",
" 'a.m.',\n",
" 'review',\n",
" 'sessions',\n",
" 'begin',\n",
" 'at'),\n",
" 12),\n",
" (('first', 'tuesday', 'of', 'july', 'at', '10:00', 'a.m.', 'board', 'of'),\n",
" 12),\n",
" (('commission',\n",
" 'meets',\n",
" 'in',\n",
" 'the',\n",
" 'hearing',\n",
" 'room',\n",
" ',',\n",
" 'municipal',\n",
" 'building'),\n",
" 12),\n",
" (('is', 'held', 'on', 'the', 'first', 'tuesday', 'of', 'july', 'at'), 12),\n",
" ((',', 'brooklyn', ',', 'new', 'york', '.', 'site', 'no', '.'), 12),\n",
" (('president',\n",
" '.',\n",
" 'manhattan',\n",
" ',',\n",
" 'monthly',\n",
" 'on',\n",
" 'wednesdays',\n",
" ',',\n",
" 'commencing'),\n",
" 12),\n",
" (('hall', ',', 'third', 'floor', ',', 'new', 'york', ',', 'ny'), 12),\n",
" (('on',\n",
" 'approximately',\n",
" 'three',\n",
" 'tuesday',\n",
" \"'s\",\n",
" 'each',\n",
" 'month',\n",
" ',',\n",
" 'commencing'),\n",
" 12),\n",
" (('the',\n",
" 'commission',\n",
" '.',\n",
" 'city',\n",
" 'council',\n",
" 'meets',\n",
" 'by',\n",
" 'charter',\n",
" 'twice'),\n",
" 12),\n",
" (('10:00',\n",
" 'a.m.',\n",
" 'review',\n",
" 'sessions',\n",
" 'begin',\n",
" 'at',\n",
" '9:30',\n",
" 'a.m.',\n",
" 'and'),\n",
" 12),\n",
" (('schedule',\n",
" ',',\n",
" 'or',\n",
" 'additonal',\n",
" 'information',\n",
" ',',\n",
" 'please',\n",
" 'call',\n",
" 'the'),\n",
" 12),\n",
" (('at', 'the', 'call', 'of', 'the', 'chairman', '.', 'housing', 'authority'),\n",
" 12),\n",
" (('month',\n",
" ',',\n",
" 'commencing',\n",
" 'at',\n",
" '9:30',\n",
" 'a.m.',\n",
" ',',\n",
" 'unless',\n",
" 'otherwise'),\n",
" 12),\n",
" (('reasonable',\n",
" 'time',\n",
" 'before',\n",
" 'the',\n",
" 'meeting',\n",
" '.',\n",
" 'for',\n",
" 'additional',\n",
" 'information'),\n",
" 12),\n",
" (('payable',\n",
" 'to',\n",
" 'the',\n",
" 'city',\n",
" 'according',\n",
" 'to',\n",
" 'the',\n",
" 'following',\n",
" 'schedule'),\n",
" 12),\n",
" (('visit',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/ccrb/html/meeting.html',\n",
" 'for',\n",
" 'additional',\n",
" 'information',\n",
" 'and',\n",
" 'scheduling'),\n",
" 12),\n",
" (('room', ',', 'borough', 'of', 'manhattan', ',', 'in', 'the', 'matter'), 12),\n",
" (('513-4670',\n",
" 'or',\n",
" 'consult',\n",
" 'the',\n",
" 'bulletin',\n",
" 'board',\n",
" 'at',\n",
" 'the',\n",
" 'board'),\n",
" 12),\n",
" (('location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'landmarks',\n",
" 'preservation',\n",
" 'commission',\n",
" 'meets',\n",
" 'in'),\n",
" 12),\n",
" (('of', 'awards', 'meets', 'in', 'room', '603', ',', 'municipal', 'building'),\n",
" 12),\n",
" (('.', 'for', 'changes', 'in', 'the', 'schedule', ',', 'or', 'additonal'),\n",
" 12),\n",
" (('elections', '32', 'broadway', ',', '7th', 'floor', ',', 'new', 'york'),\n",
" 12),\n",
" (('main', 'floor', ',', 'manhattan', ',', 'weekly', ',', 'on', 'thursday'),\n",
" 12),\n",
" (('february', ',', 'march', ',', 'april', ',', 'june', ',', 'september'), 12),\n",
" (('additional',\n",
" 'information',\n",
" 'and',\n",
" 'scheduling',\n",
" 'changes',\n",
" '.',\n",
" 'design',\n",
" 'commission',\n",
" 'meets'),\n",
" 12),\n",
" (('on', 'the', '9th', 'floor', 'of', '40', 'rector', 'street', '.'), 12),\n",
" (('unless',\n",
" 'otherwise',\n",
" 'ordered',\n",
" 'by',\n",
" 'the',\n",
" 'commission',\n",
" '.',\n",
" 'city',\n",
" 'council'),\n",
" 12),\n",
" (('generally',\n",
" 'meets',\n",
" 'at',\n",
" '10:00',\n",
" 'a.m.',\n",
" 'on',\n",
" 'the',\n",
" 'second',\n",
" 'wednesday'),\n",
" 12),\n",
" (('hearing', 'meets', 'in', 'spector', 'hall', ',', '22', 'reade', 'street'),\n",
" 12),\n",
" ((',', '42-09', '28th', 'street', ',', 'long', 'island', 'city', ','), 12),\n",
" ((',', '40', 'rector', 'street', ',', 'new', 'york', ',', 'ny'), 12),\n",
" (('at', '40', 'rector', 'street', ',', '6th', 'floor', ',', 'hearing'), 12),\n",
" (('a.m.', 'board', 'of', 'elections', '32', 'broadway', ',', '7th', 'floor'),\n",
" 12),\n",
" ((\"''\",\n",
" 'on',\n",
" 'tuesdays',\n",
" 'at',\n",
" '10:00',\n",
" 'a.m.',\n",
" 'review',\n",
" 'sessions',\n",
" 'begin'),\n",
" 12),\n",
" (('.',\n",
" 'citywide',\n",
" 'administrative',\n",
" 'services',\n",
" 'division',\n",
" 'of',\n",
" 'citywide',\n",
" 'personnel',\n",
" 'services'),\n",
" 12),\n",
" (('.', 'commission', 'on', 'human', 'rights', 'meets', 'on', '10th', 'floor'),\n",
" 12),\n",
" (('call',\n",
" '212-788-3071',\n",
" '.',\n",
" 'department',\n",
" 'of',\n",
" 'education',\n",
" 'meets',\n",
" 'in',\n",
" 'the'),\n",
" 12),\n",
" (('in', 'january', ',', 'february', ',', 'march', ',', 'april', ','), 12),\n",
" (('42-09', '28th', 'street', ',', 'long', 'island', 'city', ',', 'n.y.'), 12),\n",
" (('.',\n",
" 'in',\n",
" 'rem',\n",
" 'foreclosure',\n",
" 'release',\n",
" 'board',\n",
" 'meets',\n",
" 'in',\n",
" 'spector'),\n",
" 12),\n",
" (('.',\n",
" 'for',\n",
" 'meeting',\n",
" 'schedule',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nyc.gov/designcommission',\n",
" 'or'),\n",
" 12),\n",
" (('call', 'of', 'the', 'chairman', '.', 'board', 'of', 'standards', 'and'),\n",
" 12),\n",
" ((',', 'on', 'the', 'fourth', 'wednesday', 'of', 'each', 'month', ','), 12),\n",
" (('avenue', ',', 'staten', 'island', ',', 'new', 'york', 'having', 'an'), 12),\n",
" (('fourth', 'wednesday', 'of', 'each', 'month', ',', 'at', '8:00', 'a.m'),\n",
" 12),\n",
" ((',',\n",
" 'manhattan',\n",
" ',',\n",
" 'bi-weekly',\n",
" ',',\n",
" 'on',\n",
" 'wednesdays',\n",
" ',',\n",
" 'commencing'),\n",
" 12),\n",
" ((',', 'november', 'and', 'december', '.', 'annual', 'meeting', 'held', 'on'),\n",
" 12),\n",
" (('street', ',', 'new', 'york', ',', 'ny', '10006', ',', 'on'), 12),\n",
" (('current',\n",
" 'meeting',\n",
" 'dates',\n",
" ',',\n",
" 'times',\n",
" 'and',\n",
" 'agendas',\n",
" ',',\n",
" 'please'),\n",
" 12),\n",
" (('for',\n",
" 'a',\n",
" 'monthly',\n",
" 'business',\n",
" 'meeting',\n",
" 'on',\n",
" 'the',\n",
" 'third',\n",
" 'wednesday'),\n",
" 12),\n",
" (('in',\n",
" 'may',\n",
" '.',\n",
" 'citywide',\n",
" 'administrative',\n",
" 'services',\n",
" 'division',\n",
" 'of',\n",
" 'citywide'),\n",
" 12),\n",
" (('meets', 'at', '10:00', 'a.m.', 'on', 'the', 'second', 'wednesday', 'of'),\n",
" 12),\n",
" (('will', 'hold', 'hearings', 'as', 'needed', 'in', 'room', '2203', ','), 12),\n",
" (('meets', 'at', '40', 'rector', 'street', ',', '6th', 'floor', ','), 12),\n",
" (('otherwise',\n",
" 'noticed',\n",
" 'by',\n",
" 'the',\n",
" 'commission',\n",
" '.',\n",
" 'for',\n",
" 'current',\n",
" 'meeting'),\n",
" 12),\n",
" (('.', 'parole', 'commission', 'meets', 'at', 'its', 'office', ',', '100'),\n",
" 12),\n",
" (('health',\n",
" 'insurance',\n",
" 'board',\n",
" 'meets',\n",
" 'in',\n",
" 'room',\n",
" '530',\n",
" ',',\n",
" 'municipal'),\n",
" 12),\n",
" (('control', 'board', 'meets', 'at', '100', 'church', 'street', ',', '12th'),\n",
" 12),\n",
" (('application', 'desk', 'at', '(', '212', ')', '513-4670', 'or', 'consult'),\n",
" 12),\n",
" (('broadway', ',', 'new', 'york', ',', 'ny', '10007', '(', 'unless'), 12),\n",
" (('manhattan',\n",
" ',',\n",
" 'weekly',\n",
" ',',\n",
" 'on',\n",
" 'thursday',\n",
" ',',\n",
" 'commencing',\n",
" '10:00'),\n",
" 12),\n",
" (('board', 'meets', 'at', '100', 'church', 'street', ',', '12th', 'floor'),\n",
" 12),\n",
" (('at', '(', '212', ')', '513-4670', 'or', 'consult', 'the', 'bulletin'), 12),\n",
" (('customarily',\n",
" 'held',\n",
" 'on',\n",
" 'mondays',\n",
" 'preceding',\n",
" 'a',\n",
" 'tuesday',\n",
" 'public',\n",
" 'hearing'),\n",
" 12),\n",
" ((',', '22', 'reade', 'street', ',', 'main', 'floor', ',', 'and'), 12),\n",
" ((',', 'main', 'floor', ',', 'manhattan', ',', 'bi-weekly', ',', 'on'), 12),\n",
" (('a', 'month', 'at', 'the', 'call', 'of', 'the', 'chairman', '.'), 12),\n",
" (('sessions',\n",
" 'begin',\n",
" 'at',\n",
" '9:30',\n",
" 'a.m.',\n",
" 'and',\n",
" 'are',\n",
" 'customarily',\n",
" 'held'),\n",
" 12),\n",
" ((',', 'main', 'floor', ',', 'manhattan', ',', 'monthly', 'on', 'tuesdays'),\n",
" 12),\n",
" (('city', ',', 'n.y.', '11101', ',', 'at', '10:00', 'a.m.', ','), 12),\n",
" (('10:00', 'a.m.', 'board', 'of', 'elections', '32', 'broadway', ',', '7th'),\n",
" 12),\n",
" (('each', 'month', ',', 'commencing', 'at', '9:30', 'a.m.', ',', 'unless'),\n",
" 12),\n",
" (('month', '(', 'except', 'august', ')', 'at', '10:00', 'a.m.', 'in'), 12),\n",
" (('in',\n",
" 'manhattan',\n",
" 'on',\n",
" 'approximately',\n",
" 'three',\n",
" 'tuesday',\n",
" \"'s\",\n",
" 'each',\n",
" 'month'),\n",
" 12),\n",
" ((\"'\",\n",
" 'retirement',\n",
" 'system',\n",
" 'meets',\n",
" 'in',\n",
" 'the',\n",
" 'boardroom',\n",
" ',',\n",
" '22nd'),\n",
" 12),\n",
" (('street', ',', 'new', 'york', ',', 'n.y.', '10004', '.', 'commission'), 12),\n",
" (('website',\n",
" 'at',\n",
" 'www.nyc.gov/landmarks',\n",
" '.',\n",
" 'employees',\n",
" \"'\",\n",
" 'retirement',\n",
" 'system',\n",
" 'meets'),\n",
" 12),\n",
" (('floor', 'in', 'the', 'commission', \"'s\", 'central', 'office', ',', '40'),\n",
" 12),\n",
" (('on', 'tuesdays', ',', 'commencing', '10:00', 'a.m.', ',', 'and', 'other'),\n",
" 12),\n",
" (('authority',\n",
" 'are',\n",
" 'scheduled',\n",
" 'for',\n",
" 'the',\n",
" 'last',\n",
" 'wednesday',\n",
" 'of',\n",
" 'each'),\n",
" 12),\n",
" (('.', 'tax', 'commission', 'meets', 'in', 'room', '936', ',', 'municipal'),\n",
" 12),\n",
" (('among',\n",
" 'other',\n",
" 'terms',\n",
" 'and',\n",
" 'conditions',\n",
" 'for',\n",
" 'compensation',\n",
" 'payable',\n",
" 'to'),\n",
" 12),\n",
" ((',', 'ny', '10006', ',', 'on', 'the', 'fourth', 'wednesday', 'of'), 12),\n",
" ((',', 'march', ',', 'april', ',', 'june', ',', 'september', ','), 12),\n",
" (('noticed',\n",
" 'by',\n",
" 'the',\n",
" 'commission',\n",
" '.',\n",
" 'for',\n",
" 'current',\n",
" 'meeting',\n",
" 'dates'),\n",
" 12),\n",
" (('a',\n",
" 'monthly',\n",
" 'business',\n",
" 'meeting',\n",
" 'on',\n",
" 'the',\n",
" 'third',\n",
" 'wednesday',\n",
" ','),\n",
" 12),\n",
" (('meets', 'on', '10th', 'floor', 'in', 'the', 'commission', \"'s\", 'central'),\n",
" 12),\n",
" (('.', 'design', 'commission', 'meets', 'at', 'city', 'hall', ',', 'third'),\n",
" 12),\n",
" (('charter', 'twice', 'a', 'month', 'in', 'councilman', \"'s\", 'chamber', ','),\n",
" 12),\n",
" (('the',\n",
" 'department',\n",
" 'of',\n",
" 'citywide',\n",
" 'administrative',\n",
" 'services',\n",
" 'may',\n",
" 'determine',\n",
" '.'),\n",
" 12),\n",
" ((',', 'june', ',', 'september', ',', 'october', ',', 'november', 'and'), 12),\n",
" (('second',\n",
" 'wednesday',\n",
" 'of',\n",
" 'each',\n",
" 'month',\n",
" 'at',\n",
" '40',\n",
" 'rector',\n",
" 'street'),\n",
" 12),\n",
" (('on',\n",
" '10th',\n",
" 'floor',\n",
" 'in',\n",
" 'the',\n",
" 'commission',\n",
" \"'s\",\n",
" 'central',\n",
" 'office'),\n",
" 12),\n",
" (('real',\n",
" 'property',\n",
" 'acquisition',\n",
" 'and',\n",
" 'disposition',\n",
" 'meets',\n",
" 'in',\n",
" 'spector',\n",
" 'hall'),\n",
" 12),\n",
" ((',', '9th', 'floor', 'north', ',', '1', 'centre', 'street', 'in'), 12),\n",
" (('e', \"''\", 'on', 'tuesdays', 'at', '10:00', 'a.m.', 'review', 'sessions'),\n",
" 12),\n",
" (('.', 'the', 'annual', 'meeting', 'is', 'held', 'on', 'the', 'first'), 12),\n",
" (('held',\n",
" 'on',\n",
" 'fourth',\n",
" 'monday',\n",
" 'in',\n",
" 'may',\n",
" '.',\n",
" 'citywide',\n",
" 'administrative'),\n",
" 12),\n",
" (('of', 'the', 'chairman', '.', 'board', 'of', 'health', 'meets', 'at'), 12),\n",
" (('changes',\n",
" 'in',\n",
" 'the',\n",
" 'schedule',\n",
" ',',\n",
" 'or',\n",
" 'additonal',\n",
" 'information',\n",
" ','),\n",
" 12),\n",
" (('call', 'of', 'the', 'chairman', '.', 'board', 'of', 'health', 'meets'),\n",
" 12),\n",
" ((',', 'n.y.', '10004', '.', 'commission', 'on', 'human', 'rights', 'meets'),\n",
" 12),\n",
" (('commission',\n",
" '.',\n",
" 'city',\n",
" 'council',\n",
" 'meets',\n",
" 'by',\n",
" 'charter',\n",
" 'twice',\n",
" 'a'),\n",
" 12),\n",
" (('room', '``', 'e', \"''\", 'on', 'tuesdays', 'at', '10:00', 'a.m.'), 12),\n",
" (('(', 'unless', 'otherwise', 'noted', ')', '.', 'any', 'changes', 'to'), 12),\n",
" (('rem',\n",
" 'foreclosure',\n",
" 'release',\n",
" 'board',\n",
" 'meets',\n",
" 'in',\n",
" 'spector',\n",
" 'hall',\n",
" ','),\n",
" 12),\n",
" (('street', ',', 'main', 'floor', ',', 'and', 'other', 'days', ','), 12),\n",
" (('as',\n",
" 'warranted',\n",
" '.',\n",
" 'franchise',\n",
" 'and',\n",
" 'concession',\n",
" 'review',\n",
" 'committee',\n",
" 'meets'),\n",
" 12),\n",
" (('call', 'of', 'the', 'president', '.', 'manhattan', ',', 'monthly', 'on'),\n",
" 12),\n",
" (('centre',\n",
" 'street',\n",
" 'in',\n",
" 'manhattan',\n",
" 'on',\n",
" 'approximately',\n",
" 'three',\n",
" 'tuesday',\n",
" \"'s\"),\n",
" 12),\n",
" (('of',\n",
" 'the',\n",
" 'commissioner',\n",
" '.',\n",
" 'environmental',\n",
" 'control',\n",
" 'board',\n",
" 'meets',\n",
" 'at'),\n",
" 12),\n",
" (('at', '10:00', 'a.m.', ',', 'quarterly', 'or', 'at', 'the', 'call'), 12),\n",
" (('on', 'the', 'fourth', 'wednesday', 'of', 'each', 'month', ',', 'at'), 12),\n",
" (('chairman',\n",
" '.',\n",
" 'board',\n",
" 'of',\n",
" 'higher',\n",
" 'education',\n",
" 'meets',\n",
" 'at',\n",
" '535'),\n",
" 12),\n",
" (('2203', ',', '2', 'washington', 'street', ',', 'new', 'york', ','), 12),\n",
" (('month', 'at', '6:00', 'p.m', '.', 'the', 'annual', 'meeting', 'is'), 12),\n",
" (('and',\n",
" 'provides',\n",
" 'among',\n",
" 'other',\n",
" 'terms',\n",
" 'and',\n",
" 'conditions',\n",
" 'for',\n",
" 'compensation'),\n",
" 12),\n",
" ((',', 'april', ',', 'june', ',', 'september', ',', 'october', ','), 12),\n",
" ((',',\n",
" 'commencing',\n",
" 'at',\n",
" '9:30',\n",
" 'a.m.',\n",
" ',',\n",
" 'unless',\n",
" 'otherwise',\n",
" 'noticed'),\n",
" 12),\n",
" (('9:15', 'a.m.', 'once', 'a', 'month', 'at', 'the', 'call', 'of'), 12),\n",
" (('july',\n",
" 'at',\n",
" '10:00',\n",
" 'a.m.',\n",
" 'board',\n",
" 'of',\n",
" 'elections',\n",
" '32',\n",
" 'broadway'),\n",
" 12),\n",
" (('board',\n",
" 'generally',\n",
" 'meets',\n",
" 'at',\n",
" '10:00',\n",
" 'a.m.',\n",
" 'on',\n",
" 'the',\n",
" 'second'),\n",
" 12),\n",
" (('third', 'thursday', 'of', 'each', 'month', ',', 'at', 'the', 'call'), 12),\n",
" ((',', 'please', 'call', 'the', 'application', 'desk', 'at', '(', '212'), 12),\n",
" (('chairman',\n",
" '.',\n",
" 'board',\n",
" 'of',\n",
" 'health',\n",
" 'meets',\n",
" 'at',\n",
" 'gotham',\n",
" 'center'),\n",
" 12),\n",
" (('december',\n",
" '.',\n",
" 'annual',\n",
" 'meeting',\n",
" 'held',\n",
" 'on',\n",
" 'fourth',\n",
" 'monday',\n",
" 'in'),\n",
" 12),\n",
" (('in', 'the', 'boardroom', ',', '22nd', 'floor', ',', '335', 'adams'), 12),\n",
" ((',', 'new', 'york', ',', 'ny', '10006', '.', 'visit', 'http'), 12),\n",
" ...]"
]
}
],
"prompt_number": 33
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"corpus5grams = ngrams(lowerTokens,5)\n",
"corpus5gramFreqs = nltk.FreqDist(corpus5grams)\n",
"corpus5gramFreqs.most_common()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 34,
"text": [
"[(('personnel', 'in', 'substantially', 'similar', 'titles'), 272),\n",
" (('in', 'substantially', 'similar', 'titles', 'within'), 269),\n",
" (('similar', 'titles', 'within', 'agency', ':'), 264),\n",
" (('substantially', 'similar', 'titles', 'within', 'agency'), 264),\n",
" (('--', '--', '--', '--', '--'), 192),\n",
" (('of', 'the', 'proposed', 'contract', ':'), 186),\n",
" (('date', 'of', 'the', 'proposed', 'contract'), 186),\n",
" (('notice', 'is', 'hereby', 'given', 'that'), 185),\n",
" ((',', 'new', 'york', ',', 'ny'), 152),\n",
" (('agency', 'intends', 'to', 'utilize', ':'), 137),\n",
" (('headcount', 'of', 'personnel', 'in', 'substantially'), 136),\n",
" (('of', 'personnel', 'in', 'substantially', 'similar'), 136),\n",
" (('the', 'agency', 'intends', 'to', 'utilize'), 134),\n",
" (('start', 'date', 'of', 'the', 'proposed'), 131),\n",
" (('end', 'date', 'of', 'the', 'proposed'), 131),\n",
" (('(', 's', ')', 'not', 'included'), 126),\n",
" (('annual', 'contracting', 'plan', 'and', 'schedule'), 126),\n",
" (('s', ')', 'not', 'included', 'in'), 126),\n",
" (('maintain', ',', 'and', 'operate', 'an'), 124),\n",
" (('caf', 'for', 'a', 'term', 'of'), 124),\n",
" (('2015', 'annual', 'contracting', 'plan', 'and'), 124),\n",
" (('fy', '2015', 'annual', 'contracting', 'plan'), 124),\n",
" (('sidewalk', 'caf', 'for', 'a', 'term'), 124),\n",
" (('in', 'the', 'borough', 'of', 'manhattan'), 121),\n",
" (('unenclosed', 'sidewalk', 'caf', 'for', 'a'), 120),\n",
" (('is', 'hereby', 'given', 'that', 'the'), 116),\n",
" (('an', 'unenclosed', 'sidewalk', 'caf', 'for'), 112),\n",
" (('operate', 'an', 'unenclosed', 'sidewalk', 'caf'), 112),\n",
" ((',', 'and', 'operate', 'an', 'unenclosed'), 112),\n",
" (('and', 'operate', 'an', 'unenclosed', 'sidewalk'), 112),\n",
" (('the', 'city', 'of', 'new', 'york'), 104),\n",
" (('method', 'of', 'solicitation', 'the', 'agency'), 103),\n",
" (('of', 'solicitation', 'the', 'agency', 'intends'), 103),\n",
" (('solicitation', 'the', 'agency', 'intends', 'to'), 103),\n",
" (('a', 'term', 'of', 'four', 'years'), 102),\n",
" (('for', 'a', 'term', 'of', 'four'), 102),\n",
" (('of', 'four', 'years', '.', ')'), 101),\n",
" (('term', 'of', 'four', 'years', '.'), 101),\n",
" (('the', 'borough', 'of', 'manhattan', '('), 100),\n",
" ((',', '22', 'reade', 'street', ','), 100),\n",
" (('borough', 'of', 'manhattan', '(', 'to'), 99),\n",
" (('to', 'maintain', ',', 'and', 'operate'), 98),\n",
" (('floor', ',', 'new', 'york', ','), 96),\n",
" (('solicitation', '(', 's', ')', 'not'), 94),\n",
" (('titles', 'within', 'agency', ':', 'none'), 93),\n",
" (('none', 'headcount', 'of', 'personnel', 'in'), 92),\n",
" (('agency', ':', 'none', 'headcount', 'of'), 92),\n",
" ((':', 'none', 'headcount', 'of', 'personnel'), 92),\n",
" (('within', 'agency', ':', 'none', 'headcount'), 91),\n",
" (('continue', 'to', 'maintain', ',', 'and'), 89),\n",
" (('of', 'manhattan', '(', 'to', 'continue'), 87),\n",
" (('to', 'continue', 'to', 'maintain', ','), 86),\n",
" (('manhattan', '(', 'to', 'continue', 'to'), 86),\n",
" (('(', 'to', 'continue', 'to', 'maintain'), 86),\n",
" (('of', 'the', 'new', 'york', 'city'), 83),\n",
" (('titles', 'within', 'agency', ':', '0'), 83),\n",
" (('spector', 'hall', ',', '22', 'reade'), 82),\n",
" (('hall', ',', '22', 'reade', 'street'), 82),\n",
" (('in', 'spector', 'hall', ',', '22'), 81),\n",
" (('description', 'of', 'services', 'sought', ':'), 80),\n",
" (('at', 'the', 'call', 'of', 'the'), 75),\n",
" (('street', ',', 'new', 'york', ','), 75),\n",
" (('new', 'york', ',', 'ny', '10007'), 68),\n",
" (('hereby', 'given', 'that', 'the', 'mayor'), 65),\n",
" (('of', 'the', 'city', 'of', 'new'), 64),\n",
" (('and', 'schedule', 'notice', 'is', 'hereby'), 63),\n",
" (('charter', '312', '(', 'a', ')'), 63),\n",
" (('contracting', 'plan', 'and', 'schedule', 'notice'), 63),\n",
" (('not', 'included', 'in', 'the', 'fy'), 63),\n",
" (('to', 'new', 'york', 'city', 'charter'), 63),\n",
" (('is', 'published', 'pursuant', 'to', 'new'), 63),\n",
" (('schedule', 'notice', 'is', 'hereby', 'given'), 63),\n",
" (('york', 'city', 'charter', '312', '('), 63),\n",
" (('and', 'schedule', 'that', 'is', 'published'), 63),\n",
" (('plan', 'and', 'schedule', 'notice', 'is'), 63),\n",
" (('312', '(', 'a', ')', ':'), 63),\n",
" (('city', 'charter', '312', '(', 'a'), 63),\n",
" (('(', 'a', ')', ':', 'agency'), 63),\n",
" (('published', 'pursuant', 'to', 'new', 'york'), 63),\n",
" (('plan', 'and', 'schedule', 'that', 'is'), 63),\n",
" (('a', ')', ':', 'agency', ':'), 63),\n",
" ((',', 'new', 'york', ',', 'n.y.'), 63),\n",
" (('new', 'york', 'city', 'charter', '312'), 63),\n",
" (('that', 'the', 'mayor', 'will', 'be'), 63),\n",
" ((')', 'not', 'included', 'in', 'the'), 63),\n",
" (('pursuant', 'to', 'new', 'york', 'city'), 63),\n",
" (('that', 'is', 'published', 'pursuant', 'to'), 63),\n",
" (('contracting', 'plan', 'and', 'schedule', 'that'), 63),\n",
" (('given', 'that', 'the', 'mayor', 'will'), 63),\n",
" (('schedule', 'that', 'is', 'published', 'pursuant'), 63),\n",
" ((')', 'not', 'included', 'in', 'fy'), 63),\n",
" (('not', 'included', 'in', 'fy', '2015'), 62),\n",
" (('the', 'fy', '2015', 'annual', 'contracting'), 62),\n",
" (('included', 'in', 'the', 'fy', '2015'), 62),\n",
" ((',', 'borough', 'of', 'manhattan', ','), 62),\n",
" (('in', 'fy', '2015', 'annual', 'contracting'), 62),\n",
" (('in', 'the', 'fy', '2015', 'annual'), 62),\n",
" (('call', 'of', 'the', 'chairman', '.'), 62),\n",
" (('included', 'in', 'fy', '2015', 'annual'), 62),\n",
" (('for', 'the', 'period', 'july', '1'), 61),\n",
" (('the', 'period', 'july', '1', ','), 61),\n",
" (('meets', 'in', 'spector', 'hall', ','), 60),\n",
" (('new', 'york', ',', 'new', 'york'), 53),\n",
" (('the', 'new', 'york', 'city', 'charter'), 53),\n",
" (('the', 'call', 'of', 'the', 'chairman'), 51),\n",
" (('ave', 'in', 'the', 'borough', 'of'), 51),\n",
" (('reade', 'street', ',', 'main', 'floor'), 50),\n",
" (('street', ',', 'main', 'floor', ','), 50),\n",
" (('22', 'reade', 'street', ',', 'main'), 50),\n",
" (('of', 'environmental', 'remediation', '(', 'oer'), 50),\n",
" (('environmental', 'remediation', '(', 'oer', ')'), 50),\n",
" (('new', 'york', 'city', 'office', 'of'), 50),\n",
" (('office', 'of', 'environmental', 'remediation', '('), 50),\n",
" (('in', 'the', 'matter', 'of', 'a'), 49),\n",
" ((':', 'task', 'order', 'personnel', 'in'), 49),\n",
" (('remediation', '(', 'oer', ')', 'has'), 49),\n",
" (('(', 'oer', ')', 'has', 'received'), 49),\n",
" (('order', 'personnel', 'in', 'substantially', 'similar'), 49),\n",
" (('the', 'new', 'york', 'city', 'office'), 49),\n",
" (('oer', ')', 'has', 'received', 'an'), 49),\n",
" (('assigned', 'to', 'this', 'project', '.'), 49),\n",
" (('received', 'an', 'nyc', 'voluntary', 'cleanup'), 49),\n",
" (('utilize', ':', 'task', 'order', 'personnel'), 49),\n",
" (('nyc', 'voluntary', 'cleanup', 'program', '('), 49),\n",
" (('is', 'assigned', 'to', 'this', 'project'), 49),\n",
" (('program', '(', 'vcp', ')', 'application'), 49),\n",
" (('task', 'order', 'personnel', 'in', 'substantially'), 49),\n",
" (('city', 'office', 'of', 'environmental', 'remediation'), 49),\n",
" (('york', 'city', 'office', 'of', 'environmental'), 49),\n",
" (('has', 'received', 'an', 'nyc', 'voluntary'), 49),\n",
" (('cleanup', 'program', '(', 'vcp', ')'), 49),\n",
" ((')', 'has', 'received', 'an', 'nyc'), 49),\n",
" (('intends', 'to', 'utilize', ':', 'task'), 49),\n",
" (('voluntary', 'cleanup', 'program', '(', 'vcp'), 49),\n",
" (('an', 'nyc', 'voluntary', 'cleanup', 'program'), 49),\n",
" (('to', 'utilize', ':', 'task', 'order'), 49),\n",
" ((',', 'times', 'and', 'location', 'as'), 48),\n",
" (('times', 'and', 'location', 'as', 'warranted'), 48),\n",
" (('administration', 'for', 'children', \"'s\", 'services'), 48),\n",
" (('days', ',', 'times', 'and', 'location'), 48),\n",
" (('and', 'location', 'as', 'warranted', '.'), 48),\n",
" (('other', 'days', ',', 'times', 'and'), 48),\n",
" (('for', 'a', 'site', 'located', 'at'), 48),\n",
" (('(', 'vcp', ')', 'application', 'from'), 48),\n",
" (('is', 'hereby', 'given', 'that', 'a'), 48),\n",
" (('zoning', 'district', '.', 'premises', 'affected'), 48),\n",
" ((',', 'and', 'other', 'days', ','), 48),\n",
" (('and', 'other', 'days', ',', 'times'), 48),\n",
" (('the', 'following', 'solicitation', '(', 's'), 47),\n",
" (('mayor', 'will', 'be', 'issuing', 'the'), 47),\n",
" (('of', 'intent', 'to', 'issue', 'new'), 47),\n",
" (('to', 'issue', 'new', 'solicitation', '('), 47),\n",
" (('new', 'solicitation', '(', 's', ')'), 47),\n",
" (('following', 'solicitation', '(', 's', ')'), 47),\n",
" (('issuing', 'the', 'following', 'solicitation', '('), 47),\n",
" (('will', 'be', 'issuing', 'the', 'following'), 47),\n",
" (('notice', 'of', 'intent', 'to', 'issue'), 47),\n",
" (('public', 'hearing', 'will', 'be', 'held'), 47),\n",
" (('the', 'mayor', 'will', 'be', 'issuing'), 47),\n",
" (('intent', 'to', 'issue', 'new', 'solicitation'), 47),\n",
" (('be', 'issuing', 'the', 'following', 'solicitation'), 47),\n",
" (('issue', 'new', 'solicitation', '(', 's'), 47),\n",
" (('agency', ':', '0', 'agency', ':'), 46),\n",
" (('new', 'york', ',', 'n.y.', '10007'), 46),\n",
" ((',', 'manhattan', 'certificate', 'of', 'appropriateness'), 46),\n",
" (('.', 'the', 'new', 'york', 'city'), 45),\n",
" (('project', '.', 'the', 'new', 'york'), 45),\n",
" (('this', 'project', '.', 'the', 'new'), 45),\n",
" (('within', 'agency', ':', '0', 'agency'), 45),\n",
" (('to', 'this', 'project', '.', 'the'), 45),\n",
" ((')', ':', 'agency', ':', 'department'), 44),\n",
" ((':', 'agency', ':', 'department', 'of'), 44),\n",
" ((',', 'manhattan', ',', 'new', 'york'), 44),\n",
" (('city', 'of', 'new', 'york', ','), 43),\n",
" ((':', 'department', 'of', 'information', 'technology'), 41),\n",
" (('new', 'york', 'city', 'department', 'of'), 41),\n",
" (('agency', ':', 'department', 'of', 'information'), 41),\n",
" (('of', 'the', 'proposed', 'renewed/extended', 'contract'), 40),\n",
" (('date', 'of', 'the', 'proposed', 'renewed/extended'), 40),\n",
" (('the', 'proposed', 'renewed/extended', 'contract', ':'), 40),\n",
" (('public', 'notice', 'is', 'hereby', 'given'), 39),\n",
" (('manhattan', 'certificate', 'of', 'appropriateness', 'a'), 38),\n",
" (('at', '40', 'rector', 'street', ','), 38),\n",
" ((',', 'new', 'york', '10007', ','), 38),\n",
" (('the', 'matter', 'of', 'an', 'application'), 37),\n",
" (('a', 'public', 'hearing', 'will', 'be'), 37),\n",
" ((',', 'new', 'york', ',', 'new'), 37),\n",
" (('main', 'floor', ',', 'manhattan', ','), 36),\n",
" (('a.m.', ',', 'and', 'other', 'days'), 36),\n",
" (('scheduled', 'for', 'public', 'hearing', 'by'), 36),\n",
" (('of', 'the', 'chairman', '.', 'board'), 36),\n",
" (('commencing', '10:00', 'a.m.', ',', 'and'), 36),\n",
" (('for', 'public', 'hearing', 'by', 'community'), 36),\n",
" (('the', 'following', 'matters', 'have', 'been'), 36),\n",
" (('10:00', 'a.m.', ',', 'and', 'other'), 36),\n",
" ((',', 'main', 'floor', ',', 'manhattan'), 36),\n",
" (('the', 'chairman', '.', 'board', 'of'), 36),\n",
" (('given', 'that', 'the', 'following', 'matters'), 36),\n",
" (('been', 'scheduled', 'for', 'public', 'hearing'), 36),\n",
" (('matters', 'have', 'been', 'scheduled', 'for'), 36),\n",
" ((',', 'commencing', '10:00', 'a.m.', ','), 36),\n",
" (('hereby', 'given', 'that', 'the', 'following'), 36),\n",
" (('that', 'the', 'following', 'matters', 'have'), 36),\n",
" (('have', 'been', 'scheduled', 'for', 'public'), 36),\n",
" ((',', 'municipal', 'building', ',', 'manhattan'), 36),\n",
" (('municipal', 'building', ',', 'manhattan', ','), 36),\n",
" (('following', 'matters', 'have', 'been', 'scheduled'), 36),\n",
" (('in', 'the', 'borough', 'of', 'brooklyn'), 35),\n",
" (('22', 'reade', 'street', ',', 'new'), 35),\n",
" (('in', 'the', 'matter', 'of', 'an'), 35),\n",
" (('reade', 'street', ',', 'new', 'york'), 35),\n",
" (('days', 'prior', 'to', 'the', 'public'), 35),\n",
" (('public', 'hearing', 'by', 'community', 'board'), 35),\n",
" (('by', 'community', 'board', ':', 'borough'), 35),\n",
" (('hearing', 'by', 'community', 'board', ':'), 35),\n",
" (('individuals', 'requesting', 'sign', 'language', 'interpreters'), 35),\n",
" ((',', 'in', 'the', 'borough', 'of'), 35),\n",
" (('community', 'board', ':', 'borough', 'of'), 35),\n",
" (('requesting', 'sign', 'language', 'interpreters', 'should'), 35),\n",
" (('matter', 'of', 'an', 'application', 'submitted'), 34),\n",
" ((',', 'owner', '.', 'subject', 'application'), 33),\n",
" (('the', 'matter', 'of', 'a', 'proposed'), 33),\n",
" (('hearing', 'will', 'be', 'held', 'at'), 33),\n",
" (('of', 'an', 'application', 'submitted', 'by'), 33),\n",
" (('at', '10:00', 'a.m.', 'on', 'the'), 32),\n",
" ((':', '0', 'agency', ':', 'department'), 32),\n",
" (('to', 'the', 'public', 'hearing', '.'), 32),\n",
" (('prior', 'to', 'the', 'public', 'hearing'), 32),\n",
" (('nature', 'of', 'services', 'performed', 'under'), 32),\n",
" (('s', ')', 'the', 'agency', 'intends'), 32),\n",
" (('new', 'start', 'date', 'of', 'the'), 32),\n",
" (('0', 'agency', ':', 'department', 'of'), 32),\n",
" (('of', 'the', 'procurement', 'policy', 'board'), 32),\n",
" (('new', 'end', 'date', 'of', 'the'), 32),\n",
" (('performed', 'under', 'the', 'contract', ':'), 32),\n",
" (('of', 'services', 'performed', 'under', 'the'), 32),\n",
" (('services', 'performed', 'under', 'the', 'contract'), 32),\n",
" (('the', 'new', 'york', 'city', 'department'), 32),\n",
" (('contract', '(', 's', ')', 'not'), 32),\n",
" (('floor', ',', 'borough', 'of', 'manhattan'), 32),\n",
" (('(', 's', ')', 'the', 'agency'), 32),\n",
" (('reason', '(', 's', ')', 'the'), 32),\n",
" ((')', 'the', 'agency', 'intends', 'to'), 32),\n",
" (('the', 'nature', 'of', 'services', 'performed'), 31),\n",
" (('sign', 'language', 'interpreters', 'should', 'contact'), 31),\n",
" (('to', 'the', 'nature', 'of', 'services'), 31),\n",
" (('the', 'mayor', \"'s\", 'office', 'of'), 31),\n",
" (('sought', 'to', 'the', 'nature', 'of'), 31),\n",
" (('modifications', 'sought', 'to', 'the', 'nature'), 31),\n",
" (('the', 'administration', 'for', 'children', \"'s\"), 31),\n",
" (('language', 'interpreters', 'should', 'contact', 'the'), 30),\n",
" (('york', '.', 'site', 'no', '.'), 30),\n",
" (('new', 'york', '.', 'site', 'no'), 30),\n",
" ((',', 'new', 'york', '.', 'site'), 30),\n",
" ((',', 'brooklyn', ',', 'new', 'york'), 30),\n",
" (('manhattan', ',', 'new', 'york', '10007'), 29),\n",
" (('st', 'in', 'the', 'borough', 'of'), 29),\n",
" (('department', 'of', 'information', 'technology', '&'), 29),\n",
" (('business', 'days', 'prior', 'to', 'the'), 29),\n",
" (('the', 'procurement', 'policy', 'board', 'rules'), 29),\n",
" (('for', 'children', \"'s\", 'services', ','), 28),\n",
" ((',', '2nd', 'floor', ',', 'new'), 28),\n",
" ((':', 'in', 'the', 'matter', 'of'), 28),\n",
" (('of', 'information', 'technology', '&', 'telecommunications'), 28),\n",
" (('2nd', 'floor', ',', 'new', 'york'), 28),\n",
" (('that', 'a', 'public', 'hearing', 'will'), 28),\n",
" (('york', ',', 'n.y.', '10007', ','), 28),\n",
" (('contact', 'the', 'mayor', \"'s\", 'office'), 27),\n",
" (('should', 'contact', 'the', 'mayor', \"'s\"), 27),\n",
" (('interpreters', 'should', 'contact', 'the', 'mayor'), 27),\n",
" (('square', 'foot', 'parcel', 'of', 'land'), 27),\n",
" (('william', 'street', ',', '9th', 'floor'), 26),\n",
" (('given', 'that', 'a', 'public', 'hearing'), 26),\n",
" ((',', 'at', 'the', 'call', 'of'), 26),\n",
" (('borough', 'of', 'manhattan', ',', 'on'), 26),\n",
" (('five', '(', '5', ')', 'years'), 26),\n",
" (('150', 'william', 'street', ',', '9th'), 26),\n",
" ((')', 'business', 'days', 'prior', 'to'), 26),\n",
" (('extension', 'new', 'start', 'date', 'of'), 26),\n",
" (('llc', 'for', 'a', 'site', 'located'), 25),\n",
" (('hereby', 'given', 'that', 'a', 'public'), 25),\n",
" ((',', 'between', 'the', 'hours', 'of'), 25),\n",
" (('.', '(', 'preliminary', 'and', 'final'), 24),\n",
" (('telecommunications', 'description', 'of', 'services', 'sought'), 24),\n",
" (('(', 'preliminary', 'and', 'final', ')'), 24),\n",
" ((',', 'at', '10:00', 'a.m.', ','), 24),\n",
" (('of', 'each', 'month', ',', 'at'), 24),\n",
" (('procurement', 'policy', 'board', 'rules', '.'), 24),\n",
" (('on', 'the', 'following', ':', 'in'), 24),\n",
" (('month', 'at', 'the', 'call', 'of'), 24),\n",
" (('10007', ',', '(', '212', ')'), 24),\n",
" (('nature', 'of', 'services', 'sought', ':'), 24),\n",
" (('the', 'following', ':', 'in', 'the'), 24),\n",
" (('street', ',', '9th', 'floor', ','), 24),\n",
" ((',', 'brooklyn', 'certificate', 'of', 'appropriateness'), 24),\n",
" (('following', ':', 'in', 'the', 'matter'), 24),\n",
" (('new', 'york', ',', 'ny', '10004'), 24),\n",
" (('department', 'of', 'parks', 'and', 'recreation'), 24),\n",
" ((',', 'maintain', ',', 'and', 'operate'), 24),\n",
" (('new', 'york', ',', 'ny', '10006'), 24),\n",
" (('new', 'york', 'city', 'charter', 'for'), 23),\n",
" (('preliminary', 'and', 'final', ')', '('), 23),\n",
" (('information', 'technology', '&', 'telecommunications', 'description'), 23),\n",
" (('.', 'start', 'date', 'of', 'the'), 23),\n",
" (('technology', '&', 'telecommunications', 'description', 'of'), 23),\n",
" (('&', 'telecommunications', 'description', 'of', 'services'), 23),\n",
" (('.', 'notice', 'of', 'intent', 'to'), 23),\n",
" (('and', 'final', ')', '(', 'cc'), 23),\n",
" (('at', 'the', 'new', 'york', 'city'), 23),\n",
" (('a.m.', 'on', 'the', 'following', ':'), 23),\n",
" (('contract', ':', 'none', 'reason', '('), 22),\n",
" (('term', 'of', 'two', 'years', '.'), 22),\n",
" (('for', 'a', 'term', 'of', 'two'), 22),\n",
" (('new', 'york', 'city', 'charter', ','), 22),\n",
" (('under', 'the', 'contract', ':', 'none'), 22),\n",
" (('of', 'the', 'proposed', 'extended', 'contract'), 22),\n",
" ((':', 'none', 'reason', '(', 's'), 22),\n",
" (('none', 'reason', '(', 's', ')'), 22),\n",
" (('intends', 'to', 'utilize', ':', 'amendment'), 22),\n",
" (('building', ',', 'manhattan', ',', 'new'), 22),\n",
" (('will', 'be', 'held', 'at', 'the'), 22),\n",
" (('york', ',', 'ny', '10004', ','), 22),\n",
" (('of', 'two', 'years', '.', ')'), 22),\n",
" (('pursuant', 'to', 'sections', '197-c', 'and'), 22),\n",
" ((')', 'of', 'the', 'procurement', 'policy'), 22),\n",
" (('a', 'term', 'of', 'two', 'years'), 22),\n",
" (('the', 'contract', ':', 'none', 'reason'), 22),\n",
" ((',', 'zoned', 'r6', 'community', 'district'), 22),\n",
" (('the', 'proposed', 'extended', 'contract', ':'), 22),\n",
" (('new', 'york', '10007', ',', 'at'), 22),\n",
" (('date', 'of', 'the', 'proposed', 'extended'), 22),\n",
" (('9th', 'floor', ',', 'borough', 'of'), 21),\n",
" (('the', 'state', 'of', 'new', 'york'), 21),\n",
" (('public', 'hearings', 'unit', ',', '253'), 21),\n",
" (('of', 'new', 'york', ',', 'as'), 21),\n",
" ((',', 'public', 'hearings', 'unit', ','), 21),\n",
" (('(', '212', ')', '788-7490', ','), 21),\n",
" (('788-7490', ',', 'no', 'later', 'than'), 21),\n",
" ((')', '788-7490', ',', 'no', 'later'), 21),\n",
" (('foot', 'parcel', 'of', 'land', 'located'), 21),\n",
" (('unit', ',', '253', 'broadway', ','), 21),\n",
" (('to', 'utilize', ':', 'amendment', 'extension'), 21),\n",
" (('hearings', 'unit', ',', '253', 'broadway'), 21),\n",
" (('services', ',', 'public', 'hearings', 'unit'), 21),\n",
" (('street', ',', 'brooklyn', ',', 'new'), 21),\n",
" ((',', '9th', 'floor', ',', 'borough'), 21),\n",
" (('parcel', 'of', 'land', 'located', 'at'), 21),\n",
" (('212', ')', '788-7490', ',', 'no'), 21),\n",
" (('services', 'personnel', 'in', 'substantially', 'similar'), 21),\n",
" (('nan', 'notice', 'of', 'intent', 'to'), 20),\n",
" (('of', 'housing', 'preservation', 'and', 'development'), 20),\n",
" (('utilize', ':', 'amendment', 'extension', 'new'), 20),\n",
" (('amendment', 'extension', 'new', 'start', 'date'), 20),\n",
" (('the', 'agency', 'intends', 'to', 'renew/extend'), 20),\n",
" (('york', ',', 'ny', '10007', ','), 20),\n",
" (('to', 'renew/extend', 'the', 'contract', ':'), 20),\n",
" ((',', 'borough', 'of', 'manhattan', '.'), 20),\n",
" (('department', 'of', 'housing', 'preservation', 'and'), 20),\n",
" (('intends', 'to', 'renew/extend', 'the', 'contract'), 20),\n",
" (('agency', 'intends', 'to', 'renew/extend', 'the'), 20),\n",
" (('matter', 'of', 'a', 'proposed', 'contract'), 20),\n",
" (('of', 'a', 'proposed', 'contract', 'between'), 20),\n",
" ((',', '150', 'william', 'street', ','), 20),\n",
" ((',', '2014', 'special', 'permit', '('), 20),\n",
" ((':', 'amendment', 'extension', 'new', 'start'), 20),\n",
" (('.', 'a', 'copy', 'of', 'the'), 20),\n",
" (('commencing', 'at', '10:00', 'a.m.', 'on'), 20),\n",
" (('street', ',', 'manhattan', ',', 'ny'), 20),\n",
" (('10:00', 'a.m.', 'on', 'the', 'following'), 20),\n",
" (('a', 'proposed', 'contract', 'between', 'the'), 20),\n",
" (('nan', 'notice', 'is', 'hereby', 'given'), 19),\n",
" (('york', 'city', 'charter', 'for', 'the'), 19),\n",
" (('children', \"'s\", 'services', ',', 'office'), 19),\n",
" (('been', 'selected', 'by', 'means', 'of'), 19),\n",
" ((\"'s\", 'services', ',', 'office', 'of'), 19),\n",
" (('later', 'than', 'seven', '(', '7'), 19),\n",
" (('than', 'seven', '(', '7', ')'), 19),\n",
" ((',', 'borough', 'of', 'brooklyn', '.'), 19),\n",
" (('seven', '(', '7', ')', 'business'), 19),\n",
" (('7', ')', 'business', 'days', 'prior'), 19),\n",
" (('(', 'preliminary', ')', '(', 'cc'), 19),\n",
" (('available', 'for', 'public', 'inspection', 'at'), 19),\n",
" ((',', 'no', 'later', 'than', 'seven'), 19),\n",
" (('no', 'later', 'than', 'seven', '('), 19),\n",
" (('201', 'of', 'the', 'new', 'york'), 19),\n",
" ((',', 'manhattan', ',', 'ny', '10007'), 19),\n",
" ((',', 'long', 'island', 'city', ','), 19),\n",
" (('.', '(', 'preliminary', ')', '('), 19),\n",
" (('.', 'tdd', 'users', 'should', 'call'), 19),\n",
" (('renewal/extension', 'the', 'agency', 'intends', 'to'), 19),\n",
" (('manhattan', ',', 'ny', '10007', ','), 19),\n",
" (('users', 'should', 'call', 'verizon', 'relay'), 19),\n",
" ((',', 'ny', '.', 'site', 'no'), 19),\n",
" (('mayor', \"'s\", 'office', 'of', 'contract'), 19),\n",
" (('for', 'public', 'inspection', 'at', 'the'), 19),\n",
" (('ny', '.', 'site', 'no', '.'), 19),\n",
" (('.', 'application', 'is', 'to', 'construct'), 19),\n",
" (('agency', ':', 'department', 'of', 'parks'), 19),\n",
" (('(', '7', ')', 'business', 'days'), 19),\n",
" (('.', 'application', 'is', 'to', 'replace'), 19),\n",
" (('197-c', 'and', '201', 'of', 'the'), 19),\n",
" (('tdd', 'users', 'should', 'call', 'verizon'), 19),\n",
" (('of', 'the', 'state', 'of', 'new'), 19),\n",
" (('of', 'renewal/extension', 'the', 'agency', 'intends'), 19),\n",
" (('and', '201', 'of', 'the', 'new'), 19),\n",
" (('of', 'services', 'personnel', 'in', 'substantially'), 19),\n",
" (('method', 'of', 'renewal/extension', 'the', 'agency'), 19),\n",
" (('for', 'the', 'city', 'of', 'new'), 18),\n",
" (('sections', '197-c', 'and', '201', 'of'), 18),\n",
" ((\"'s\", 'office', 'of', 'contract', 'services'), 18),\n",
" (('parks', 'and', 'recreation', 'nature', 'of'), 18),\n",
" (('within', 'agency', ':', '0', 'notice'), 18),\n",
" (('brooklyn', 'certificate', 'of', 'appropriateness', 'a'), 18),\n",
" (('office', 'of', 'contract', 'services', ','), 18),\n",
" (('dollars', '(', '$', '2,000,000', ')'), 18),\n",
" (('at', '100', 'church', 'street', ','), 18),\n",
" (('two', 'million', 'dollars', '(', '$'), 18),\n",
" (('contract', 'services', ',', 'public', 'hearings'), 18),\n",
" (('of', 'contract', 'services', ',', 'public'), 18),\n",
" ((':', 'department', 'of', 'parks', 'and'), 18),\n",
" ((',', '(', '212', ')', '788-7490'), 18),\n",
" (('of', 'parks', 'and', 'recreation', 'nature'), 18),\n",
" (('million', 'dollars', '(', '$', '2,000,000'), 18),\n",
" ((',', 'manhattan', '.', '(', 'preliminary'), 18),\n",
" (('to', 'sections', '197-c', 'and', '201'), 18),\n",
" (('.', 'individuals', 'requesting', 'sign', 'language'), 18),\n",
" (('inspection', 'at', 'the', 'new', 'york'), 17),\n",
" (('district', '2', ',', 'manhattan', 'certificate'), 17),\n",
" (('street', ',', '6th', 'floor', ','), 17),\n",
" (('rules', '.', 'a', 'copy', 'of'), 17),\n",
" ((':', 'individuals', 'requesting', 'sign', 'language'), 17),\n",
" (('note', ':', 'individuals', 'requesting', 'sign'), 17),\n",
" ((',', 'for', 'the', 'provision', 'of'), 17),\n",
" (('five', '(', '5', ')', 'business'), 17),\n",
" (('of', 'brooklyn', '.', 'community', 'board'), 17),\n",
" (('city', 'of', 'new', 'york', '('), 17),\n",
" (('city', 'of', 'new', 'york', 'and'), 17),\n",
" (('2', ',', 'manhattan', 'certificate', 'of'), 17),\n",
" (('(', '5', ')', 'business', 'days'), 17),\n",
" (('brooklyn', '.', 'community', 'board', '#'), 17),\n",
" (('york', ',', 'new', 'york', '10007'), 17),\n",
" (('one', 'centre', 'street', ',', 'room'), 17),\n",
" (('the', 'new', 'york', 'city', 'housing'), 17),\n",
" ((',', '42-09', '28th', 'street', ','), 17),\n",
" (('street', ',', '12th', 'floor', ','), 17),\n",
" (('street', 'in', 'the', 'borough', 'of'), 17),\n",
" (('franchise', 'and', 'concession', 'review', 'committee'), 17),\n",
" (('community', 'district', '2', ',', 'manhattan'), 17),\n",
" (('borough', 'of', 'brooklyn', '.', 'community'), 17),\n",
" (('end', 'of', 'each', 'month', '.'), 17),\n",
" (('to', 'continue', 'to', ',', 'maintain'), 16),\n",
" (('of', '(', 'a', ')', 'contract'), 16),\n",
" (('proposed', 'contractor', 'has', 'been', 'selected'), 16),\n",
" (('notice', 'of', 'intent', 'to', 'extend'), 16),\n",
" (('intent', 'to', 'extend', 'contract', '('), 16),\n",
" ((',', 'staten', 'island', ',', 'new'), 16),\n",
" (('entering', 'into', 'the', 'following', 'extension'), 16),\n",
" (('york', ',', 'n.y.', '10007', '.'), 16),\n",
" (('borough', 'of', 'manhattan', '.', 'community'), 16),\n",
" (('the', 'proposed', 'contractor', 'has', 'been'), 16),\n",
" (('extension', '(', 's', ')', 'of'), 16),\n",
" (('to', ',', 'maintain', ',', 'and'), 16),\n",
" (('in', 'equal', 'monthly', 'installments', 'at'), 16),\n",
" (('payable', 'in', 'equal', 'monthly', 'installments'), 16),\n",
" (('following', 'extension', '(', 's', ')'), 16),\n",
" (('street', ',', 'manhattan', '.', '('), 16),\n",
" (('equal', 'monthly', 'installments', 'at', 'the'), 16),\n",
" (('the', 'end', 'of', 'each', 'month'), 16),\n",
" (('(', '3', ')', 'of', 'the'), 16),\n",
" (('will', 'be', 'entering', 'into', 'the'), 16),\n",
" (('york', ',', 'as', 'tenant', ','), 16),\n",
" (('to', 'utilize', ':', 'competitive', 'sealed'), 16),\n",
" ((')', 'of', '(', 'a', ')'), 16),\n",
" ((',', 'lessee', '.', 'subject', 'application'), 16),\n",
" (('the', 'mayor', 'will', 'be', 'entering'), 16),\n",
" (('monthly', 'installments', 'at', 'the', 'end'), 16),\n",
" (('at', 'the', 'end', 'of', 'each'), 16),\n",
" (('(', '5', ')', 'years', ','), 16),\n",
" (('c', ')', '(', '3', ')'), 16),\n",
" ((',', 'no', 'later', 'than', 'five'), 16),\n",
" (('of', 'each', 'month', '.', 'the'), 16),\n",
" (('public', 'hearing', '.', 'tdd', 'users'), 16),\n",
" (('city', 'and', 'state', 'mortgage', 'recording'), 16),\n",
" (('staten', 'island', ',', 'new', 'york'), 16),\n",
" (('hearing', '.', 'tdd', 'users', 'should'), 16),\n",
" (('a', ')', 'contract', '(', 's'), 16),\n",
" (('mayor', 'will', 'be', 'entering', 'into'), 16),\n",
" (('(', 'c', ')', '(', '3'), 16),\n",
" ((')', 'contract', '(', 's', ')'), 16),\n",
" (('manhattan', '.', 'community', 'board', '#'), 16),\n",
" (('into', 'the', 'following', 'extension', '('), 16),\n",
" ((')', '(', '3', ')', 'of'), 16),\n",
" (('of', 'manhattan', '.', 'community', 'board'), 16),\n",
" (('the', 'following', 'extension', '(', 's'), 16),\n",
" (('intends', 'to', 'utilize', ':', 'competitive'), 16),\n",
" (('extend', 'contract', '(', 's', ')'), 16),\n",
" ((',', 'in', 'spector', 'hall', ','), 16),\n",
" (('original', 'principal', 'amount', 'of', '$'), 16),\n",
" (('s', ')', 'of', '(', 'a'), 16),\n",
" (('and', 'state', 'mortgage', 'recording', 'taxes'), 16),\n",
" (('(', 'a', ')', 'contract', '('), 16),\n",
" (('continue', 'to', ',', 'maintain', ','), 16),\n",
" (('(', 's', ')', 'of', '('), 16),\n",
" (('the', 'borough', 'of', 'brooklyn', '('), 16),\n",
" (('recreation', 'nature', 'of', 'services', 'sought'), 16),\n",
" (('church', 'street', ',', '12th', 'floor'), 16),\n",
" (('at', '10:00', 'a.m.', 'in', 'the'), 16),\n",
" (('installments', 'at', 'the', 'end', 'of'), 16),\n",
" (('notice', 'is', 'hereby', 'given', 'of'), 16),\n",
" (('than', 'five', '(', '5', ')'), 16),\n",
" (('100', 'church', 'street', ',', '12th'), 16),\n",
" (('the', 'public', 'hearing', '.', 'tdd'), 16),\n",
" (('(', 'to', 'continue', 'to', ','), 16),\n",
" (('york', ',', 'ny', '10007', '('), 16),\n",
" (('and', 'recreation', 'nature', 'of', 'services'), 16),\n",
" (('.', 'application', 'is', 'to', 'install'), 16),\n",
" (('new', 'york', 'city', 'housing', 'authority'), 16),\n",
" (('new', 'york', ',', 'as', 'tenant'), 16),\n",
" (('to', 'extend', 'contract', '(', 's'), 16),\n",
" (('no', 'later', 'than', 'five', '('), 16),\n",
" (('be', 'entering', 'into', 'the', 'following'), 16),\n",
" (('of', 'intent', 'to', 'extend', 'contract'), 16),\n",
" (('later', 'than', 'five', '(', '5'), 16),\n",
" (('room', '#', '143', ',', 'new'), 15),\n",
" (('here', 'and', 'on', 'nycha', \"'s\"), 15),\n",
" (('for', 'additional', 'information', ',', 'please'), 15),\n",
" (('at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to'),\n",
" 15),\n",
" (('room', ',', 'borough', 'of', 'manhattan'), 15),\n",
" (('on', 'nycha', \"'s\", 'website', 'at'), 15),\n",
" ((',', 'training', 'room', '#', '143'), 15),\n",
" ((',', '33', 'beaver', 'street', ','), 15),\n",
" (('nycha', \"'s\", 'website', 'or', 'contact'), 15),\n",
" (('2nd', 'floor', 'conference', 'room', ','), 15),\n",
" (('within', 'agency', ':', '0', 'nan'), 15),\n",
" (('additional', 'information', ',', 'please', 'visit'), 15),\n",
" (('brooklyn', ',', 'new', 'york', '.'), 15),\n",
" (('schedule', 'will', 'be', 'posted', 'here'), 15),\n",
" ((',', 'as', 'tenant', ',', 'of'), 15),\n",
" (('posted', 'here', 'and', 'on', 'nycha'), 15),\n",
" (('beaver', 'street', ',', '21st', 'floor'), 15),\n",
" (('of', 'a', 'public', 'hearing', ','), 15),\n",
" (('please', 'visit', 'nycha', \"'s\", 'website'), 15),\n",
" (('a', 'reasonable', 'time', 'before', 'the'), 15),\n",
" (('services', ',', 'office', 'of', 'procurement'), 15),\n",
" (('.', 'for', 'additional', 'information', ','), 15),\n",
" (('board', 'of', 'standards', 'and', 'appeals'), 15),\n",
" ((\"'s\", 'website', 'or', 'contact', '('), 15),\n",
" (('meeting', '.', 'for', 'additional', 'information'), 15),\n",
" (('//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable'),\n",
" 15),\n",
" (('a.m.', 'in', 'the', 'board', 'room'), 15),\n",
" (('http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the'),\n",
" 15),\n",
" (('york', 'city', 'charter', ',', 'will'), 15),\n",
" (('on', 'the', '12th', 'floor', 'of'), 15),\n",
" (('10:00', 'a.m.', 'in', 'the', 'board'), 15),\n",
" (('training', 'room', '#', '143', ','), 15),\n",
" (('board', 'room', 'on', 'the', '12th'), 15),\n",
" (('from', 'the', 'date', 'of', 'approval'), 15),\n",
" (('north', ',', 'new', 'york', ','), 15),\n",
" (('on', 'the', 'following', 'matters', ':'), 15),\n",
" (('3-04', '(', 'b', ')', '('), 15),\n",
" (('in', 'the', 'board', 'room', 'on'), 15),\n",
" (('hereby', 'given', 'of', 'a', 'public'), 15),\n",
" (('(', 'unless', 'otherwise', 'noted', ')'), 15),\n",
" (('hearing', ',', 'tuesday', 'morning', ','), 15),\n",
" (('street', ',', 'manhattan', ',', 'new'), 15),\n",
" (('the', 'new', 'york', 'city', 'administration'), 15),\n",
" (('reasonable', 'time', 'before', 'the', 'meeting'), 15),\n",
" (('services', 'start', 'date', 'of', 'the'), 15),\n",
" (('borough', 'of', 'brooklyn', 'community', 'board'), 15),\n",
" (('street', ',', '2nd', 'floor', 'conference'), 15),\n",
" ((',', 'in', 'accordance', 'with', 'section'), 15),\n",
" (('the', 'extent', 'practicable', 'at', 'a'), 15),\n",
" (('unless', 'otherwise', 'noted', ')', '.'), 15),\n",
" (('#', '143', ',', 'new', 'york'), 15),\n",
" (('will', 'be', 'posted', 'here', 'and'), 15),\n",
" (('12th', 'floor', ',', 'training', 'room'), 15),\n",
" (('public', 'hearing', ',', 'tuesday', 'morning'), 15),\n",
" (('given', 'of', 'a', 'public', 'hearing'), 15),\n",
" ((',', '2014', ',', '10:00', 'a.m.'), 15),\n",
" (('information', ',', 'please', 'visit', 'nycha'), 15),\n",
" (('floor', 'of', '250', 'broadway', ','), 15),\n",
" (('should', 'call', 'verizon', 'relay', 'services'), 15),\n",
" (('website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml'),\n",
" 15),\n",
" (('broadway', ',', 'new', 'york', ','), 15),\n",
" (('reade', 'street', ',', '2nd', 'floor'), 15),\n",
" (('street', ',', '21st', 'floor', ','), 15),\n",
" (('website', 'or', 'contact', '(', '212'), 15),\n",
" (('conference', 'room', ',', 'borough', 'of'), 15),\n",
" (('visit', 'nycha', \"'s\", 'website', 'or'), 15),\n",
" (('at', 'a', 'reasonable', 'time', 'before'), 15),\n",
" ((':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent'),\n",
" 15),\n",
" (('foot', 'facility', 'located', 'on', 'a'), 15),\n",
" (('room', 'on', 'the', '12th', 'floor'), 15),\n",
" (('application', 'is', 'to', 'construct', 'a'), 15),\n",
" ((',', 'on', 'the', 'following', 'matters'), 15),\n",
" (('.', 'any', 'changes', 'to', 'the'), 15),\n",
" (('nycha', \"'s\", 'website', 'at', 'http'), 15),\n",
" (('(', 'final', ')', '(', 'cc'), 15),\n",
" (('(', 'b', ')', '(', '2'), 15),\n",
" (('or', 'contact', '(', '212', ')'), 15),\n",
" (('at', 'one', 'centre', 'street', ','), 15),\n",
" (('12th', 'floor', 'of', '250', 'broadway'), 15),\n",
" (('section', '3-04', '(', 'b', ')'), 15),\n",
" (('250', 'broadway', ',', 'new', 'york'), 15),\n",
" ((',', 'bronx', ',', 'new', 'york'), 15),\n",
" (('to', 'the', 'schedule', 'will', 'be'), 15),\n",
" (('and', 'on', 'nycha', \"'s\", 'website'), 15),\n",
" ((',', '2nd', 'floor', 'conference', 'room'), 15),\n",
" (('the', '12th', 'floor', 'of', '250'), 15),\n",
" (('floor', 'conference', 'room', ',', 'borough'), 15),\n",
" (('changes', 'to', 'the', 'schedule', 'will'), 15),\n",
" (('to', 'section', '3-04', '(', 'b'), 15),\n",
" (('square', 'foot', 'facility', 'located', 'on'), 15),\n",
" ((',', 'please', 'visit', 'nycha', \"'s\"), 15),\n",
" (('floor', ',', 'training', 'room', '#'), 15),\n",
" (('pursuant', 'to', 'section', '3-04', '('), 15),\n",
" (('extent', 'practicable', 'at', 'a', 'reasonable'), 15),\n",
" ((':', 'borough', 'of', 'brooklyn', 'community'), 15),\n",
" (('be', 'posted', 'here', 'and', 'on'), 15),\n",
" (('.', '(', 'final', ')', '('), 15),\n",
" (('of', '250', 'broadway', ',', 'new'), 15),\n",
" (('any', 'changes', 'to', 'the', 'schedule'), 15),\n",
" (('b', ')', '(', '2', ')'), 15),\n",
" (('a', 'public', 'hearing', ',', 'tuesday'), 15),\n",
" (('practicable', 'at', 'a', 'reasonable', 'time'), 15),\n",
" (('time', 'before', 'the', 'meeting', '.'), 15),\n",
" (('33', 'beaver', 'street', ',', '21st'), 15),\n",
" (('to', 'the', 'extent', 'practicable', 'at'), 15),\n",
" (('call', 'verizon', 'relay', 'services', '.'), 15),\n",
" (('is', 'hereby', 'given', 'of', 'a'), 15),\n",
" (('143', ',', 'new', 'york', ','), 15),\n",
" (('the', 'board', 'room', 'on', 'the'), 15),\n",
" (('22', 'reade', 'street', ',', '2nd'), 15),\n",
" ((',', '12th', 'floor', ',', 'training'), 15),\n",
" (('board', ':', 'borough', 'of', 'brooklyn'), 15),\n",
" ((\"'s\", 'website', 'at', 'http', ':'), 15),\n",
" (('the', 'schedule', 'will', 'be', 'posted'), 15),\n",
" (('lease', 'may', 'be', 'obtained', 'at'), 14),\n",
" (('agency', ':', '0', 'notice', 'of'), 14),\n",
" ((',', 'n.y.', '10007', ',', '('), 14),\n",
" (('please', 'contact', 'chris', 'fleming', 'at'), 14),\n",
" (('section', '824', 'of', 'the', 'new'), 14),\n",
" (('may', 'be', 'obtained', 'at', 'one'), 14),\n",
" (('the', 'date', 'of', 'approval', 'by'), 14),\n",
" (('project', 'manager', ',', 'associate', 'project'), 14),\n",
" (('an', 'inspection', ',', 'please', 'contact'), 14),\n",
" (('further', 'information', ',', 'including', 'public'), 14),\n",
" (('fleming', 'at', '(', '212', ')'), 14),\n",
" (('contact', 'chris', 'fleming', 'at', '('), 14),\n",
" (('center', ',', '42-09', '28th', 'street'), 14),\n",
" (('in', 'accordance', 'with', 'section', '824'), 14),\n",
" (('a.m.', ',', '22', 'reade', 'street'), 14),\n",
" (('agency', ':', 'department', 'of', 'design'), 14),\n",
" (('policy', 'board', 'rules', '.', 'a'), 14),\n",
" (('new', 'york', 'city', 'administration', 'for'), 14),\n",
" ((',', 'new', 'york', 'having', 'an'), 14),\n",
" (('be', 'obtained', 'at', 'one', 'centre'), 14),\n",
" (('date', 'of', 'approval', 'by', 'the'), 14),\n",
" (('10007', '.', 'to', 'schedule', 'an'), 14),\n",
" (('agency', ':', 'ddc', 'description', 'of'), 14),\n",
" (('dispositions', 'public', 'hearing', ',', 'in'), 14),\n",
" (('as', 'tenant', ',', 'of', 'approximately'), 14),\n",
" (('manager', ',', 'associate', 'project', 'manager'), 14),\n",
" ((',', 'n.y.', '10007', '.', 'to'), 14),\n",
" ((':', '0', 'agency', ':', 'ddc'), 14),\n",
" (('street', ',', '2nd', 'floor', ','), 14),\n",
" (('n.y.', '10007', ',', 'on', 'the'), 14),\n",
" (('construction', 'description', 'of', 'services', 'sought'), 14),\n",
" (('public', 'hearing', ',', 'in', 'accordance'), 14),\n",
" (('schedule', 'an', 'inspection', ',', 'please'), 14),\n",
" (('department', 'of', 'citywide', 'administrative', 'services'), 14),\n",
" (('.', 'notice', 'is', 'hereby', 'given'), 14),\n",
" (('island', ',', 'new', 'york', 'having'), 14),\n",
" (('n.y.', '10007', '.', 'to', 'schedule'), 14),\n",
" (('to', 'schedule', 'an', 'inspection', ','), 14),\n",
" (('proposed', 'lease', 'may', 'be', 'obtained'), 14),\n",
" (('city', 'charter', ',', 'will', 'be'), 14),\n",
" (('borough', 'of', 'brooklyn', '(', 'to'), 14),\n",
" (('acquisitions', 'and', 'dispositions', 'public', 'hearing'), 14),\n",
" (('at', '(', '212', ')', '386-0315'), 14),\n",
" (('agency', ':', 'department', 'of', 'environmental'), 14),\n",
" (('information', ',', 'including', 'public', 'inspection'), 14),\n",
" (('.', 'further', 'information', ',', 'including'), 14),\n",
" (('.', 'the', 'contract', 'term', 'shall'), 14),\n",
" (('state', 'mortgage', 'recording', 'taxes', '.'), 14),\n",
" ((',', 'will', 'be', 'held', 'on'), 14),\n",
" (('inspection', ',', 'please', 'contact', 'chris'), 14),\n",
" (('broadway', ',', '2nd', 'floor', ','), 14),\n",
" ((',', 'ny', '10007', ',', 'at'), 14),\n",
" (('york', 'city', 'administration', 'for', 'children'), 14),\n",
" ((')', '(', '2', ')', '('), 14),\n",
" (('the', 'proposed', 'lease', 'may', 'be'), 14),\n",
" (('2000', 'north', ',', 'new', 'york'), 14),\n",
" (('york', ',', 'ny', '10007', '.'), 14),\n",
" (('room', '2000', 'north', ',', 'new'), 14),\n",
" (('a', 'real', 'property', 'acquisitions', 'and'), 14),\n",
" (('city', 'administration', 'for', 'children', \"'s\"), 14),\n",
" (('hearing', ',', 'in', 'accordance', 'with'), 14),\n",
" ((',', '253', 'broadway', ',', '2nd'), 14),\n",
" (('824', 'of', 'the', 'new', 'york'), 14),\n",
" (('.', 'to', 'schedule', 'an', 'inspection'), 14),\n",
" (('386-0315', '.', 'individuals', 'requesting', 'sign'), 14),\n",
" ((',', '2014', 'at', '10:00', 'a.m.'), 14),\n",
" (('real', 'property', 'acquisitions', 'and', 'dispositions'), 14),\n",
" (('with', 'section', '824', 'of', 'the'), 14),\n",
" (('253', 'broadway', ',', '2nd', 'floor'), 14),\n",
" (('inspection', 'of', 'the', 'proposed', 'lease'), 14),\n",
" (('method', ',', 'pursuant', 'to', 'section'), 14),\n",
" (('department', 'of', 'design', 'and', 'construction'), 14),\n",
" (('n.y.', '10007', ',', '(', '212'), 14),\n",
" (('including', 'public', 'inspection', 'of', 'the'), 14),\n",
" ((',', 'please', 'contact', 'chris', 'fleming'), 14),\n",
" (('of', 'approval', 'by', 'the', 'mayor'), 14),\n",
" (('having', 'an', 'approximate', 'original', 'principal'), 14),\n",
" (('chris', 'fleming', 'at', '(', '212'), 14),\n",
" ((',', 'pursuant', 'to', 'section', '3-04'), 14),\n",
" (('obtained', 'at', 'one', 'centre', 'street'), 14),\n",
" (('street', ',', 'room', '2000', 'north'), 14),\n",
" ((':', 'department', 'of', 'environmental', 'protection'), 14),\n",
" ((',', '9th', 'floor', 'north', ','), 14),\n",
" (('212', ')', '386-0315', '.', 'individuals'), 14),\n",
" (('ddc', 'description', 'of', 'services', 'sought'), 14),\n",
" (('given', 'that', 'a', 'real', 'property'), 14),\n",
" ((')', '386-0315', '.', 'individuals', 'requesting'), 14),\n",
" ((',', 'flushing', ',', 'new', 'york'), 14),\n",
" (('property', 'acquisitions', 'and', 'dispositions', 'public'), 14),\n",
" (('public', 'inspection', 'of', 'the', 'proposed'), 14),\n",
" (('10007', ',', 'on', 'the', 'following'), 14),\n",
" ((',', 'n.y.', '10007', ',', 'on'), 14),\n",
" (('hereby', 'given', 'that', 'a', 'real'), 14),\n",
" ((',', 'including', 'public', 'inspection', 'of'), 14),\n",
" (('and', 'dispositions', 'public', 'hearing', ','), 14),\n",
" (('gotham', 'center', ',', '42-09', '28th'), 14),\n",
" (('new', 'york', 'having', 'an', 'approximate'), 14),\n",
" (('of', 'the', 'proposed', 'lease', 'may'), 14),\n",
" (('building', ',', 'manhattan', ',', 'ny'), 14),\n",
" (('charter', ',', 'will', 'be', 'held'), 14),\n",
" (('(', '212', ')', '386-0315', '.'), 14),\n",
" (('the', 'department', 'of', 'citywide', 'administrative'), 14),\n",
" (('city', 'hall', ',', 'third', 'floor'), 14),\n",
" (('that', 'a', 'real', 'property', 'acquisitions'), 14),\n",
" (('york', 'having', 'an', 'approximate', 'original'), 14),\n",
" ((':', 'ddc', 'description', 'of', 'services'), 14),\n",
" (('at', 'gotham', 'center', ',', '42-09'), 14),\n",
" ((',', 'room', '2000', 'north', ','), 14),\n",
" (('accordance', 'with', 'section', '824', 'of'), 14),\n",
" ((',', 'llc', 'for', 'a', 'site'), 14),\n",
" (('centre', 'street', ',', 'room', '2000'), 14),\n",
" (('be', 'terminated', 'by', 'the', 'tenant'), 13),\n",
" (('state', 'of', 'new', 'york', ','), 13),\n",
" (('public', 'hearing', 'notice', 'is', 'hereby'), 13),\n",
" (('children', \"'s\", 'services', 'of', 'the'), 13),\n",
" (('exempt', 'from', 'federal', 'taxation', 'pursuant'), 13),\n",
" (('contact', '(', '212', ')', '306-6088'), 13),\n",
" (('special', 'permit', '(', '73-36', ')'), 13),\n",
" (('pursuant', 'to', 'section', '501', '('), 13),\n",
" (('contractor', 'has', 'been', 'selected', 'by'), 13),\n",
" (('board', 'rules', '.', 'a', 'copy'), 13),\n",
" (('held', 'at', 'the', 'administration', 'for'), 13),\n",
" (('llc', 'pursuant', 'to', 'sections', '197-c'), 13),\n",
" (('services', 'of', 'the', 'city', 'of'), 13),\n",
" (('to', 'section', '501', '(', 'c'), 13),\n",
" (('method', 'of', 'original', 'contract', ':'), 13),\n",
" (('york', 'city', 'economic', 'development', 'corporation'), 13),\n",
" (('in', 'the', 'matter', 'of', 'the'), 13),\n",
" ((',', 'ny', '10007', 'at', '9:15'), 13),\n",
" (('section', '501', '(', 'c', ')'), 13),\n",
" (('approximate', 'original', 'principal', 'amount', 'of'), 13),\n",
" (('at', 'the', 'administration', 'for', 'children'), 13),\n",
" (('.', 'hourly', 'wage', 'average', 'and'), 13),\n",
" (('may', 'be', 'terminated', 'by', 'the'), 13),\n",
" (('(', '212', ')', '306-6088', '.'), 13),\n",
" (('an', 'application', 'submitted', 'by', 'the'), 13),\n",
" (('date', 'of', 'original', 'contract', ':'), 13),\n",
" ((\"'s\", 'services', 'of', 'the', 'city'), 13),\n",
" (('of', 'design', 'and', 'construction', 'description'), 13),\n",
" (('between', 'the', 'administration', 'for', 'children'), 13),\n",
" (('contract', 'is', 'available', 'for', 'public'), 13),\n",
" (('may', 'determine', '.', 'the', 'proposed'), 13),\n",
" (('from', 'federal', 'taxation', 'pursuant', 'to'), 13),\n",
" (('and', 'construction', 'description', 'of', 'services'), 13),\n",
" (('for', 'children', \"'s\", 'services', 'of'), 13),\n",
" (('new', 'york', ',', 'ny', '10038'), 13),\n",
" (('taxation', 'pursuant', 'to', 'section', '501'), 13),\n",
" (('hourly', 'wage', 'average', 'and', 'range'), 13),\n",
" (('of', 'the', 'general', 'municipal', 'law'), 13),\n",
" (('new', 'york', 'city', 'economic', 'development'), 13),\n",
" (('be', 'held', 'at', 'the', 'administration'), 13),\n",
" (('the', 'contract', 'term', 'shall', 'be'), 13),\n",
" (('is', 'available', 'for', 'public', 'inspection'), 13),\n",
" (('wage', 'average', 'and', 'range', ':'), 13),\n",
" (('end', 'date', 'of', 'original', 'contract'), 13),\n",
" (('york', ',', 'ny', '10007', 'at'), 13),\n",
" ((',', 'associate', 'project', 'manager', ','), 13),\n",
" (('selected', 'by', 'means', 'of', 'the'), 13),\n",
" (('corporation', 'exempt', 'from', 'federal', 'taxation'), 13),\n",
" (('501', '(', 'c', ')', '('), 13),\n",
" (('in', 'the', 'borough', 'of', 'queens'), 13),\n",
" ((':', 'department', 'of', 'design', 'and'), 13),\n",
" (('hearing', 'notice', 'is', 'hereby', 'given'), 13),\n",
" (('ny', '10007', 'at', '9:15', 'a.m.'), 13),\n",
" (('design', 'and', 'construction', 'description', 'of'), 13),\n",
" (('federal', 'taxation', 'pursuant', 'to', 'section'), 13),\n",
" (('an', 'approximate', 'original', 'principal', 'amount'), 13),\n",
" (('10:00', 'a.m.', 'on', 'the', 'second'), 12),\n",
" (('commission', 'meets', 'at', 'its', 'office'), 12),\n",
" (('of', 'public', 'hearing', 'notice', 'is'), 12),\n",
" (('as', 'needed', 'in', 'room', '2203'), 12),\n",
" (('manhattan', ',', 'weekly', ',', 'on'), 12),\n",
" (('the', 'first', 'tuesday', 'of', 'july'), 12),\n",
" (('bi-weekly', ',', 'on', 'wednesdays', ','), 12),\n",
" (('at', '10:00', 'a.m.', ',', '22'), 12),\n",
" ((')', 'at', '10:00', 'a.m.', 'in'), 12),\n",
" (('three', 'tuesday', \"'s\", 'each', 'month'), 12),\n",
" (('40', 'rector', 'street', ',', '6th'), 12),\n",
" (('the', 'chairman', '.', 'housing', 'authority'), 12),\n",
" (('p.m', '.', 'the', 'annual', 'meeting'), 12),\n",
" (('of', 'the', 'president', '.', 'manhattan'), 12),\n",
" (('tuesday', \"'s\", 'each', 'month', ','), 12),\n",
" (('accommodation', 'in', 'order', 'to', 'participate'), 12),\n",
" (('hearings', 'as', 'needed', 'in', 'room'), 12),\n",
" (('of', 'the', 'administrative', 'code', 'of'), 12),\n",
" (('936', ',', 'municipal', 'building', ','), 12),\n",
" (('floor', ',', 'manhattan', ',', 'bi-weekly'), 12),\n",
" (('warranted', '.', 'landmarks', 'preservation', 'commission'), 12),\n",
" (('december', '.', 'annual', 'meeting', 'held'), 12),\n",
" (('municipal', 'building', ',', '9th', 'floor'), 12),\n",
" (('human', 'rights', 'meets', 'on', '10th'), 12),\n",
" (('preceding', 'a', 'tuesday', 'public', 'hearing'), 12),\n",
" (('otherwise', 'ordered', 'by', 'the', 'commission'), 12),\n",
" (('floor', 'north', ',', '1', 'centre'), 12),\n",
" (('control', 'board', 'meets', 'at', '100'), 12),\n",
" (('between', 'the', 'hours', 'of', '10'), 12),\n",
" (('on', '10th', 'floor', 'in', 'the'), 12),\n",
" (('hearing', 'room', ',', 'municipal', 'building'), 12),\n",
" (('january', ',', 'february', ',', 'march'), 12),\n",
" ((',', 'ny', '10007', ',', 'twice'), 12),\n",
" (('10', 'am', 'and', '4', 'pm'), 12),\n",
" (('1:30', 'p.m.', 'and', 'at', 'the'), 12),\n",
" (('meets', 'at', '100', 'church', 'street'), 12),\n",
" ((',', 'on', 'fourth', 'monday', 'in'), 12),\n",
" (('as', 'warranted', '.', 'landmarks', 'preservation'), 12),\n",
" (('wednesday', 'of', 'each', 'month', '('), 12),\n",
" (('is', 'held', 'on', 'the', 'first'), 12),\n",
" (('board', 'generally', 'meets', 'at', '10:00'), 12),\n",
" (('tuesday', 'public', 'hearing', 'in', 'the'), 12),\n",
" ((')', 'in', 'the', 'borough', 'of'), 12),\n",
" (('as', 'warranted', '.', 'civilian', 'complaint'), 12),\n",
" (('.', 'manhattan', ',', 'monthly', 'on'), 12),\n",
" (('avenue', 'in', 'the', 'borough', 'of'), 12),\n",
" ((\"'s\", 'central', 'office', ',', '40'), 12),\n",
" (('customarily', 'held', 'on', 'mondays', 'preceding'), 12),\n",
" (('to', 'june', '30', ',', '2025'), 12),\n",
" (('lease', 'for', 'the', 'city', 'of'), 12),\n",
" (('10:00', 'a.m.', ',', 'unless', 'otherwise'), 12),\n",
" (('north', ',', '1', 'centre', 'street'), 12),\n",
" (('in', 'rem', 'foreclosure', 'release', 'board'), 12),\n",
" (('the', 'hall', 'of', 'the', 'board'), 12),\n",
" ((',', '335', 'adams', 'street', ','), 12),\n",
" (('meets', 'in', 'room', '936', ','), 12),\n",
" (('the', 'hours', 'of', '10', 'am'), 12),\n",
" (('10007', '(', 'unless', 'otherwise', 'noted'), 12),\n",
" (('october', ',', 'november', 'and', 'december'), 12),\n",
" (('floor', ',', 'and', 'other', 'days'), 12),\n",
" (('.', 'design', 'commission', 'meets', 'at'), 12),\n",
" (('application', 'desk', 'at', '(', '212'), 12),\n",
" (('ny', '10006', ',', 'on', 'the'), 12),\n",
" (('the', 'commission', '.', 'for', 'current'), 12),\n",
" (('10007', 'at', '9:15', 'a.m.', 'once'), 12),\n",
" (('meets', 'at', '40', 'rector', 'street'), 12),\n",
" (('office', ',', '40', 'rector', 'street'), 12),\n",
" (('2014', 'special', 'permit', '(', '73-36'), 12),\n",
" (('april', ',', 'june', ',', 'september'), 12),\n",
" (('.', 'board', 'of', 'standards', 'and'), 12),\n",
" (('standards', 'and', 'appeals', 'meets', 'at'), 12),\n",
" (('new', 'york', ',', 'n.y.', '10004'), 12),\n",
" (('on', 'the', '9th', 'floor', 'of'), 12),\n",
" ((',', 'monthly', 'on', 'wednesdays', ','), 12),\n",
" (('proposed', 'contract', 'between', 'the', 'department'), 12),\n",
" (('wednesday', 'of', 'each', 'month', 'at'), 12),\n",
" (('in', 'the', 'hearing', 'room', ','), 12),\n",
" (('floor', ',', '335', 'adams', 'street'), 12),\n",
" (('in', 'room', '603', ',', 'municipal'), 12),\n",
" ((',', '7th', 'floor', ',', 'new'), 12),\n",
" (('matter', 'of', 'a', 'proposed', 'revocable'), 12),\n",
" (('borough', 'of', 'manhattan', ',', 'in'), 12),\n",
" (('wednesdays', ',', 'commencing', '10:00', 'a.m.'), 12),\n",
" (('in', 'the', 'schedule', ',', 'or'), 12),\n",
" ((',', 'june', ',', 'september', ','), 12),\n",
" (('on', 'the', 'third', 'thursday', 'of'), 12),\n",
" (('or', 'consult', 'the', 'bulletin', 'board'), 12),\n",
" (('1:30', 'p.m.', 'contract', 'awards', 'public'), 12),\n",
" (('commissioner', '.', 'environmental', 'control', 'board'), 12),\n",
" (('method', 'of', 'extension', 'the', 'agency'), 12),\n",
" (('meeting', 'dates', ',', 'times', 'and'), 12),\n",
" (('schedule', ',', 'please', 'visit', 'nyc.gov/designcommission'), 12),\n",
" ((',', 'n.y.', '11101', ',', 'at'), 12),\n",
" (('.', 'headcount', 'of', 'personnel', 'in'), 12),\n",
" ((',', 'on', 'the', 'fourth', 'wednesday'), 12),\n",
" (('month', 'at', '40', 'rector', 'street'), 12),\n",
" (('higher', 'education', 'meets', 'at', '535'), 12),\n",
" (('review', 'sessions', 'begin', 'at', '9:30'), 12),\n",
" (('intends', 'to', 'utilize', ':', 'request'), 12),\n",
" (('a.m.', 'and', 'are', 'customarily', 'held'), 12),\n",
" ((',', 'hearing', 'room', '``', 'e'), 12),\n",
" (('third', 'floor', ',', 'new', 'york'), 12),\n",
" (('of', 'manhattan', ',', 'in', 'the'), 12),\n",
" (('meets', 'at', '10:00', 'a.m.', 'on'), 12),\n",
" (('//www.nyc.gov/html/ccrb/html/meeting.html',\n",
" 'for',\n",
" 'additional',\n",
" 'information',\n",
" 'and'),\n",
" 12),\n",
" (('weekly', ',', 'on', 'thursday', ','), 12),\n",
" (('information', ',', 'please', 'call', 'the'), 12),\n",
" (('location', 'as', 'warranted', '.', 'real'), 12),\n",
" (('the', 'fourth', 'wednesday', 'of', 'each'), 12),\n",
" (('rector', 'street', ',', 'new', 'york'), 12),\n",
" (('nyc.gov/designcommission', 'or', 'call', '212-788-3071', '.'), 12),\n",
" (('for', 'meeting', 'schedule', ',', 'please'), 12),\n",
" (('on', 'tuesdays', 'at', '10:00', 'a.m.'), 12),\n",
" (('at', 'www.nyc.gov/landmarks', '.', 'employees', \"'\"), 12),\n",
" (('board', 'of', 'higher', 'education', 'meets'), 12),\n",
" (('e', \"''\", 'on', 'tuesdays', 'at'), 12),\n",
" (('system', 'meets', 'in', 'the', 'boardroom'), 12),\n",
" (('avenue', ',', 'staten', 'island', ','), 12),\n",
" (('each', 'month', 'at', 'the', 'call'), 12),\n",
" (('noticed', 'by', 'the', 'commission', '.'), 12),\n",
" ((',', 'march', ',', 'april', ','), 12),\n",
" (('meets', 'on', '10th', 'floor', 'in'), 12),\n",
" (('on', 'wednesdays', ',', 'commencing', '10:00'), 12),\n",
" ((',', 'april', ',', 'june', ','), 12),\n",
" (('6th', 'floor', ',', 'hearing', 'room'), 12),\n",
" (('for', 'a', 'monthly', 'business', 'meeting'), 12),\n",
" (('employees', \"'\", 'retirement', 'system', 'meets'), 12),\n",
" (('as', 'warranted', '.', 'real', 'property'), 12),\n",
" (('city', 'hall', ',', 'manhattan', ','), 12),\n",
" (('rector', 'street', ',', '2nd', 'floor'), 12),\n",
" (('each', 'month', ',', 'commencing', 'at'), 12),\n",
" (('business', 'meeting', 'on', 'the', 'third'), 12),\n",
" (('at', '10:00', 'a.m.', ',', 'quarterly'), 12),\n",
" ((',', 'each', 'month', 'at', 'the'), 12),\n",
" (('10th', 'floor', 'in', 'the', 'commission'), 12),\n",
" (('6:00', 'p.m', '.', 'the', 'annual'), 12),\n",
" ((',', 'payable', 'in', 'equal', 'monthly'), 12),\n",
" ((',', 'ny', '10007', '.', 'for'), 12),\n",
" (('month', 'in', 'councilman', \"'s\", 'chamber'), 12),\n",
" (('a.m.', 'once', 'a', 'month', 'at'), 12),\n",
" (('10004', '.', 'commission', 'on', 'human'), 12),\n",
" (('the', 'last', 'wednesday', 'of', 'each'), 12),\n",
" (('administrative', 'services', 'division', 'of', 'citywide'), 12),\n",
" (('except', 'august', ')', 'at', '10:00'), 12),\n",
" (('street', ',', 'in', 'the', 'borough'), 12),\n",
" (('and', '4', 'pm', '.', 'please'), 12),\n",
" (('the', '9th', 'floor', 'of', '40'), 12),\n",
" (('of', 'a', 'proposed', 'revocable', 'consent'), 12),\n",
" (('in', 'the', 'hall', 'of', 'the'), 12),\n",
" ((',', 'october', ',', 'november', 'and'), 12),\n",
" ((',', 'at', '1:30', 'p.m.', 'contract'), 12),\n",
" (('schedule', ',', 'or', 'additonal', 'information'), 12),\n",
" (('education', 'meets', 'at', '535', 'east'), 12),\n",
" (('.', 'citywide', 'administrative', 'services', 'division'), 12),\n",
" ((',', 'twice', 'monthly', 'on', 'wednesday'), 12),\n",
" (('fourth', 'monday', 'in', 'january', ','), 12),\n",
" (('environmental', 'control', 'board', 'meets', 'at'), 12),\n",
" (('of', 'citywide', 'administrative', 'services', 'may'), 12),\n",
" (('of', 'each', 'month', 'at', '40'), 12),\n",
" (('10:00', 'a.m.', ',', 'quarterly', 'or'), 12),\n",
" (('location', 'as', 'warranted', '.', 'franchise'), 12),\n",
" (('at', '10:30', 'a.m.', 'board', 'of'), 12),\n",
" (('awards', 'public', 'hearing', 'meets', 'in'), 12),\n",
" (('preservation', 'commission', 'meets', 'in', 'the'), 12),\n",
" (('scheduled', 'for', 'the', 'last', 'wednesday'), 12),\n",
" (('current', 'meeting', 'dates', ',', 'times'), 12),\n",
" ((',', 'at', '5:30', 'p.m.', ','), 12),\n",
" ((',', 'times', 'and', 'agendas', ','), 12),\n",
" (('september', ',', 'october', ',', 'november'), 12),\n",
" (('of', '40', 'rector', 'street', '.'), 12),\n",
" (('new', 'york', ',', 'ny', '10041'), 12),\n",
" (('for', 'current', 'meeting', 'dates', ','), 12),\n",
" (('ny', '10006', '.', 'visit', 'http'), 12),\n",
" ((',', 'on', 'wednesdays', ',', 'commencing'), 12),\n",
" (('twice', 'a', 'month', 'in', 'councilman'), 12),\n",
" (('and', 'disposition', 'meets', 'in', 'spector'), 12),\n",
" (('on', 'tuesdays', ',', 'commencing', '10:00'), 12),\n",
" (('as', 'warranted', '.', 'franchise', 'and'), 12),\n",
" (('by', 'the', 'commission', '.', 'for'), 12),\n",
" (('revision', 'of', 'awards', 'meets', 'in'), 12),\n",
" ((\"''\", 'on', 'tuesdays', 'at', '10:00'), 12),\n",
" (('on', 'thursday', ',', 'commencing', '10:00'), 12),\n",
" (('board', 'meets', 'in', 'spector', 'hall'), 12),\n",
" (('the', 'commission', \"'s\", 'central', 'office'), 12),\n",
" (('month', 'at', '6:00', 'p.m', '.'), 12),\n",
" (('extension', 'the', 'agency', 'intends', 'to'), 12),\n",
" (('health', 'insurance', 'board', 'meets', 'in'), 12),\n",
" (('.', 'board', 'of', 'higher', 'education'), 12),\n",
" (('compensation', 'payable', 'to', 'the', 'city'), 12),\n",
" (('at', 'an', 'annual', 'rent', 'of'), 12),\n",
" (('on', 'tuesday', ',', 'at', '1:30'), 12),\n",
" ((',', 'please', 'visit', 'nyc.gov/designcommission', 'or'), 12),\n",
" (('design', 'commission', 'meets', 'at', 'city'), 12),\n",
" (('terms', 'and', 'conditions', 'for', 'compensation'), 12),\n",
" (('city', ',', 'n.y.', '11101', ','), 12),\n",
" (('otherwise', 'noted', ')', '.', 'any'), 12),\n",
" ...]"
]
}
],
"prompt_number": 34
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#We can keep going!\n",
"corpus10grams = list(ngrams(lowerTokens,10))\n",
"corpus10gramFreqs = nltk.FreqDist(corpus10grams)\n",
"corpus10gramFreqs.most_common()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 35,
"text": [
"[(('--', '--', '--', '--', '--', '--', '--', '--', '--', '--'), 162),\n",
" (('headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':'),\n",
" 129),\n",
" (('maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed',\n",
" 'sidewalk',\n",
" 'caf',\n",
" 'for',\n",
" 'a'),\n",
" 112),\n",
" ((',',\n",
" 'and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed',\n",
" 'sidewalk',\n",
" 'caf',\n",
" 'for',\n",
" 'a',\n",
" 'term'),\n",
" 112),\n",
" (('and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed',\n",
" 'sidewalk',\n",
" 'caf',\n",
" 'for',\n",
" 'a',\n",
" 'term',\n",
" 'of'),\n",
" 112),\n",
" (('sidewalk', 'caf', 'for', 'a', 'term', 'of', 'four', 'years', '.', ')'),\n",
" 101),\n",
" (('unenclosed',\n",
" 'sidewalk',\n",
" 'caf',\n",
" 'for',\n",
" 'a',\n",
" 'term',\n",
" 'of',\n",
" 'four',\n",
" 'years',\n",
" '.'),\n",
" 100),\n",
" (('operate',\n",
" 'an',\n",
" 'unenclosed',\n",
" 'sidewalk',\n",
" 'caf',\n",
" 'for',\n",
" 'a',\n",
" 'term',\n",
" 'of',\n",
" 'four'),\n",
" 94),\n",
" (('an',\n",
" 'unenclosed',\n",
" 'sidewalk',\n",
" 'caf',\n",
" 'for',\n",
" 'a',\n",
" 'term',\n",
" 'of',\n",
" 'four',\n",
" 'years'),\n",
" 94),\n",
" (('agency',\n",
" ':',\n",
" 'none',\n",
" 'headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles'),\n",
" 92),\n",
" (('in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" 'none',\n",
" 'headcount',\n",
" 'of'),\n",
" 91),\n",
" (('substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" 'none',\n",
" 'headcount',\n",
" 'of',\n",
" 'personnel'),\n",
" 91),\n",
" (('titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" 'none',\n",
" 'headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially'),\n",
" 91),\n",
" (('within',\n",
" 'agency',\n",
" ':',\n",
" 'none',\n",
" 'headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar'),\n",
" 91),\n",
" (('personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" 'none',\n",
" 'headcount'),\n",
" 91),\n",
" (('similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" 'none',\n",
" 'headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in'),\n",
" 91),\n",
" (('to',\n",
" 'maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed',\n",
" 'sidewalk',\n",
" 'caf',\n",
" 'for'),\n",
" 91),\n",
" ((':',\n",
" 'none',\n",
" 'headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within'),\n",
" 89),\n",
" (('none',\n",
" 'headcount',\n",
" 'of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency'),\n",
" 85),\n",
" (('of',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0'),\n",
" 83),\n",
" (('continue',\n",
" 'to',\n",
" 'maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed',\n",
" 'sidewalk',\n",
" 'caf'),\n",
" 82),\n",
" (('(',\n",
" 'to',\n",
" 'continue',\n",
" 'to',\n",
" 'maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed'),\n",
" 79),\n",
" (('to',\n",
" 'continue',\n",
" 'to',\n",
" 'maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed',\n",
" 'sidewalk'),\n",
" 79),\n",
" (('the',\n",
" 'borough',\n",
" 'of',\n",
" 'manhattan',\n",
" '(',\n",
" 'to',\n",
" 'continue',\n",
" 'to',\n",
" 'maintain',\n",
" ','),\n",
" 74),\n",
" (('manhattan',\n",
" '(',\n",
" 'to',\n",
" 'continue',\n",
" 'to',\n",
" 'maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate',\n",
" 'an'),\n",
" 74),\n",
" (('in',\n",
" 'the',\n",
" 'borough',\n",
" 'of',\n",
" 'manhattan',\n",
" '(',\n",
" 'to',\n",
" 'continue',\n",
" 'to',\n",
" 'maintain'),\n",
" 74),\n",
" (('borough',\n",
" 'of',\n",
" 'manhattan',\n",
" '(',\n",
" 'to',\n",
" 'continue',\n",
" 'to',\n",
" 'maintain',\n",
" ',',\n",
" 'and'),\n",
" 74),\n",
" (('of',\n",
" 'manhattan',\n",
" '(',\n",
" 'to',\n",
" 'continue',\n",
" 'to',\n",
" 'maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate'),\n",
" 74),\n",
" (('published',\n",
" 'pursuant',\n",
" 'to',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'charter',\n",
" '312',\n",
" '(',\n",
" 'a'),\n",
" 63),\n",
" (('new', 'york', 'city', 'charter', '312', '(', 'a', ')', ':', 'agency'), 63),\n",
" (('annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'that',\n",
" 'is',\n",
" 'published',\n",
" 'pursuant',\n",
" 'to'),\n",
" 63),\n",
" (('is',\n",
" 'published',\n",
" 'pursuant',\n",
" 'to',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'charter',\n",
" '312',\n",
" '('),\n",
" 63),\n",
" (('contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the'),\n",
" 63),\n",
" (('schedule',\n",
" 'notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be'),\n",
" 63),\n",
" (('and',\n",
" 'schedule',\n",
" 'that',\n",
" 'is',\n",
" 'published',\n",
" 'pursuant',\n",
" 'to',\n",
" 'new',\n",
" 'york',\n",
" 'city'),\n",
" 63),\n",
" (('plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'that',\n",
" 'is',\n",
" 'published',\n",
" 'pursuant',\n",
" 'to',\n",
" 'new',\n",
" 'york'),\n",
" 63),\n",
" (('york', 'city', 'charter', '312', '(', 'a', ')', ':', 'agency', ':'), 63),\n",
" (('pursuant', 'to', 'new', 'york', 'city', 'charter', '312', '(', 'a', ')'),\n",
" 63),\n",
" (('to', 'new', 'york', 'city', 'charter', '312', '(', 'a', ')', ':'), 63),\n",
" (('schedule',\n",
" 'that',\n",
" 'is',\n",
" 'published',\n",
" 'pursuant',\n",
" 'to',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'charter'),\n",
" 63),\n",
" (('that',\n",
" 'is',\n",
" 'published',\n",
" 'pursuant',\n",
" 'to',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'charter',\n",
" '312'),\n",
" 63),\n",
" (('annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that'),\n",
" 63),\n",
" (('and',\n",
" 'schedule',\n",
" 'notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'mayor',\n",
" 'will'),\n",
" 63),\n",
" (('plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'mayor'),\n",
" 63),\n",
" (('contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'that',\n",
" 'is',\n",
" 'published',\n",
" 'pursuant',\n",
" 'to',\n",
" 'new'),\n",
" 63),\n",
" (('included',\n",
" 'in',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'notice'),\n",
" 62),\n",
" (('fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'that',\n",
" 'is',\n",
" 'published'),\n",
" 62),\n",
" (('in',\n",
" 'the',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'that'),\n",
" 62),\n",
" (('in',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'notice',\n",
" 'is'),\n",
" 62),\n",
" (('2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'that',\n",
" 'is',\n",
" 'published',\n",
" 'pursuant'),\n",
" 62),\n",
" ((')',\n",
" 'not',\n",
" 'included',\n",
" 'in',\n",
" 'the',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan'),\n",
" 62),\n",
" (('fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'notice',\n",
" 'is',\n",
" 'hereby'),\n",
" 62),\n",
" (('s',\n",
" ')',\n",
" 'not',\n",
" 'included',\n",
" 'in',\n",
" 'the',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting'),\n",
" 62),\n",
" (('included',\n",
" 'in',\n",
" 'the',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule'),\n",
" 62),\n",
" ((')',\n",
" 'not',\n",
" 'included',\n",
" 'in',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and'),\n",
" 62),\n",
" (('2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given'),\n",
" 62),\n",
" (('not',\n",
" 'included',\n",
" 'in',\n",
" 'the',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and'),\n",
" 62),\n",
" (('(', 's', ')', 'not', 'included', 'in', 'the', 'fy', '2015', 'annual'), 62),\n",
" (('the',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule',\n",
" 'that',\n",
" 'is'),\n",
" 62),\n",
" (('(',\n",
" 's',\n",
" ')',\n",
" 'not',\n",
" 'included',\n",
" 'in',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting'),\n",
" 62),\n",
" (('s',\n",
" ')',\n",
" 'not',\n",
" 'included',\n",
" 'in',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan'),\n",
" 62),\n",
" (('not',\n",
" 'included',\n",
" 'in',\n",
" 'fy',\n",
" '2015',\n",
" 'annual',\n",
" 'contracting',\n",
" 'plan',\n",
" 'and',\n",
" 'schedule'),\n",
" 62),\n",
" (('in',\n",
" 'spector',\n",
" 'hall',\n",
" ',',\n",
" '22',\n",
" 'reade',\n",
" 'street',\n",
" ',',\n",
" 'main',\n",
" 'floor'),\n",
" 50),\n",
" (('spector', 'hall', ',', '22', 'reade', 'street', ',', 'main', 'floor', ','),\n",
" 50),\n",
" ((')',\n",
" 'has',\n",
" 'received',\n",
" 'an',\n",
" 'nyc',\n",
" 'voluntary',\n",
" 'cleanup',\n",
" 'program',\n",
" '(',\n",
" 'vcp'),\n",
" 49),\n",
" (('(',\n",
" 'oer',\n",
" ')',\n",
" 'has',\n",
" 'received',\n",
" 'an',\n",
" 'nyc',\n",
" 'voluntary',\n",
" 'cleanup',\n",
" 'program'),\n",
" 49),\n",
" (('environmental',\n",
" 'remediation',\n",
" '(',\n",
" 'oer',\n",
" ')',\n",
" 'has',\n",
" 'received',\n",
" 'an',\n",
" 'nyc',\n",
" 'voluntary'),\n",
" 49),\n",
" (('york',\n",
" 'city',\n",
" 'office',\n",
" 'of',\n",
" 'environmental',\n",
" 'remediation',\n",
" '(',\n",
" 'oer',\n",
" ')',\n",
" 'has'),\n",
" 49),\n",
" (('task',\n",
" 'order',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':'),\n",
" 49),\n",
" (('agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'task',\n",
" 'order',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially'),\n",
" 49),\n",
" (('remediation',\n",
" '(',\n",
" 'oer',\n",
" ')',\n",
" 'has',\n",
" 'received',\n",
" 'an',\n",
" 'nyc',\n",
" 'voluntary',\n",
" 'cleanup'),\n",
" 49),\n",
" (('the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'office',\n",
" 'of',\n",
" 'environmental',\n",
" 'remediation',\n",
" '(',\n",
" 'oer'),\n",
" 49),\n",
" (('to',\n",
" 'utilize',\n",
" ':',\n",
" 'task',\n",
" 'order',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles'),\n",
" 49),\n",
" (('city',\n",
" 'office',\n",
" 'of',\n",
" 'environmental',\n",
" 'remediation',\n",
" '(',\n",
" 'oer',\n",
" ')',\n",
" 'has',\n",
" 'received'),\n",
" 49),\n",
" ((':',\n",
" 'task',\n",
" 'order',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency'),\n",
" 49),\n",
" (('utilize',\n",
" ':',\n",
" 'task',\n",
" 'order',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within'),\n",
" 49),\n",
" (('of',\n",
" 'environmental',\n",
" 'remediation',\n",
" '(',\n",
" 'oer',\n",
" ')',\n",
" 'has',\n",
" 'received',\n",
" 'an',\n",
" 'nyc'),\n",
" 49),\n",
" (('method',\n",
" 'of',\n",
" 'solicitation',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'task'),\n",
" 49),\n",
" (('received',\n",
" 'an',\n",
" 'nyc',\n",
" 'voluntary',\n",
" 'cleanup',\n",
" 'program',\n",
" '(',\n",
" 'vcp',\n",
" ')',\n",
" 'application'),\n",
" 49),\n",
" (('has',\n",
" 'received',\n",
" 'an',\n",
" 'nyc',\n",
" 'voluntary',\n",
" 'cleanup',\n",
" 'program',\n",
" '(',\n",
" 'vcp',\n",
" ')'),\n",
" 49),\n",
" (('office',\n",
" 'of',\n",
" 'environmental',\n",
" 'remediation',\n",
" '(',\n",
" 'oer',\n",
" ')',\n",
" 'has',\n",
" 'received',\n",
" 'an'),\n",
" 49),\n",
" (('the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'task',\n",
" 'order',\n",
" 'personnel',\n",
" 'in'),\n",
" 49),\n",
" (('of',\n",
" 'solicitation',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'task',\n",
" 'order'),\n",
" 49),\n",
" (('new',\n",
" 'york',\n",
" 'city',\n",
" 'office',\n",
" 'of',\n",
" 'environmental',\n",
" 'remediation',\n",
" '(',\n",
" 'oer',\n",
" ')'),\n",
" 49),\n",
" (('solicitation',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'task',\n",
" 'order',\n",
" 'personnel'),\n",
" 49),\n",
" (('oer',\n",
" ')',\n",
" 'has',\n",
" 'received',\n",
" 'an',\n",
" 'nyc',\n",
" 'voluntary',\n",
" 'cleanup',\n",
" 'program',\n",
" '('),\n",
" 49),\n",
" (('intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'task',\n",
" 'order',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar'),\n",
" 49),\n",
" ((',',\n",
" 'and',\n",
" 'other',\n",
" 'days',\n",
" ',',\n",
" 'times',\n",
" 'and',\n",
" 'location',\n",
" 'as',\n",
" 'warranted'),\n",
" 48),\n",
" (('and',\n",
" 'other',\n",
" 'days',\n",
" ',',\n",
" 'times',\n",
" 'and',\n",
" 'location',\n",
" 'as',\n",
" 'warranted',\n",
" '.'),\n",
" 48),\n",
" (('meets',\n",
" 'in',\n",
" 'spector',\n",
" 'hall',\n",
" ',',\n",
" '22',\n",
" 'reade',\n",
" 'street',\n",
" ',',\n",
" 'main'),\n",
" 48),\n",
" (('an',\n",
" 'nyc',\n",
" 'voluntary',\n",
" 'cleanup',\n",
" 'program',\n",
" '(',\n",
" 'vcp',\n",
" ')',\n",
" 'application',\n",
" 'from'),\n",
" 48),\n",
" (('hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'issuing',\n",
" 'the',\n",
" 'following'),\n",
" 47),\n",
" (('that',\n",
" 'the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'issuing',\n",
" 'the',\n",
" 'following',\n",
" 'solicitation',\n",
" '('),\n",
" 47),\n",
" (('will',\n",
" 'be',\n",
" 'issuing',\n",
" 'the',\n",
" 'following',\n",
" 'solicitation',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'not'),\n",
" 47),\n",
" (('be',\n",
" 'issuing',\n",
" 'the',\n",
" 'following',\n",
" 'solicitation',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'not',\n",
" 'included'),\n",
" 47),\n",
" (('issuing',\n",
" 'the',\n",
" 'following',\n",
" 'solicitation',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'not',\n",
" 'included',\n",
" 'in'),\n",
" 47),\n",
" (('given',\n",
" 'that',\n",
" 'the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'issuing',\n",
" 'the',\n",
" 'following',\n",
" 'solicitation'),\n",
" 47),\n",
" (('intent',\n",
" 'to',\n",
" 'issue',\n",
" 'new',\n",
" 'solicitation',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'not',\n",
" 'included'),\n",
" 47),\n",
" (('the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'issuing',\n",
" 'the',\n",
" 'following',\n",
" 'solicitation',\n",
" '(',\n",
" 's'),\n",
" 47),\n",
" (('of', 'intent', 'to', 'issue', 'new', 'solicitation', '(', 's', ')', 'not'),\n",
" 47),\n",
" (('is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'issuing',\n",
" 'the'),\n",
" 47),\n",
" (('to',\n",
" 'issue',\n",
" 'new',\n",
" 'solicitation',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'not',\n",
" 'included',\n",
" 'in'),\n",
" 47),\n",
" (('notice',\n",
" 'of',\n",
" 'intent',\n",
" 'to',\n",
" 'issue',\n",
" 'new',\n",
" 'solicitation',\n",
" '(',\n",
" 's',\n",
" ')'),\n",
" 47),\n",
" (('following',\n",
" 'solicitation',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'not',\n",
" 'included',\n",
" 'in',\n",
" 'the',\n",
" 'fy'),\n",
" 47),\n",
" (('the',\n",
" 'following',\n",
" 'solicitation',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'not',\n",
" 'included',\n",
" 'in',\n",
" 'the'),\n",
" 47),\n",
" (('issue',\n",
" 'new',\n",
" 'solicitation',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'not',\n",
" 'included',\n",
" 'in',\n",
" 'fy'),\n",
" 47),\n",
" (('notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'issuing'),\n",
" 47),\n",
" (('mayor',\n",
" 'will',\n",
" 'be',\n",
" 'issuing',\n",
" 'the',\n",
" 'following',\n",
" 'solicitation',\n",
" '(',\n",
" 's',\n",
" ')'),\n",
" 47),\n",
" (('new',\n",
" 'solicitation',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'not',\n",
" 'included',\n",
" 'in',\n",
" 'fy',\n",
" '2015'),\n",
" 46),\n",
" (('solicitation',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'not',\n",
" 'included',\n",
" 'in',\n",
" 'the',\n",
" 'fy',\n",
" '2015'),\n",
" 46),\n",
" (('solicitation',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'not',\n",
" 'included',\n",
" 'in',\n",
" 'fy',\n",
" '2015',\n",
" 'annual'),\n",
" 46),\n",
" (('in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'agency',\n",
" ':'),\n",
" 45),\n",
" (('to', 'this', 'project', '.', 'the', 'new', 'york', 'city', 'office', 'of'),\n",
" 45),\n",
" (('project',\n",
" '.',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'office',\n",
" 'of',\n",
" 'environmental',\n",
" 'remediation'),\n",
" 45),\n",
" (('.',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'office',\n",
" 'of',\n",
" 'environmental',\n",
" 'remediation',\n",
" '('),\n",
" 45),\n",
" (('is',\n",
" 'assigned',\n",
" 'to',\n",
" 'this',\n",
" 'project',\n",
" '.',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city'),\n",
" 45),\n",
" (('assigned',\n",
" 'to',\n",
" 'this',\n",
" 'project',\n",
" '.',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'office'),\n",
" 45),\n",
" (('this',\n",
" 'project',\n",
" '.',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'office',\n",
" 'of',\n",
" 'environmental'),\n",
" 45),\n",
" (('personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'agency'),\n",
" 45),\n",
" (('city', 'charter', '312', '(', 'a', ')', ':', 'agency', ':', 'department'),\n",
" 44),\n",
" (('charter', '312', '(', 'a', ')', ':', 'agency', ':', 'department', 'of'),\n",
" 44),\n",
" (('public',\n",
" 'notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'following',\n",
" 'matters',\n",
" 'have'),\n",
" 36),\n",
" (('notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'following',\n",
" 'matters',\n",
" 'have',\n",
" 'been'),\n",
" 36),\n",
" ((',',\n",
" 'commencing',\n",
" '10:00',\n",
" 'a.m.',\n",
" ',',\n",
" 'and',\n",
" 'other',\n",
" 'days',\n",
" ',',\n",
" 'times'),\n",
" 36),\n",
" (('hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'following',\n",
" 'matters',\n",
" 'have',\n",
" 'been',\n",
" 'scheduled',\n",
" 'for'),\n",
" 36),\n",
" ((',', '22', 'reade', 'street', ',', 'main', 'floor', ',', 'manhattan', ','),\n",
" 36),\n",
" (('commencing',\n",
" '10:00',\n",
" 'a.m.',\n",
" ',',\n",
" 'and',\n",
" 'other',\n",
" 'days',\n",
" ',',\n",
" 'times',\n",
" 'and'),\n",
" 36),\n",
" (('following',\n",
" 'matters',\n",
" 'have',\n",
" 'been',\n",
" 'scheduled',\n",
" 'for',\n",
" 'public',\n",
" 'hearing',\n",
" 'by',\n",
" 'community'),\n",
" 36),\n",
" (('is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'following',\n",
" 'matters',\n",
" 'have',\n",
" 'been',\n",
" 'scheduled'),\n",
" 36),\n",
" (('10:00',\n",
" 'a.m.',\n",
" ',',\n",
" 'and',\n",
" 'other',\n",
" 'days',\n",
" ',',\n",
" 'times',\n",
" 'and',\n",
" 'location'),\n",
" 36),\n",
" (('the',\n",
" 'following',\n",
" 'matters',\n",
" 'have',\n",
" 'been',\n",
" 'scheduled',\n",
" 'for',\n",
" 'public',\n",
" 'hearing',\n",
" 'by'),\n",
" 36),\n",
" (('hall',\n",
" ',',\n",
" '22',\n",
" 'reade',\n",
" 'street',\n",
" ',',\n",
" 'main',\n",
" 'floor',\n",
" ',',\n",
" 'manhattan'),\n",
" 36),\n",
" (('a.m.', ',', 'and', 'other', 'days', ',', 'times', 'and', 'location', 'as'),\n",
" 36),\n",
" (('given',\n",
" 'that',\n",
" 'the',\n",
" 'following',\n",
" 'matters',\n",
" 'have',\n",
" 'been',\n",
" 'scheduled',\n",
" 'for',\n",
" 'public'),\n",
" 36),\n",
" (('that',\n",
" 'the',\n",
" 'following',\n",
" 'matters',\n",
" 'have',\n",
" 'been',\n",
" 'scheduled',\n",
" 'for',\n",
" 'public',\n",
" 'hearing'),\n",
" 36),\n",
" (('have',\n",
" 'been',\n",
" 'scheduled',\n",
" 'for',\n",
" 'public',\n",
" 'hearing',\n",
" 'by',\n",
" 'community',\n",
" 'board',\n",
" ':'),\n",
" 35),\n",
" (('scheduled',\n",
" 'for',\n",
" 'public',\n",
" 'hearing',\n",
" 'by',\n",
" 'community',\n",
" 'board',\n",
" ':',\n",
" 'borough',\n",
" 'of'),\n",
" 35),\n",
" (('matters',\n",
" 'have',\n",
" 'been',\n",
" 'scheduled',\n",
" 'for',\n",
" 'public',\n",
" 'hearing',\n",
" 'by',\n",
" 'community',\n",
" 'board'),\n",
" 35),\n",
" (('ave',\n",
" 'in',\n",
" 'the',\n",
" 'borough',\n",
" 'of',\n",
" 'manhattan',\n",
" '(',\n",
" 'to',\n",
" 'continue',\n",
" 'to'),\n",
" 35),\n",
" (('been',\n",
" 'scheduled',\n",
" 'for',\n",
" 'public',\n",
" 'hearing',\n",
" 'by',\n",
" 'community',\n",
" 'board',\n",
" ':',\n",
" 'borough'),\n",
" 35),\n",
" (('to',\n",
" 'the',\n",
" 'nature',\n",
" 'of',\n",
" 'services',\n",
" 'performed',\n",
" 'under',\n",
" 'the',\n",
" 'contract',\n",
" ':'),\n",
" 31),\n",
" (('modifications',\n",
" 'sought',\n",
" 'to',\n",
" 'the',\n",
" 'nature',\n",
" 'of',\n",
" 'services',\n",
" 'performed',\n",
" 'under',\n",
" 'the'),\n",
" 31),\n",
" (('sought',\n",
" 'to',\n",
" 'the',\n",
" 'nature',\n",
" 'of',\n",
" 'services',\n",
" 'performed',\n",
" 'under',\n",
" 'the',\n",
" 'contract'),\n",
" 31),\n",
" (('in', 'spector', 'hall', ',', '22', 'reade', 'street', ',', 'new', 'york'),\n",
" 31),\n",
" (('spector', 'hall', ',', '22', 'reade', 'street', ',', 'new', 'york', ','),\n",
" 31),\n",
" (('similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'agency',\n",
" ':',\n",
" 'department',\n",
" 'of'),\n",
" 30),\n",
" (('substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'agency',\n",
" ':',\n",
" 'department'),\n",
" 30),\n",
" (('individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the',\n",
" 'mayor',\n",
" \"'s\"),\n",
" 27),\n",
" (('sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the',\n",
" 'mayor',\n",
" \"'s\",\n",
" 'office',\n",
" 'of'),\n",
" 27),\n",
" (('requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the',\n",
" 'mayor',\n",
" \"'s\",\n",
" 'office'),\n",
" 27),\n",
" (('notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'a',\n",
" 'public',\n",
" 'hearing',\n",
" 'will',\n",
" 'be'),\n",
" 25),\n",
" (('is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'a',\n",
" 'public',\n",
" 'hearing',\n",
" 'will',\n",
" 'be',\n",
" 'held'),\n",
" 25),\n",
" (('of',\n",
" 'information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description',\n",
" 'of',\n",
" 'services',\n",
" 'sought',\n",
" ':'),\n",
" 23),\n",
" (('agency',\n",
" ':',\n",
" 'department',\n",
" 'of',\n",
" 'information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description',\n",
" 'of'),\n",
" 23),\n",
" (('department',\n",
" 'of',\n",
" 'information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description',\n",
" 'of',\n",
" 'services',\n",
" 'sought'),\n",
" 23),\n",
" ((':',\n",
" 'department',\n",
" 'of',\n",
" 'information',\n",
" 'technology',\n",
" '&',\n",
" 'telecommunications',\n",
" 'description',\n",
" 'of',\n",
" 'services'),\n",
" 23),\n",
" (('st',\n",
" 'in',\n",
" 'the',\n",
" 'borough',\n",
" 'of',\n",
" 'manhattan',\n",
" '(',\n",
" 'to',\n",
" 'continue',\n",
" 'to'),\n",
" 23),\n",
" (('nature',\n",
" 'of',\n",
" 'services',\n",
" 'performed',\n",
" 'under',\n",
" 'the',\n",
" 'contract',\n",
" ':',\n",
" 'none',\n",
" 'reason'),\n",
" 22),\n",
" (('contract',\n",
" ':',\n",
" 'none',\n",
" 'reason',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'the',\n",
" 'agency',\n",
" 'intends'),\n",
" 22),\n",
" (('sidewalk', 'caf', 'for', 'a', 'term', 'of', 'two', 'years', '.', ')'), 22),\n",
" ((',',\n",
" 'municipal',\n",
" 'building',\n",
" ',',\n",
" 'manhattan',\n",
" ',',\n",
" 'new',\n",
" 'york',\n",
" '10007',\n",
" ','),\n",
" 22),\n",
" (('performed',\n",
" 'under',\n",
" 'the',\n",
" 'contract',\n",
" ':',\n",
" 'none',\n",
" 'reason',\n",
" '(',\n",
" 's',\n",
" ')'),\n",
" 22),\n",
" (('given',\n",
" 'that',\n",
" 'a',\n",
" 'public',\n",
" 'hearing',\n",
" 'will',\n",
" 'be',\n",
" 'held',\n",
" 'at',\n",
" 'the'),\n",
" 22),\n",
" (('the', 'contract', ':', 'none', 'reason', '(', 's', ')', 'the', 'agency'),\n",
" 22),\n",
" (('services',\n",
" 'performed',\n",
" 'under',\n",
" 'the',\n",
" 'contract',\n",
" ':',\n",
" 'none',\n",
" 'reason',\n",
" '(',\n",
" 's'),\n",
" 22),\n",
" ((':', 'none', 'reason', '(', 's', ')', 'the', 'agency', 'intends', 'to'),\n",
" 22),\n",
" (('order',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" 'none'),\n",
" 22),\n",
" (('under', 'the', 'contract', ':', 'none', 'reason', '(', 's', ')', 'the'),\n",
" 22),\n",
" (('of',\n",
" 'services',\n",
" 'performed',\n",
" 'under',\n",
" 'the',\n",
" 'contract',\n",
" ':',\n",
" 'none',\n",
" 'reason',\n",
" '('),\n",
" 22),\n",
" (('hereby',\n",
" 'given',\n",
" 'that',\n",
" 'a',\n",
" 'public',\n",
" 'hearing',\n",
" 'will',\n",
" 'be',\n",
" 'held',\n",
" 'at'),\n",
" 21),\n",
" (('the',\n",
" 'nature',\n",
" 'of',\n",
" 'services',\n",
" 'performed',\n",
" 'under',\n",
" 'the',\n",
" 'contract',\n",
" ':',\n",
" 'none'),\n",
" 21),\n",
" (('intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'amendment',\n",
" 'extension',\n",
" 'new',\n",
" 'start',\n",
" 'date',\n",
" 'of'),\n",
" 20),\n",
" (('(',\n",
" 's',\n",
" ')',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'renew/extend',\n",
" 'the',\n",
" 'contract'),\n",
" 20),\n",
" (('reason',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'renew/extend',\n",
" 'the'),\n",
" 20),\n",
" (('utilize',\n",
" ':',\n",
" 'amendment',\n",
" 'extension',\n",
" 'new',\n",
" 'start',\n",
" 'date',\n",
" 'of',\n",
" 'the',\n",
" 'proposed'),\n",
" 20),\n",
" (('none',\n",
" 'reason',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'renew/extend'),\n",
" 20),\n",
" (('s',\n",
" ')',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'renew/extend',\n",
" 'the',\n",
" 'contract',\n",
" ':'),\n",
" 20),\n",
" (('the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'amendment',\n",
" 'extension',\n",
" 'new',\n",
" 'start'),\n",
" 20),\n",
" (('agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'amendment',\n",
" 'extension',\n",
" 'new',\n",
" 'start',\n",
" 'date'),\n",
" 20),\n",
" (('to',\n",
" 'utilize',\n",
" ':',\n",
" 'amendment',\n",
" 'extension',\n",
" 'new',\n",
" 'start',\n",
" 'date',\n",
" 'of',\n",
" 'the'),\n",
" 20),\n",
" (('788-7490', ',', 'no', 'later', 'than', 'seven', '(', '7', ')', 'business'),\n",
" 19),\n",
" (('later', 'than', 'seven', '(', '7', ')', 'business', 'days', 'prior', 'to'),\n",
" 19),\n",
" ((')', '788-7490', ',', 'no', 'later', 'than', 'seven', '(', '7', ')'), 19),\n",
" (('services',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" 'none'),\n",
" 19),\n",
" (('(', '212', ')', '788-7490', ',', 'no', 'later', 'than', 'seven', '('), 19),\n",
" (('unenclosed',\n",
" 'sidewalk',\n",
" 'caf',\n",
" 'for',\n",
" 'a',\n",
" 'term',\n",
" 'of',\n",
" 'two',\n",
" 'years',\n",
" '.'),\n",
" 19),\n",
" (('of',\n",
" 'services',\n",
" 'personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':'),\n",
" 19),\n",
" ((',', 'no', 'later', 'than', 'seven', '(', '7', ')', 'business', 'days'),\n",
" 19),\n",
" (('no', 'later', 'than', 'seven', '(', '7', ')', 'business', 'days', 'prior'),\n",
" 19),\n",
" (('seven', '(', '7', ')', 'business', 'days', 'prior', 'to', 'the', 'public'),\n",
" 19),\n",
" (('212', ')', '788-7490', ',', 'no', 'later', 'than', 'seven', '(', '7'), 19),\n",
" (('than', 'seven', '(', '7', ')', 'business', 'days', 'prior', 'to', 'the'),\n",
" 19),\n",
" ((',',\n",
" 'maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed',\n",
" 'sidewalk',\n",
" 'caf',\n",
" 'for'),\n",
" 19),\n",
" (('of',\n",
" 'contract',\n",
" 'services',\n",
" ',',\n",
" 'public',\n",
" 'hearings',\n",
" 'unit',\n",
" ',',\n",
" '253',\n",
" 'broadway'),\n",
" 18),\n",
" (('.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the',\n",
" 'mayor'),\n",
" 18),\n",
" (('office',\n",
" 'of',\n",
" 'contract',\n",
" 'services',\n",
" ',',\n",
" 'public',\n",
" 'hearings',\n",
" 'unit',\n",
" ',',\n",
" '253'),\n",
" 18),\n",
" (('mayor',\n",
" \"'s\",\n",
" 'office',\n",
" 'of',\n",
" 'contract',\n",
" 'services',\n",
" ',',\n",
" 'public',\n",
" 'hearings',\n",
" 'unit'),\n",
" 18),\n",
" (('197-c',\n",
" 'and',\n",
" '201',\n",
" 'of',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'charter',\n",
" 'for'),\n",
" 18),\n",
" (('personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'notice'),\n",
" 18),\n",
" (('contract',\n",
" 'services',\n",
" ',',\n",
" 'public',\n",
" 'hearings',\n",
" 'unit',\n",
" ',',\n",
" '253',\n",
" 'broadway',\n",
" ','),\n",
" 18),\n",
" (('operate',\n",
" 'an',\n",
" 'unenclosed',\n",
" 'sidewalk',\n",
" 'caf',\n",
" 'for',\n",
" 'a',\n",
" 'term',\n",
" 'of',\n",
" 'two'),\n",
" 18),\n",
" (('an',\n",
" 'unenclosed',\n",
" 'sidewalk',\n",
" 'caf',\n",
" 'for',\n",
" 'a',\n",
" 'term',\n",
" 'of',\n",
" 'two',\n",
" 'years'),\n",
" 18),\n",
" (('the',\n",
" 'mayor',\n",
" \"'s\",\n",
" 'office',\n",
" 'of',\n",
" 'contract',\n",
" 'services',\n",
" ',',\n",
" 'public',\n",
" 'hearings'),\n",
" 18),\n",
" (('10007', ',', '(', '212', ')', '788-7490', ',', 'no', 'later', 'than'), 18),\n",
" (('should',\n",
" 'contact',\n",
" 'the',\n",
" 'mayor',\n",
" \"'s\",\n",
" 'office',\n",
" 'of',\n",
" 'contract',\n",
" 'services',\n",
" ','),\n",
" 18),\n",
" (('language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the',\n",
" 'mayor',\n",
" \"'s\",\n",
" 'office',\n",
" 'of',\n",
" 'contract'),\n",
" 18),\n",
" (('interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the',\n",
" 'mayor',\n",
" \"'s\",\n",
" 'office',\n",
" 'of',\n",
" 'contract',\n",
" 'services'),\n",
" 18),\n",
" (('contact',\n",
" 'the',\n",
" 'mayor',\n",
" \"'s\",\n",
" 'office',\n",
" 'of',\n",
" 'contract',\n",
" 'services',\n",
" ',',\n",
" 'public'),\n",
" 18),\n",
" ((\"'s\",\n",
" 'office',\n",
" 'of',\n",
" 'contract',\n",
" 'services',\n",
" ',',\n",
" 'public',\n",
" 'hearings',\n",
" 'unit',\n",
" ','),\n",
" 18),\n",
" (('pursuant',\n",
" 'to',\n",
" 'sections',\n",
" '197-c',\n",
" 'and',\n",
" '201',\n",
" 'of',\n",
" 'the',\n",
" 'new',\n",
" 'york'),\n",
" 17),\n",
" (('hall', ',', '22', 'reade', 'street', ',', 'new', 'york', ',', 'ny'), 17),\n",
" (('to',\n",
" 'sections',\n",
" '197-c',\n",
" 'and',\n",
" '201',\n",
" 'of',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city'),\n",
" 17),\n",
" (('sections',\n",
" '197-c',\n",
" 'and',\n",
" '201',\n",
" 'of',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'charter'),\n",
" 17),\n",
" (('mayor',\n",
" 'will',\n",
" 'be',\n",
" 'entering',\n",
" 'into',\n",
" 'the',\n",
" 'following',\n",
" 'extension',\n",
" '(',\n",
" 's'),\n",
" 16),\n",
" (('of', '(', 'a', ')', 'contract', '(', 's', ')', 'not', 'included'), 16),\n",
" (('to', 'extend', 'contract', '(', 's', ')', 'not', 'included', 'in', 'fy'),\n",
" 16),\n",
" (('department',\n",
" 'of',\n",
" 'parks',\n",
" 'and',\n",
" 'recreation',\n",
" 'nature',\n",
" 'of',\n",
" 'services',\n",
" 'sought',\n",
" ':'),\n",
" 16),\n",
" (('the', 'following', 'extension', '(', 's', ')', 'of', '(', 'a', ')'), 16),\n",
" (('entering',\n",
" 'into',\n",
" 'the',\n",
" 'following',\n",
" 'extension',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'of',\n",
" '('),\n",
" 16),\n",
" (('contract', '(', 's', ')', 'not', 'included', 'in', 'the', 'fy', '2015'),\n",
" 16),\n",
" (('nan',\n",
" 'notice',\n",
" 'of',\n",
" 'intent',\n",
" 'to',\n",
" 'issue',\n",
" 'new',\n",
" 'solicitation',\n",
" '(',\n",
" 's'),\n",
" 16),\n",
" (('payable',\n",
" 'in',\n",
" 'equal',\n",
" 'monthly',\n",
" 'installments',\n",
" 'at',\n",
" 'the',\n",
" 'end',\n",
" 'of',\n",
" 'each'),\n",
" 16),\n",
" (('following', 'extension', '(', 's', ')', 'of', '(', 'a', ')', 'contract'),\n",
" 16),\n",
" (('prior',\n",
" 'to',\n",
" 'the',\n",
" 'public',\n",
" 'hearing',\n",
" '.',\n",
" 'tdd',\n",
" 'users',\n",
" 'should',\n",
" 'call'),\n",
" 16),\n",
" (('(',\n",
" '7',\n",
" ')',\n",
" 'business',\n",
" 'days',\n",
" 'prior',\n",
" 'to',\n",
" 'the',\n",
" 'public',\n",
" 'hearing'),\n",
" 16),\n",
" (('7',\n",
" ')',\n",
" 'business',\n",
" 'days',\n",
" 'prior',\n",
" 'to',\n",
" 'the',\n",
" 'public',\n",
" 'hearing',\n",
" '.'),\n",
" 16),\n",
" (('for', 'the', 'city', 'of', 'new', 'york', ',', 'as', 'tenant', ','), 16),\n",
" (('is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'entering',\n",
" 'into'),\n",
" 16),\n",
" ((':',\n",
" 'department',\n",
" 'of',\n",
" 'parks',\n",
" 'and',\n",
" 'recreation',\n",
" 'nature',\n",
" 'of',\n",
" 'services',\n",
" 'sought'),\n",
" 16),\n",
" (('hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'entering',\n",
" 'into',\n",
" 'the'),\n",
" 16),\n",
" (('a', ')', 'contract', '(', 's', ')', 'not', 'included', 'in', 'the'), 16),\n",
" (('business',\n",
" 'days',\n",
" 'prior',\n",
" 'to',\n",
" 'the',\n",
" 'public',\n",
" 'hearing',\n",
" '.',\n",
" 'tdd',\n",
" 'users'),\n",
" 16),\n",
" (('into', 'the', 'following', 'extension', '(', 's', ')', 'of', '(', 'a'),\n",
" 16),\n",
" (('agency',\n",
" ':',\n",
" 'department',\n",
" 'of',\n",
" 'parks',\n",
" 'and',\n",
" 'recreation',\n",
" 'nature',\n",
" 'of',\n",
" 'services'),\n",
" 16),\n",
" (('in',\n",
" 'equal',\n",
" 'monthly',\n",
" 'installments',\n",
" 'at',\n",
" 'the',\n",
" 'end',\n",
" 'of',\n",
" 'each',\n",
" 'month'),\n",
" 16),\n",
" (('the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'entering',\n",
" 'into',\n",
" 'the',\n",
" 'following',\n",
" 'extension',\n",
" '('),\n",
" 16),\n",
" ((')', 'of', '(', 'a', ')', 'contract', '(', 's', ')', 'not'), 16),\n",
" (('days',\n",
" 'prior',\n",
" 'to',\n",
" 'the',\n",
" 'public',\n",
" 'hearing',\n",
" '.',\n",
" 'tdd',\n",
" 'users',\n",
" 'should'),\n",
" 16),\n",
" (('extend', 'contract', '(', 's', ')', 'not', 'included', 'in', 'fy', '2015'),\n",
" 16),\n",
" (('(', 's', ')', 'of', '(', 'a', ')', 'contract', '(', 's'), 16),\n",
" (('given',\n",
" 'that',\n",
" 'the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'entering',\n",
" 'into',\n",
" 'the',\n",
" 'following'),\n",
" 16),\n",
" (('intent',\n",
" 'to',\n",
" 'extend',\n",
" 'contract',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'not',\n",
" 'included',\n",
" 'in'),\n",
" 16),\n",
" (('(', 'a', ')', 'contract', '(', 's', ')', 'not', 'included', 'in'), 16),\n",
" (('contract', '(', 's', ')', 'not', 'included', 'in', 'fy', '2015', 'annual'),\n",
" 16),\n",
" (('to',\n",
" 'the',\n",
" 'public',\n",
" 'hearing',\n",
" '.',\n",
" 'tdd',\n",
" 'users',\n",
" 'should',\n",
" 'call',\n",
" 'verizon'),\n",
" 16),\n",
" (('that',\n",
" 'the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'entering',\n",
" 'into',\n",
" 'the',\n",
" 'following',\n",
" 'extension'),\n",
" 16),\n",
" (('notice', 'of', 'intent', 'to', 'extend', 'contract', '(', 's', ')', 'not'),\n",
" 16),\n",
" ((',', '(', '212', ')', '788-7490', ',', 'no', 'later', 'than', 'seven'), 16),\n",
" (('equal',\n",
" 'monthly',\n",
" 'installments',\n",
" 'at',\n",
" 'the',\n",
" 'end',\n",
" 'of',\n",
" 'each',\n",
" 'month',\n",
" '.'),\n",
" 16),\n",
" (('of',\n",
" 'intent',\n",
" 'to',\n",
" 'extend',\n",
" 'contract',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'not',\n",
" 'included'),\n",
" 16),\n",
" (('will',\n",
" 'be',\n",
" 'entering',\n",
" 'into',\n",
" 'the',\n",
" 'following',\n",
" 'extension',\n",
" '(',\n",
" 's',\n",
" ')'),\n",
" 16),\n",
" (('(', 'to', 'continue', 'to', ',', 'maintain', ',', 'and', 'operate', 'an'),\n",
" 16),\n",
" ((',', '22', 'reade', 'street', ',', 'new', 'york', ',', 'n.y.', '10007'),\n",
" 16),\n",
" ((')', 'contract', '(', 's', ')', 'not', 'included', 'in', 'the', 'fy'), 16),\n",
" (('.',\n",
" 'notice',\n",
" 'of',\n",
" 'intent',\n",
" 'to',\n",
" 'issue',\n",
" 'new',\n",
" 'solicitation',\n",
" '(',\n",
" 's'),\n",
" 16),\n",
" (('be',\n",
" 'entering',\n",
" 'into',\n",
" 'the',\n",
" 'following',\n",
" 'extension',\n",
" '(',\n",
" 's',\n",
" ')',\n",
" 'of'),\n",
" 16),\n",
" (('s', ')', 'of', '(', 'a', ')', 'contract', '(', 's', ')'), 16),\n",
" (('extension', '(', 's', ')', 'of', '(', 'a', ')', 'contract', '('), 16),\n",
" (('notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'the',\n",
" 'mayor',\n",
" 'will',\n",
" 'be',\n",
" 'entering'),\n",
" 16),\n",
" (('the',\n",
" 'public',\n",
" 'hearing',\n",
" '.',\n",
" 'tdd',\n",
" 'users',\n",
" 'should',\n",
" 'call',\n",
" 'verizon',\n",
" 'relay'),\n",
" 16),\n",
" ((')',\n",
" 'business',\n",
" 'days',\n",
" 'prior',\n",
" 'to',\n",
" 'the',\n",
" 'public',\n",
" 'hearing',\n",
" '.',\n",
" 'tdd'),\n",
" 16),\n",
" (('municipal',\n",
" 'building',\n",
" ',',\n",
" 'manhattan',\n",
" ',',\n",
" 'new',\n",
" 'york',\n",
" '10007',\n",
" ',',\n",
" 'at'),\n",
" 15),\n",
" (('100',\n",
" 'church',\n",
" 'street',\n",
" ',',\n",
" '12th',\n",
" 'floor',\n",
" ',',\n",
" 'training',\n",
" 'room',\n",
" '#'),\n",
" 15),\n",
" (('posted', 'here', 'and', 'on', 'nycha', \"'s\", 'website', 'at', 'http', ':'),\n",
" 15),\n",
" (('board',\n",
" 'room',\n",
" 'on',\n",
" 'the',\n",
" '12th',\n",
" 'floor',\n",
" 'of',\n",
" '250',\n",
" 'broadway',\n",
" ','),\n",
" 15),\n",
" (('to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at',\n",
" 'a',\n",
" 'reasonable',\n",
" 'time',\n",
" 'before',\n",
" 'the'),\n",
" 15),\n",
" (('at', '10:00', 'a.m.', 'in', 'the', 'board', 'room', 'on', 'the', '12th'),\n",
" 15),\n",
" (('website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at'),\n",
" 15),\n",
" (('will',\n",
" 'be',\n",
" 'posted',\n",
" 'here',\n",
" 'and',\n",
" 'on',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'at'),\n",
" 15),\n",
" (('22',\n",
" 'reade',\n",
" 'street',\n",
" ',',\n",
" '2nd',\n",
" 'floor',\n",
" 'conference',\n",
" 'room',\n",
" ',',\n",
" 'borough'),\n",
" 15),\n",
" (('nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent'),\n",
" 15),\n",
" (('church',\n",
" 'street',\n",
" ',',\n",
" '12th',\n",
" 'floor',\n",
" ',',\n",
" 'training',\n",
" 'room',\n",
" '#',\n",
" '143'),\n",
" 15),\n",
" (('in', 'the', 'board', 'room', 'on', 'the', '12th', 'floor', 'of', '250'),\n",
" 15),\n",
" (('hearing',\n",
" '.',\n",
" 'tdd',\n",
" 'users',\n",
" 'should',\n",
" 'call',\n",
" 'verizon',\n",
" 'relay',\n",
" 'services',\n",
" '.'),\n",
" 15),\n",
" (('here',\n",
" 'and',\n",
" 'on',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml'),\n",
" 15),\n",
" (('floor', ',', 'training', 'room', '#', '143', ',', 'new', 'york', ','), 15),\n",
" (('reade',\n",
" 'street',\n",
" ',',\n",
" '2nd',\n",
" 'floor',\n",
" 'conference',\n",
" 'room',\n",
" ',',\n",
" 'borough',\n",
" 'of'),\n",
" 15),\n",
" (('//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at',\n",
" 'a',\n",
" 'reasonable',\n",
" 'time',\n",
" 'before'),\n",
" 15),\n",
" (('changes',\n",
" 'to',\n",
" 'the',\n",
" 'schedule',\n",
" 'will',\n",
" 'be',\n",
" 'posted',\n",
" 'here',\n",
" 'and',\n",
" 'on'),\n",
" 15),\n",
" (('12th', 'floor', ',', 'training', 'room', '#', '143', ',', 'new', 'york'),\n",
" 15),\n",
" (('on', 'the', '12th', 'floor', 'of', '250', 'broadway', ',', 'new', 'york'),\n",
" 15),\n",
" (('street',\n",
" ',',\n",
" '2nd',\n",
" 'floor',\n",
" 'conference',\n",
" 'room',\n",
" ',',\n",
" 'borough',\n",
" 'of',\n",
" 'manhattan'),\n",
" 15),\n",
" (('be',\n",
" 'posted',\n",
" 'here',\n",
" 'and',\n",
" 'on',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'at',\n",
" 'http'),\n",
" 15),\n",
" (('the', 'city', 'of', 'new', 'york', ',', 'as', 'tenant', ',', 'of'), 15),\n",
" (('the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at',\n",
" 'a',\n",
" 'reasonable',\n",
" 'time',\n",
" 'before',\n",
" 'the',\n",
" 'meeting'),\n",
" 15),\n",
" (('monthly',\n",
" 'installments',\n",
" 'at',\n",
" 'the',\n",
" 'end',\n",
" 'of',\n",
" 'each',\n",
" 'month',\n",
" '.',\n",
" 'the'),\n",
" 15),\n",
" ((',', '12th', 'floor', ',', 'training', 'room', '#', '143', ',', 'new'), 15),\n",
" (('schedule',\n",
" 'will',\n",
" 'be',\n",
" 'posted',\n",
" 'here',\n",
" 'and',\n",
" 'on',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website'),\n",
" 15),\n",
" ((\"'s\",\n",
" 'website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable'),\n",
" 15),\n",
" (('at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at',\n",
" 'a'),\n",
" 15),\n",
" (('extension',\n",
" 'new',\n",
" 'start',\n",
" 'date',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'renewed/extended',\n",
" 'contract',\n",
" ':'),\n",
" 15),\n",
" (('.',\n",
" 'any',\n",
" 'changes',\n",
" 'to',\n",
" 'the',\n",
" 'schedule',\n",
" 'will',\n",
" 'be',\n",
" 'posted',\n",
" 'here'),\n",
" 15),\n",
" ((':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at',\n",
" 'a',\n",
" 'reasonable',\n",
" 'time'),\n",
" 15),\n",
" (('additional',\n",
" 'information',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'or',\n",
" 'contact'),\n",
" 15),\n",
" (('for',\n",
" 'public',\n",
" 'hearing',\n",
" 'by',\n",
" 'community',\n",
" 'board',\n",
" ':',\n",
" 'borough',\n",
" 'of',\n",
" 'brooklyn'),\n",
" 15),\n",
" (('to',\n",
" 'continue',\n",
" 'to',\n",
" ',',\n",
" 'maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed'),\n",
" 15),\n",
" (('meeting',\n",
" '.',\n",
" 'for',\n",
" 'additional',\n",
" 'information',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nycha',\n",
" \"'s\"),\n",
" 15),\n",
" (('http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the',\n",
" 'extent',\n",
" 'practicable',\n",
" 'at',\n",
" 'a',\n",
" 'reasonable'),\n",
" 15),\n",
" (('to',\n",
" ',',\n",
" 'maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed',\n",
" 'sidewalk',\n",
" 'caf'),\n",
" 15),\n",
" (('please',\n",
" 'visit',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'or',\n",
" 'contact',\n",
" '(',\n",
" '212',\n",
" ')'),\n",
" 15),\n",
" (('public',\n",
" 'hearing',\n",
" 'by',\n",
" 'community',\n",
" 'board',\n",
" ':',\n",
" 'borough',\n",
" 'of',\n",
" 'brooklyn',\n",
" 'community'),\n",
" 15),\n",
" (('the',\n",
" 'schedule',\n",
" 'will',\n",
" 'be',\n",
" 'posted',\n",
" 'here',\n",
" 'and',\n",
" 'on',\n",
" 'nycha',\n",
" \"'s\"),\n",
" 15),\n",
" (('at',\n",
" '100',\n",
" 'church',\n",
" 'street',\n",
" ',',\n",
" '12th',\n",
" 'floor',\n",
" ',',\n",
" 'training',\n",
" 'room'),\n",
" 15),\n",
" (('hereby',\n",
" 'given',\n",
" 'of',\n",
" 'a',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'tuesday',\n",
" 'morning',\n",
" ','),\n",
" 15),\n",
" (('pursuant', 'to', 'section', '3-04', '(', 'b', ')', '(', '2', ')'), 15),\n",
" (('information',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'or',\n",
" 'contact',\n",
" '('),\n",
" 15),\n",
" (('personnel',\n",
" 'in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'nan'),\n",
" 15),\n",
" (('the',\n",
" 'board',\n",
" 'room',\n",
" 'on',\n",
" 'the',\n",
" '12th',\n",
" 'floor',\n",
" 'of',\n",
" '250',\n",
" 'broadway'),\n",
" 15),\n",
" (('hearing',\n",
" 'by',\n",
" 'community',\n",
" 'board',\n",
" ':',\n",
" 'borough',\n",
" 'of',\n",
" 'brooklyn',\n",
" 'community',\n",
" 'board'),\n",
" 15),\n",
" (('notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'of',\n",
" 'a',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'tuesday'),\n",
" 15),\n",
" (('any',\n",
" 'changes',\n",
" 'to',\n",
" 'the',\n",
" 'schedule',\n",
" 'will',\n",
" 'be',\n",
" 'posted',\n",
" 'here',\n",
" 'and'),\n",
" 15),\n",
" ((',',\n",
" 'please',\n",
" 'visit',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'or',\n",
" 'contact',\n",
" '(',\n",
" '212'),\n",
" 15),\n",
" (('.',\n",
" 'for',\n",
" 'additional',\n",
" 'information',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website'),\n",
" 15),\n",
" (('on',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to',\n",
" 'the'),\n",
" 15),\n",
" (('street', ',', '12th', 'floor', ',', 'training', 'room', '#', '143', ','),\n",
" 15),\n",
" (('for',\n",
" 'additional',\n",
" 'information',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'or'),\n",
" 15),\n",
" (('room', 'on', 'the', '12th', 'floor', 'of', '250', 'broadway', ',', 'new'),\n",
" 15),\n",
" (('to',\n",
" 'the',\n",
" 'schedule',\n",
" 'will',\n",
" 'be',\n",
" 'posted',\n",
" 'here',\n",
" 'and',\n",
" 'on',\n",
" 'nycha'),\n",
" 15),\n",
" (('continue',\n",
" 'to',\n",
" ',',\n",
" 'maintain',\n",
" ',',\n",
" 'and',\n",
" 'operate',\n",
" 'an',\n",
" 'unenclosed',\n",
" 'sidewalk'),\n",
" 15),\n",
" (('the', '12th', 'floor', 'of', '250', 'broadway', ',', 'new', 'york', ','),\n",
" 15),\n",
" (('a.m.', 'in', 'the', 'board', 'room', 'on', 'the', '12th', 'floor', 'of'),\n",
" 15),\n",
" (('extent',\n",
" 'practicable',\n",
" 'at',\n",
" 'a',\n",
" 'reasonable',\n",
" 'time',\n",
" 'before',\n",
" 'the',\n",
" 'meeting',\n",
" '.'),\n",
" 15),\n",
" (('10:00',\n",
" 'a.m.',\n",
" 'in',\n",
" 'the',\n",
" 'board',\n",
" 'room',\n",
" 'on',\n",
" 'the',\n",
" '12th',\n",
" 'floor'),\n",
" 15),\n",
" (('public',\n",
" 'hearing',\n",
" '.',\n",
" 'tdd',\n",
" 'users',\n",
" 'should',\n",
" 'call',\n",
" 'verizon',\n",
" 'relay',\n",
" 'services'),\n",
" 15),\n",
" (('is',\n",
" 'hereby',\n",
" 'given',\n",
" 'of',\n",
" 'a',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'tuesday',\n",
" 'morning'),\n",
" 15),\n",
" (('and',\n",
" 'on',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'at',\n",
" 'http',\n",
" ':',\n",
" '//www.nyc.gov/html/nycha/html/about/boardmeeting_schedule.shtml',\n",
" 'to'),\n",
" 15),\n",
" (('of',\n",
" 'the',\n",
" 'proposed',\n",
" 'lease',\n",
" 'may',\n",
" 'be',\n",
" 'obtained',\n",
" 'at',\n",
" 'one',\n",
" 'centre'),\n",
" 14),\n",
" (('of',\n",
" 'solicitation',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'competitive',\n",
" 'sealed'),\n",
" 14),\n",
" ((',', 'new', 'york', ',', 'n.y.', '10007', ',', 'on', 'the', 'following'),\n",
" 14),\n",
" (('is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'a',\n",
" 'real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions'),\n",
" 14),\n",
" (('street', ',', 'new', 'york', ',', 'n.y.', '10007', ',', 'on', 'the'), 14),\n",
" (('in',\n",
" 'substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'notice',\n",
" 'of'),\n",
" 14),\n",
" (('room', '2000', 'north', ',', 'new', 'york', ',', 'n.y.', '10007', '.'),\n",
" 14),\n",
" ((',',\n",
" 'in',\n",
" 'accordance',\n",
" 'with',\n",
" 'section',\n",
" '824',\n",
" 'of',\n",
" 'the',\n",
" 'new',\n",
" 'york'),\n",
" 14),\n",
" (('given',\n",
" 'that',\n",
" 'a',\n",
" 'real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing'),\n",
" 14),\n",
" ((',', 'room', '2000', 'north', ',', 'new', 'york', ',', 'n.y.', '10007'),\n",
" 14),\n",
" (('chris',\n",
" 'fleming',\n",
" 'at',\n",
" '(',\n",
" '212',\n",
" ')',\n",
" '386-0315',\n",
" '.',\n",
" 'individuals',\n",
" 'requesting'),\n",
" 14),\n",
" (('public',\n",
" 'inspection',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'lease',\n",
" 'may',\n",
" 'be',\n",
" 'obtained',\n",
" 'at'),\n",
" 14),\n",
" (('the', 'new', 'york', 'city', 'charter', ',', 'will', 'be', 'held', 'on'),\n",
" 14),\n",
" (('city',\n",
" 'of',\n",
" 'new',\n",
" 'york',\n",
" ',',\n",
" 'as',\n",
" 'tenant',\n",
" ',',\n",
" 'of',\n",
" 'approximately'),\n",
" 14),\n",
" (('york',\n",
" ',',\n",
" 'n.y.',\n",
" '10007',\n",
" '.',\n",
" 'to',\n",
" 'schedule',\n",
" 'an',\n",
" 'inspection',\n",
" ','),\n",
" 14),\n",
" ((',',\n",
" 'please',\n",
" 'contact',\n",
" 'chris',\n",
" 'fleming',\n",
" 'at',\n",
" '(',\n",
" '212',\n",
" ')',\n",
" '386-0315'),\n",
" 14),\n",
" (('acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'in',\n",
" 'accordance',\n",
" 'with',\n",
" 'section'),\n",
" 14),\n",
" ((',', 'in', 'spector', 'hall', ',', '22', 'reade', 'street', ',', 'new'),\n",
" 14),\n",
" (('centre', 'street', ',', 'room', '2000', 'north', ',', 'new', 'york', ','),\n",
" 14),\n",
" (('the',\n",
" 'proposed',\n",
" 'lease',\n",
" 'may',\n",
" 'be',\n",
" 'obtained',\n",
" 'at',\n",
" 'one',\n",
" 'centre',\n",
" 'street'),\n",
" 14),\n",
" (('and', '201', 'of', 'the', 'new', 'york', 'city', 'charter', 'for', 'the'),\n",
" 14),\n",
" (('n.y.', '10007', ',', '(', '212', ')', '788-7490', ',', 'no', 'later'), 14),\n",
" ((',', 'new', 'york', ',', 'n.y.', '10007', ',', '(', '212', ')'), 14),\n",
" (('obtained',\n",
" 'at',\n",
" 'one',\n",
" 'centre',\n",
" 'street',\n",
" ',',\n",
" 'room',\n",
" '2000',\n",
" 'north',\n",
" ','),\n",
" 14),\n",
" (('10007',\n",
" '.',\n",
" 'to',\n",
" 'schedule',\n",
" 'an',\n",
" 'inspection',\n",
" ',',\n",
" 'please',\n",
" 'contact',\n",
" 'chris'),\n",
" 14),\n",
" (('a.m.',\n",
" ',',\n",
" '22',\n",
" 'reade',\n",
" 'street',\n",
" ',',\n",
" '2nd',\n",
" 'floor',\n",
" 'conference',\n",
" 'room'),\n",
" 14),\n",
" (('824', 'of', 'the', 'new', 'york', 'city', 'charter', ',', 'will', 'be'),\n",
" 14),\n",
" (('real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'in',\n",
" 'accordance'),\n",
" 14),\n",
" ((',',\n",
" '22',\n",
" 'reade',\n",
" 'street',\n",
" ',',\n",
" '2nd',\n",
" 'floor',\n",
" 'conference',\n",
" 'room',\n",
" ','),\n",
" 14),\n",
" (('in',\n",
" 'accordance',\n",
" 'with',\n",
" 'section',\n",
" '824',\n",
" 'of',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city'),\n",
" 14),\n",
" (('notice',\n",
" 'is',\n",
" 'hereby',\n",
" 'given',\n",
" 'that',\n",
" 'a',\n",
" 'real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and'),\n",
" 14),\n",
" (('to', 'section', '3-04', '(', 'b', ')', '(', '2', ')', '('), 14),\n",
" (('method',\n",
" 'of',\n",
" 'solicitation',\n",
" 'the',\n",
" 'agency',\n",
" 'intends',\n",
" 'to',\n",
" 'utilize',\n",
" ':',\n",
" 'competitive'),\n",
" 14),\n",
" (('york', ',', 'n.y.', '10007', ',', '(', '212', ')', '788-7490', ','), 14),\n",
" (('(',\n",
" '212',\n",
" ')',\n",
" '386-0315',\n",
" '.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters'),\n",
" 14),\n",
" (('accordance',\n",
" 'with',\n",
" 'section',\n",
" '824',\n",
" 'of',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'charter'),\n",
" 14),\n",
" (('be',\n",
" 'obtained',\n",
" 'at',\n",
" 'one',\n",
" 'centre',\n",
" 'street',\n",
" ',',\n",
" 'room',\n",
" '2000',\n",
" 'north'),\n",
" 14),\n",
" ((')',\n",
" '386-0315',\n",
" '.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact'),\n",
" 14),\n",
" ((',',\n",
" 'n.y.',\n",
" '10007',\n",
" '.',\n",
" 'to',\n",
" 'schedule',\n",
" 'an',\n",
" 'inspection',\n",
" ',',\n",
" 'please'),\n",
" 14),\n",
" (('to',\n",
" 'schedule',\n",
" 'an',\n",
" 'inspection',\n",
" ',',\n",
" 'please',\n",
" 'contact',\n",
" 'chris',\n",
" 'fleming',\n",
" 'at'),\n",
" 14),\n",
" (('new',\n",
" 'york',\n",
" ',',\n",
" 'n.y.',\n",
" '10007',\n",
" '.',\n",
" 'to',\n",
" 'schedule',\n",
" 'an',\n",
" 'inspection'),\n",
" 14),\n",
" (('may',\n",
" 'be',\n",
" 'obtained',\n",
" 'at',\n",
" 'one',\n",
" 'centre',\n",
" 'street',\n",
" ',',\n",
" 'room',\n",
" '2000'),\n",
" 14),\n",
" (('hall', ',', '22', 'reade', 'street', ',', 'new', 'york', ',', 'n.y.'), 14),\n",
" (('public',\n",
" 'hearing',\n",
" ',',\n",
" 'in',\n",
" 'accordance',\n",
" 'with',\n",
" 'section',\n",
" '824',\n",
" 'of',\n",
" 'the'),\n",
" 14),\n",
" (('lease',\n",
" 'may',\n",
" 'be',\n",
" 'obtained',\n",
" 'at',\n",
" 'one',\n",
" 'centre',\n",
" 'street',\n",
" ',',\n",
" 'room'),\n",
" 14),\n",
" ((',',\n",
" 'including',\n",
" 'public',\n",
" 'inspection',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'lease',\n",
" 'may',\n",
" 'be'),\n",
" 14),\n",
" (('new',\n",
" 'york',\n",
" ',',\n",
" 'n.y.',\n",
" '10007',\n",
" ',',\n",
" 'on',\n",
" 'the',\n",
" 'following',\n",
" 'matters'),\n",
" 14),\n",
" (('north', ',', 'new', 'york', ',', 'n.y.', '10007', '.', 'to', 'schedule'),\n",
" 14),\n",
" ((',',\n",
" 'staten',\n",
" 'island',\n",
" ',',\n",
" 'new',\n",
" 'york',\n",
" 'having',\n",
" 'an',\n",
" 'approximate',\n",
" 'original'),\n",
" 14),\n",
" ((',', 'new', 'york', ',', 'n.y.', '10007', '.', 'to', 'schedule', 'an'), 14),\n",
" (('york',\n",
" ',',\n",
" 'n.y.',\n",
" '10007',\n",
" ',',\n",
" 'on',\n",
" 'the',\n",
" 'following',\n",
" 'matters',\n",
" ':'),\n",
" 14),\n",
" (('inspection',\n",
" ',',\n",
" 'please',\n",
" 'contact',\n",
" 'chris',\n",
" 'fleming',\n",
" 'at',\n",
" '(',\n",
" '212',\n",
" ')'),\n",
" 14),\n",
" (('with',\n",
" 'section',\n",
" '824',\n",
" 'of',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'charter',\n",
" ','),\n",
" 14),\n",
" ((',', 'pursuant', 'to', 'section', '3-04', '(', 'b', ')', '(', '2'), 14),\n",
" (('2nd', 'floor', ',', 'new', 'york', ',', 'n.y.', '10007', ',', '('), 14),\n",
" (('reade', 'street', ',', 'new', 'york', ',', 'n.y.', '10007', ',', 'on'),\n",
" 14),\n",
" (('following',\n",
" ':',\n",
" 'in',\n",
" 'the',\n",
" 'matter',\n",
" 'of',\n",
" 'a',\n",
" 'proposed',\n",
" 'contract',\n",
" 'between'),\n",
" 14),\n",
" (('services',\n",
" ',',\n",
" 'public',\n",
" 'hearings',\n",
" 'unit',\n",
" ',',\n",
" '253',\n",
" 'broadway',\n",
" ',',\n",
" '2nd'),\n",
" 14),\n",
" (('2000', 'north', ',', 'new', 'york', ',', 'n.y.', '10007', '.', 'to'), 14),\n",
" (('including',\n",
" 'public',\n",
" 'inspection',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'lease',\n",
" 'may',\n",
" 'be',\n",
" 'obtained'),\n",
" 14),\n",
" (('of', 'the', 'new', 'york', 'city', 'charter', ',', 'will', 'be', 'held'),\n",
" 14),\n",
" ((',', '253', 'broadway', ',', '2nd', 'floor', ',', 'new', 'york', ','), 14),\n",
" ((',', '2nd', 'floor', ',', 'new', 'york', ',', 'n.y.', '10007', ','), 14),\n",
" (('proposed',\n",
" 'lease',\n",
" 'may',\n",
" 'be',\n",
" 'obtained',\n",
" 'at',\n",
" 'one',\n",
" 'centre',\n",
" 'street',\n",
" ','),\n",
" 14),\n",
" (('inspection',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'lease',\n",
" 'may',\n",
" 'be',\n",
" 'obtained',\n",
" 'at',\n",
" 'one'),\n",
" 14),\n",
" (('hearing',\n",
" ',',\n",
" 'in',\n",
" 'accordance',\n",
" 'with',\n",
" 'section',\n",
" '824',\n",
" 'of',\n",
" 'the',\n",
" 'new'),\n",
" 14),\n",
" (('hereby',\n",
" 'given',\n",
" 'that',\n",
" 'a',\n",
" 'real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public'),\n",
" 14),\n",
" (('substantially',\n",
" 'similar',\n",
" 'titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'agency',\n",
" ':',\n",
" 'ddc'),\n",
" 14),\n",
" (('contact',\n",
" 'chris',\n",
" 'fleming',\n",
" 'at',\n",
" '(',\n",
" '212',\n",
" ')',\n",
" '386-0315',\n",
" '.',\n",
" 'individuals'),\n",
" 14),\n",
" (('on',\n",
" 'the',\n",
" 'following',\n",
" ':',\n",
" 'in',\n",
" 'the',\n",
" 'matter',\n",
" 'of',\n",
" 'a',\n",
" 'proposed'),\n",
" 14),\n",
" (('public',\n",
" 'hearings',\n",
" 'unit',\n",
" ',',\n",
" '253',\n",
" 'broadway',\n",
" ',',\n",
" '2nd',\n",
" 'floor',\n",
" ','),\n",
" 14),\n",
" (('section',\n",
" '824',\n",
" 'of',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'charter',\n",
" ',',\n",
" 'will'),\n",
" 14),\n",
" ((':',\n",
" 'in',\n",
" 'the',\n",
" 'matter',\n",
" 'of',\n",
" 'a',\n",
" 'proposed',\n",
" 'contract',\n",
" 'between',\n",
" 'the'),\n",
" 14),\n",
" ((',',\n",
" 'public',\n",
" 'hearings',\n",
" 'unit',\n",
" ',',\n",
" '253',\n",
" 'broadway',\n",
" ',',\n",
" '2nd',\n",
" 'floor'),\n",
" 14),\n",
" (('further',\n",
" 'information',\n",
" ',',\n",
" 'including',\n",
" 'public',\n",
" 'inspection',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'lease'),\n",
" 14),\n",
" (('schedule',\n",
" 'an',\n",
" 'inspection',\n",
" ',',\n",
" 'please',\n",
" 'contact',\n",
" 'chris',\n",
" 'fleming',\n",
" 'at',\n",
" '('),\n",
" 14),\n",
" (('a',\n",
" 'real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'in'),\n",
" 14),\n",
" (('386-0315',\n",
" '.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should',\n",
" 'contact',\n",
" 'the'),\n",
" 14),\n",
" (('street', ',', 'room', '2000', 'north', ',', 'new', 'york', ',', 'n.y.'),\n",
" 14),\n",
" (('22', 'reade', 'street', ',', 'new', 'york', ',', 'n.y.', '10007', ','),\n",
" 14),\n",
" (('that',\n",
" 'a',\n",
" 'real',\n",
" 'property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ','),\n",
" 14),\n",
" (('253', 'broadway', ',', '2nd', 'floor', ',', 'new', 'york', ',', 'n.y.'),\n",
" 14),\n",
" (('new', 'york', ',', 'n.y.', '10007', ',', '(', '212', ')', '788-7490'), 14),\n",
" (('broadway', ',', '2nd', 'floor', ',', 'new', 'york', ',', 'n.y.', '10007'),\n",
" 14),\n",
" (('staten',\n",
" 'island',\n",
" ',',\n",
" 'new',\n",
" 'york',\n",
" 'having',\n",
" 'an',\n",
" 'approximate',\n",
" 'original',\n",
" 'principal'),\n",
" 14),\n",
" (('dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'in',\n",
" 'accordance',\n",
" 'with',\n",
" 'section',\n",
" '824',\n",
" 'of'),\n",
" 14),\n",
" ((',', 'n.y.', '10007', ',', '(', '212', ')', '788-7490', ',', 'no'), 14),\n",
" (('floor', ',', 'new', 'york', ',', 'n.y.', '10007', ',', '(', '212'), 14),\n",
" (('at', 'one', 'centre', 'street', ',', 'room', '2000', 'north', ',', 'new'),\n",
" 14),\n",
" (('hearings',\n",
" 'unit',\n",
" ',',\n",
" '253',\n",
" 'broadway',\n",
" ',',\n",
" '2nd',\n",
" 'floor',\n",
" ',',\n",
" 'new'),\n",
" 14),\n",
" (('.',\n",
" 'further',\n",
" 'information',\n",
" ',',\n",
" 'including',\n",
" 'public',\n",
" 'inspection',\n",
" 'of',\n",
" 'the',\n",
" 'proposed'),\n",
" 14),\n",
" (('information',\n",
" ',',\n",
" 'including',\n",
" 'public',\n",
" 'inspection',\n",
" 'of',\n",
" 'the',\n",
" 'proposed',\n",
" 'lease',\n",
" 'may'),\n",
" 14),\n",
" (('an',\n",
" 'inspection',\n",
" ',',\n",
" 'please',\n",
" 'contact',\n",
" 'chris',\n",
" 'fleming',\n",
" 'at',\n",
" '(',\n",
" '212'),\n",
" 14),\n",
" (('one',\n",
" 'centre',\n",
" 'street',\n",
" ',',\n",
" 'room',\n",
" '2000',\n",
" 'north',\n",
" ',',\n",
" 'new',\n",
" 'york'),\n",
" 14),\n",
" (('and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'in',\n",
" 'accordance',\n",
" 'with',\n",
" 'section',\n",
" '824'),\n",
" 14),\n",
" (('.',\n",
" 'to',\n",
" 'schedule',\n",
" 'an',\n",
" 'inspection',\n",
" ',',\n",
" 'please',\n",
" 'contact',\n",
" 'chris',\n",
" 'fleming'),\n",
" 14),\n",
" (('212',\n",
" ')',\n",
" '386-0315',\n",
" '.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language',\n",
" 'interpreters',\n",
" 'should'),\n",
" 14),\n",
" (('the',\n",
" 'following',\n",
" ':',\n",
" 'in',\n",
" 'the',\n",
" 'matter',\n",
" 'of',\n",
" 'a',\n",
" 'proposed',\n",
" 'contract'),\n",
" 14),\n",
" (('at',\n",
" '(',\n",
" '212',\n",
" ')',\n",
" '386-0315',\n",
" '.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign',\n",
" 'language'),\n",
" 14),\n",
" (('n.y.',\n",
" '10007',\n",
" '.',\n",
" 'to',\n",
" 'schedule',\n",
" 'an',\n",
" 'inspection',\n",
" ',',\n",
" 'please',\n",
" 'contact'),\n",
" 14),\n",
" (('please',\n",
" 'contact',\n",
" 'chris',\n",
" 'fleming',\n",
" 'at',\n",
" '(',\n",
" '212',\n",
" ')',\n",
" '386-0315',\n",
" '.'),\n",
" 14),\n",
" (('property',\n",
" 'acquisitions',\n",
" 'and',\n",
" 'dispositions',\n",
" 'public',\n",
" 'hearing',\n",
" ',',\n",
" 'in',\n",
" 'accordance',\n",
" 'with'),\n",
" 14),\n",
" (('fleming',\n",
" 'at',\n",
" '(',\n",
" '212',\n",
" ')',\n",
" '386-0315',\n",
" '.',\n",
" 'individuals',\n",
" 'requesting',\n",
" 'sign'),\n",
" 14),\n",
" (('unit', ',', '253', 'broadway', ',', '2nd', 'floor', ',', 'new', 'york'),\n",
" 14),\n",
" (('public',\n",
" 'hearing',\n",
" 'will',\n",
" 'be',\n",
" 'held',\n",
" 'at',\n",
" 'the',\n",
" 'administration',\n",
" 'for',\n",
" 'children'),\n",
" 13),\n",
" (('administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" 'of',\n",
" 'the',\n",
" 'city',\n",
" 'of',\n",
" 'new'),\n",
" 13),\n",
" (('titles',\n",
" 'within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'agency',\n",
" ':',\n",
" 'department',\n",
" 'of',\n",
" 'information'),\n",
" 13),\n",
" ((':',\n",
" 'department',\n",
" 'of',\n",
" 'design',\n",
" 'and',\n",
" 'construction',\n",
" 'description',\n",
" 'of',\n",
" 'services',\n",
" 'sought'),\n",
" 13),\n",
" (('of',\n",
" 'the',\n",
" 'procurement',\n",
" 'policy',\n",
" 'board',\n",
" 'rules',\n",
" '.',\n",
" 'a',\n",
" 'copy',\n",
" 'of'),\n",
" 13),\n",
" (('new',\n",
" 'york',\n",
" 'city',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" ',',\n",
" 'office'),\n",
" 13),\n",
" (('143', ',', 'new', 'york', ',', 'ny', '10007', 'at', '9:15', 'a.m.'), 13),\n",
" (('federal',\n",
" 'taxation',\n",
" 'pursuant',\n",
" 'to',\n",
" 'section',\n",
" '501',\n",
" '(',\n",
" 'c',\n",
" ')',\n",
" '('),\n",
" 13),\n",
" (('corporation',\n",
" 'exempt',\n",
" 'from',\n",
" 'federal',\n",
" 'taxation',\n",
" 'pursuant',\n",
" 'to',\n",
" 'section',\n",
" '501',\n",
" '('),\n",
" 13),\n",
" (('section', '501', '(', 'c', ')', '(', '3', ')', 'of', 'the'), 13),\n",
" (('york',\n",
" 'city',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" ',',\n",
" 'office',\n",
" 'of'),\n",
" 13),\n",
" ((',', 'training', 'room', '#', '143', ',', 'new', 'york', ',', 'ny'), 13),\n",
" (('from',\n",
" 'federal',\n",
" 'taxation',\n",
" 'pursuant',\n",
" 'to',\n",
" 'section',\n",
" '501',\n",
" '(',\n",
" 'c',\n",
" ')'),\n",
" 13),\n",
" (('new',\n",
" 'york',\n",
" 'having',\n",
" 'an',\n",
" 'approximate',\n",
" 'original',\n",
" 'principal',\n",
" 'amount',\n",
" 'of',\n",
" '$'),\n",
" 13),\n",
" (('that',\n",
" 'a',\n",
" 'public',\n",
" 'hearing',\n",
" 'will',\n",
" 'be',\n",
" 'held',\n",
" 'at',\n",
" 'the',\n",
" 'administration'),\n",
" 13),\n",
" (('at',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services'),\n",
" 13),\n",
" (('between',\n",
" 'the',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" 'of',\n",
" 'the',\n",
" 'city'),\n",
" 13),\n",
" (('the',\n",
" 'procurement',\n",
" 'policy',\n",
" 'board',\n",
" 'rules',\n",
" '.',\n",
" 'a',\n",
" 'copy',\n",
" 'of',\n",
" 'the'),\n",
" 13),\n",
" ((',',\n",
" 'new',\n",
" 'york',\n",
" 'having',\n",
" 'an',\n",
" 'approximate',\n",
" 'original',\n",
" 'principal',\n",
" 'amount',\n",
" 'of'),\n",
" 13),\n",
" (('#', '143', ',', 'new', 'york', ',', 'ny', '10007', 'at', '9:15'), 13),\n",
" (('william',\n",
" 'street',\n",
" ',',\n",
" '9th',\n",
" 'floor',\n",
" ',',\n",
" 'borough',\n",
" 'of',\n",
" 'manhattan',\n",
" ','),\n",
" 13),\n",
" (('for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" 'of',\n",
" 'the',\n",
" 'city',\n",
" 'of',\n",
" 'new',\n",
" 'york'),\n",
" 13),\n",
" (('hearing',\n",
" 'will',\n",
" 'be',\n",
" 'held',\n",
" 'at',\n",
" 'the',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\"),\n",
" 13),\n",
" (('a',\n",
" 'public',\n",
" 'hearing',\n",
" 'will',\n",
" 'be',\n",
" 'held',\n",
" 'at',\n",
" 'the',\n",
" 'administration',\n",
" 'for'),\n",
" 13),\n",
" (('exempt',\n",
" 'from',\n",
" 'federal',\n",
" 'taxation',\n",
" 'pursuant',\n",
" 'to',\n",
" 'section',\n",
" '501',\n",
" '(',\n",
" 'c'),\n",
" 13),\n",
" (('training', 'room', '#', '143', ',', 'new', 'york', ',', 'ny', '10007'),\n",
" 13),\n",
" (('room', '#', '143', ',', 'new', 'york', ',', 'ny', '10007', 'at'), 13),\n",
" (('be',\n",
" 'held',\n",
" 'at',\n",
" 'the',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" ','),\n",
" 13),\n",
" (('visit',\n",
" 'nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'or',\n",
" 'contact',\n",
" '(',\n",
" '212',\n",
" ')',\n",
" '306-6088'),\n",
" 13),\n",
" (('island',\n",
" ',',\n",
" 'new',\n",
" 'york',\n",
" 'having',\n",
" 'an',\n",
" 'approximate',\n",
" 'original',\n",
" 'principal',\n",
" 'amount'),\n",
" 13),\n",
" (('at',\n",
" '10:00',\n",
" 'a.m.',\n",
" 'on',\n",
" 'the',\n",
" 'following',\n",
" ':',\n",
" 'in',\n",
" 'the',\n",
" 'matter'),\n",
" 13),\n",
" (('children',\n",
" \"'s\",\n",
" 'services',\n",
" 'of',\n",
" 'the',\n",
" 'city',\n",
" 'of',\n",
" 'new',\n",
" 'york',\n",
" 'and'),\n",
" 13),\n",
" (('agency',\n",
" ':',\n",
" 'department',\n",
" 'of',\n",
" 'design',\n",
" 'and',\n",
" 'construction',\n",
" 'description',\n",
" 'of',\n",
" 'services'),\n",
" 13),\n",
" (('pursuant', 'to', 'section', '501', '(', 'c', ')', '(', '3', ')'), 13),\n",
" (('nycha',\n",
" \"'s\",\n",
" 'website',\n",
" 'or',\n",
" 'contact',\n",
" '(',\n",
" '212',\n",
" ')',\n",
" '306-6088',\n",
" '.'),\n",
" 13),\n",
" (('to', 'section', '501', '(', 'c', ')', '(', '3', ')', 'of'), 13),\n",
" (('taxation', 'pursuant', 'to', 'section', '501', '(', 'c', ')', '(', '3'),\n",
" 13),\n",
" (('10:00',\n",
" 'a.m.',\n",
" 'on',\n",
" 'the',\n",
" 'following',\n",
" ':',\n",
" 'in',\n",
" 'the',\n",
" 'matter',\n",
" 'of'),\n",
" 13),\n",
" (('department',\n",
" 'of',\n",
" 'design',\n",
" 'and',\n",
" 'construction',\n",
" 'description',\n",
" 'of',\n",
" 'services',\n",
" 'sought',\n",
" ':'),\n",
" 13),\n",
" (('150',\n",
" 'william',\n",
" 'street',\n",
" ',',\n",
" '9th',\n",
" 'floor',\n",
" ',',\n",
" 'borough',\n",
" 'of',\n",
" 'manhattan'),\n",
" 13),\n",
" (('inspection',\n",
" 'at',\n",
" 'the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\"),\n",
" 13),\n",
" (('the',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" 'of',\n",
" 'the',\n",
" 'city',\n",
" 'of'),\n",
" 13),\n",
" (('will',\n",
" 'be',\n",
" 'held',\n",
" 'at',\n",
" 'the',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services'),\n",
" 13),\n",
" ((',', '150', 'william', 'street', ',', '9th', 'floor', ',', 'borough', 'of'),\n",
" 13),\n",
" (('the',\n",
" 'new',\n",
" 'york',\n",
" 'city',\n",
" 'administration',\n",
" 'for',\n",
" 'children',\n",
" \"'s\",\n",
" 'services',\n",
" ','),\n",
" 13),\n",
" (('llc',\n",
" 'pursuant',\n",
" 'to',\n",
" 'sections',\n",
" '197-c',\n",
" 'and',\n",
" '201',\n",
" 'of',\n",
" 'the',\n",
" 'new'),\n",
" 13),\n",
" (('within',\n",
" 'agency',\n",
" ':',\n",
" '0',\n",
" 'agency',\n",
" ':',\n",
" 'department',\n",
" 'of',\n",
" 'information',\n",
" 'technology'),\n",
" 13),\n",
" ((',', 'quarterly', 'or', 'at', 'the', 'call', 'of', 'the', 'chairman', '.'),\n",
" 12),\n",
" (('tuesday',\n",
" 'of',\n",
" 'july',\n",
" 'at',\n",
" '10:00',\n",
" 'a.m.',\n",
" 'board',\n",
" 'of',\n",
" 'elections',\n",
" '32'),\n",
" 12),\n",
" (('borough',\n",
" 'of',\n",
" 'manhattan',\n",
" '(',\n",
" 'to',\n",
" 'continue',\n",
" 'to',\n",
" ',',\n",
" 'maintain',\n",
" ','),\n",
" 12),\n",
" (('provides',\n",
" 'among',\n",
" 'other',\n",
" 'terms',\n",
" 'and',\n",
" 'conditions',\n",
" 'for',\n",
" 'compensation',\n",
" 'payable',\n",
" 'to'),\n",
" 12),\n",
" (('meeting',\n",
" 'held',\n",
" 'on',\n",
" 'fourth',\n",
" 'monday',\n",
" 'in',\n",
" 'may',\n",
" '.',\n",
" 'citywide',\n",
" 'administrative'),\n",
" 12),\n",
" (('new', 'york', ',', 'ny', '10004', ',', 'on', 'tuesday', ',', 'at'), 12),\n",
" (('board',\n",
" 'of',\n",
" 'health',\n",
" 'meets',\n",
" 'at',\n",
" 'gotham',\n",
" 'center',\n",
" ',',\n",
" '42-09',\n",
" '28th'),\n",
" 12),\n",
" (('thursday',\n",
" ',',\n",
" 'commencing',\n",
" '10:00',\n",
" 'a.m.',\n",
" ',',\n",
" 'and',\n",
" 'other',\n",
" 'days',\n",
" ','),\n",
" 12),\n",
" (('the',\n",
" '9th',\n",
" 'floor',\n",
" 'of',\n",
" '40',\n",
" 'rector',\n",
" 'street',\n",
" '.',\n",
" 'for',\n",
" 'changes'),\n",
" 12),\n",
" (('york', ',', 'ny', '10006', ',', 'on', 'the', 'fourth', 'wednesday', 'of'),\n",
" 12),\n",
" (('at', '10:00', 'a.m.', ',', '22', 'reade', 'street', ',', '2nd', 'floor'),\n",
" 12),\n",
" (('the',\n",
" 'commission',\n",
" '.',\n",
" 'city',\n",
" 'council',\n",
" 'meets',\n",
" 'by',\n",
" 'charter',\n",
" 'twice',\n",
" 'a'),\n",
" 12),\n",
" (('north',\n",
" ',',\n",
" '1',\n",
" 'centre',\n",
" 'street',\n",
" 'in',\n",
" 'manhattan',\n",
" 'on',\n",
" 'approximately',\n",
" 'three'),\n",
" 12),\n",
" (('board',\n",
" 'of',\n",
" 'revision',\n",
" 'of',\n",
" 'awards',\n",
" 'meets',\n",
" 'in',\n",
" 'room',\n",
" '603',\n",
" ','),\n",
" 12),\n",
" (('hours', 'of', '10', 'am', 'and', '4', 'pm', '.', 'please', 'contact'), 12),\n",
" (('(',\n",
" '212',\n",
" ')',\n",
" '306-6088',\n",
" '.',\n",
" 'parole',\n",
" 'commission',\n",
" 'meets',\n",
" 'at',\n",
" 'its'),\n",
" 12),\n",
" (('york', ',', 'ny', '10004', ',', 'on', 'tuesday', ',', 'at', '1:30'), 12),\n",
" (('floor',\n",
" 'of',\n",
" '40',\n",
" 'rector',\n",
" 'street',\n",
" '.',\n",
" 'for',\n",
" 'changes',\n",
" 'in',\n",
" 'the'),\n",
" 12),\n",
" (('and',\n",
" 'provides',\n",
" 'among',\n",
" 'other',\n",
" 'terms',\n",
" 'and',\n",
" 'conditions',\n",
" 'for',\n",
" 'compensation',\n",
" 'payable'),\n",
" 12),\n",
" ((',',\n",
" 'october',\n",
" ',',\n",
" 'november',\n",
" 'and',\n",
" 'december',\n",
" '.',\n",
" 'annual',\n",
" 'meeting',\n",
" 'held'),\n",
" 12),\n",
" (('.',\n",
" 'commission',\n",
" 'on',\n",
" 'human',\n",
" 'rights',\n",
" 'meets',\n",
" 'on',\n",
" '10th',\n",
" 'floor',\n",
" 'in'),\n",
" 12),\n",
" (('commission',\n",
" 'meets',\n",
" 'in',\n",
" 'room',\n",
" '936',\n",
" ',',\n",
" 'municipal',\n",
" 'building',\n",
" ',',\n",
" 'manhattan'),\n",
" 12),\n",
" (('on', 'the', 'third', 'thursday', 'of', 'each', 'month', ',', 'at', 'the'),\n",
" 12),\n",
" (('on',\n",
" 'the',\n",
" 'second',\n",
" 'wednesday',\n",
" 'of',\n",
" 'each',\n",
" 'month',\n",
" 'at',\n",
" '40',\n",
" 'rector'),\n",
" 12),\n",
" (('monday',\n",
" 'in',\n",
" 'january',\n",
" ',',\n",
" 'february',\n",
" ',',\n",
" 'march',\n",
" ',',\n",
" 'april',\n",
" ','),\n",
" 12),\n",
" (('meeting',\n",
" 'is',\n",
" 'held',\n",
" 'on',\n",
" 'the',\n",
" 'first',\n",
" 'tuesday',\n",
" 'of',\n",
" 'july',\n",
" 'at'),\n",
" 12),\n",
" (('environmental',\n",
" 'control',\n",
" 'board',\n",
" 'meets',\n",
" 'at',\n",
" '100',\n",
" 'church',\n",
" 'street',\n",
" ',',\n",
" '12th'),\n",
" 12),\n",
" (('www.nyc.gov/landmarks',\n",
" '.',\n",
" 'employees',\n",
" \"'\",\n",
" 'retirement',\n",
" 'system',\n",
" 'meets',\n",
" 'in',\n",
" 'the',\n",
" 'boardroom'),\n",
" 12),\n",
" (('and',\n",
" 'at',\n",
" 'the',\n",
" 'call',\n",
" 'of',\n",
" 'the',\n",
" 'commissioner',\n",
" '.',\n",
" 'environmental',\n",
" 'control'),\n",
" 12),\n",
" (('begin',\n",
" 'at',\n",
" '9:30',\n",
" 'a.m.',\n",
" 'and',\n",
" 'are',\n",
" 'customarily',\n",
" 'held',\n",
" 'on',\n",
" 'mondays'),\n",
" 12),\n",
" (('commissioner',\n",
" '.',\n",
" 'environmental',\n",
" 'control',\n",
" 'board',\n",
" 'meets',\n",
" 'at',\n",
" '100',\n",
" 'church',\n",
" 'street'),\n",
" 12),\n",
" (('32', 'broadway', ',', '7th', 'floor', ',', 'new', 'york', ',', 'ny'), 12),\n",
" (('civilian',\n",
" 'complaint',\n",
" 'review',\n",
" 'board',\n",
" 'generally',\n",
" 'meets',\n",
" 'at',\n",
" '10:00',\n",
" 'a.m.',\n",
" 'on'),\n",
" 12),\n",
" ((',', 'march', ',', 'april', ',', 'june', ',', 'september', ',', 'october'),\n",
" 12),\n",
" (('tuesday',\n",
" \"'s\",\n",
" 'each',\n",
" 'month',\n",
" ',',\n",
" 'commencing',\n",
" 'at',\n",
" '9:30',\n",
" 'a.m.',\n",
" ','),\n",
" 12),\n",
" (('personnel',\n",
" 'services',\n",
" 'will',\n",
" 'hold',\n",
" 'hearings',\n",
" 'as',\n",
" 'needed',\n",
" 'in',\n",
" 'room',\n",
" '2203'),\n",
" 12),\n",
" ((\"'\",\n",
" 'retirement',\n",
" 'system',\n",
" 'meets',\n",
" 'in',\n",
" 'the',\n",
" 'boardroom',\n",
" ',',\n",
" '22nd',\n",
" 'floor'),\n",
" 12),\n",
" (('floor',\n",
" 'conference',\n",
" 'room',\n",
" ',',\n",
" 'borough',\n",
" 'of',\n",
" 'manhattan',\n",
" ',',\n",
" 'in',\n",
" 'the'),\n",
" 12),\n",
" ((',', '2nd', 'floor', ',', 'new', 'york', ',', 'ny', '10006', '.'), 12),\n",
" (('design',\n",
" 'commission',\n",
" 'meets',\n",
" 'at',\n",
" 'city',\n",
" 'hall',\n",
" ',',\n",
" 'third',\n",
" 'floor',\n",
" ','),\n",
" 12),\n",
" (('212-788-3071',\n",
" '.',\n",
" 'department',\n",
" 'of',\n",
" 'education',\n",
" 'meets',\n",
" 'in',\n",
" 'the',\n",
" 'hall',\n",
" 'of'),\n",
" 12),\n",
" (('the',\n",
" 'president',\n",
" '.',\n",
" 'manhattan',\n",
" ',',\n",
" 'monthly',\n",
" 'on',\n",
" 'wednesdays',\n",
" ',',\n",
" 'commencing'),\n",
" 12),\n",
" (('meets',\n",
" 'at',\n",
" 'its',\n",
" 'office',\n",
" ',',\n",
" '100',\n",
" 'centre',\n",
" 'street',\n",
" ',',\n",
" 'manhattan'),\n",
" 12),\n",
" (('are',\n",
" 'customarily',\n",
" 'held',\n",
" 'on',\n",
" 'mondays',\n",
" 'preceding',\n",
" 'a',\n",
" 'tuesday',\n",
" 'public',\n",
" 'hearing'),\n",
" 12),\n",
" (('main',\n",
" 'floor',\n",
" ',',\n",
" 'manhattan',\n",
" ',',\n",
" 'weekly',\n",
" ',',\n",
" 'on',\n",
" 'thursday',\n",
" ','),\n",
" 12),\n",
" (('street', ',', 'main', 'floor', ',', 'manhattan', ',', 'weekly', ',', 'on'),\n",
" 12),\n",
" (('2', 'washington', 'street', ',', 'new', 'york', ',', 'n.y.', '10004', '.'),\n",
" 12),\n",
" (('of',\n",
" 'citywide',\n",
" 'personnel',\n",
" 'services',\n",
" 'will',\n",
" 'hold',\n",
" 'hearings',\n",
" 'as',\n",
" 'needed',\n",
" 'in'),\n",
" 12),\n",
" (('hearing',\n",
" 'meets',\n",
" 'in',\n",
" 'spector',\n",
" 'hall',\n",
" ',',\n",
" '22',\n",
" 'reade',\n",
" 'street',\n",
" ','),\n",
" 12),\n",
" (('once', 'a', 'month', 'at', 'the', 'call', 'of', 'the', 'chairman', '.'),\n",
" 12),\n",
" (('street', ',', 'long', 'island', 'city', ',', 'n.y.', '11101', ',', 'at'),\n",
" 12),\n",
" (('august', ')', 'at', '10:00', 'a.m.', 'in', 'the', 'board', 'room', 'on'),\n",
" 12),\n",
" ((',',\n",
" 'times',\n",
" 'and',\n",
" 'agendas',\n",
" ',',\n",
" 'please',\n",
" 'visit',\n",
" 'our',\n",
" 'website',\n",
" 'at'),\n",
" 12),\n",
" (('of',\n",
" 'each',\n",
" 'month',\n",
" 'at',\n",
" '6:00',\n",
" 'p.m',\n",
" '.',\n",
" 'the',\n",
" 'annual',\n",
" 'meeting'),\n",
" 12),\n",
" (('room', '2203', ',', '2', 'washington', 'street', ',', 'new', 'york', ','),\n",
" 12),\n",
" (('for',\n",
" 'compensation',\n",
" 'payable',\n",
" 'to',\n",
" 'the',\n",
" 'city',\n",
" 'according',\n",
" 'to',\n",
" 'the',\n",
" 'following'),\n",
" 12),\n",
" (('at',\n",
" '10:30',\n",
" 'a.m.',\n",
" 'board',\n",
" 'of',\n",
" 'revision',\n",
" 'of',\n",
" 'awards',\n",
" 'meets',\n",
" 'in'),\n",
" 12),\n",
" (('committee',\n",
" 'meets',\n",
" 'in',\n",
" 'spector',\n",
" 'hall',\n",
" ',',\n",
" '22',\n",
" 'reade',\n",
" 'street',\n",
" ','),\n",
" 12),\n",
" (('9:30',\n",
" 'a.m.',\n",
" ',',\n",
" 'unless',\n",
" 'otherwise',\n",
" 'noticed',\n",
" 'by',\n",
" 'the',\n",
" 'commission',\n",
" '.'),\n",
" 12),\n",
" (('other',\n",
" 'days',\n",
" ',',\n",
" 'times',\n",
" 'and',\n",
" 'location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'civilian'),\n",
" 12),\n",
" ((',', '42-09', '28th', 'street', ',', 'long', 'island', 'city', ',', 'n.y.'),\n",
" 12),\n",
" (('hall',\n",
" 'of',\n",
" 'the',\n",
" 'board',\n",
" 'for',\n",
" 'a',\n",
" 'monthly',\n",
" 'business',\n",
" 'meeting',\n",
" 'on'),\n",
" 12),\n",
" (('10:30',\n",
" 'a.m.',\n",
" 'board',\n",
" 'of',\n",
" 'revision',\n",
" 'of',\n",
" 'awards',\n",
" 'meets',\n",
" 'in',\n",
" 'room'),\n",
" 12),\n",
" (('at',\n",
" '10:00',\n",
" 'a.m.',\n",
" 'board',\n",
" 'of',\n",
" 'elections',\n",
" '32',\n",
" 'broadway',\n",
" ',',\n",
" '7th'),\n",
" 12),\n",
" ((',',\n",
" 'bi-weekly',\n",
" ',',\n",
" 'on',\n",
" 'wednesdays',\n",
" ',',\n",
" 'commencing',\n",
" '10:00',\n",
" 'a.m.',\n",
" ','),\n",
" 12),\n",
" (('meets', 'in', 'spector', 'hall', ',', '22', 'reade', 'street', ',', 'new'),\n",
" 12),\n",
" (('from',\n",
" 'the',\n",
" 'date',\n",
" 'of',\n",
" 'approval',\n",
" 'by',\n",
" 'the',\n",
" 'mayor',\n",
" 'to',\n",
" 'june'),\n",
" 12),\n",
" ((',', '22nd', 'floor', ',', '335', 'adams', 'street', ',', 'brooklyn', ','),\n",
" 12),\n",
" (('.',\n",
" 'civilian',\n",
" 'complaint',\n",
" 'review',\n",
" 'board',\n",
" 'generally',\n",
" 'meets',\n",
" 'at',\n",
" '10:00',\n",
" 'a.m.'),\n",
" 12),\n",
" ((',', 'ny', '10004', ',', 'on', 'tuesday', ',', 'at', '1:30', 'p.m.'), 12),\n",
" (('held',\n",
" 'on',\n",
" 'the',\n",
" 'first',\n",
" 'tuesday',\n",
" 'of',\n",
" 'july',\n",
" 'at',\n",
" '10:00',\n",
" 'a.m.'),\n",
" 12),\n",
" (('bulletin',\n",
" 'board',\n",
" 'at',\n",
" 'the',\n",
" 'board',\n",
" \"'s\",\n",
" 'offices',\n",
" ',',\n",
" 'at',\n",
" '40'),\n",
" 12),\n",
" (('public',\n",
" 'hearing',\n",
" 'meets',\n",
" 'in',\n",
" 'spector',\n",
" 'hall',\n",
" ',',\n",
" '22',\n",
" 'reade',\n",
" 'street'),\n",
" 12),\n",
" (('health',\n",
" 'insurance',\n",
" 'board',\n",
" 'meets',\n",
" 'in',\n",
" 'room',\n",
" '530',\n",
" ',',\n",
" 'municipal',\n",
" 'building'),\n",
" 12),\n",
" (('11101', ',', 'at', '10:00', 'a.m.', ',', 'quarterly', 'or', 'at', 'the'),\n",
" 12),\n",
" (('street',\n",
" ',',\n",
" 'main',\n",
" 'floor',\n",
" ',',\n",
" 'manhattan',\n",
" ',',\n",
" 'bi-weekly',\n",
" ',',\n",
" 'on'),\n",
" 12),\n",
" ((',', 'on', 'tuesday', ',', 'at', '1:30', 'p.m.', 'and', 'at', 'the'), 12),\n",
" ((',',\n",
" 'april',\n",
" ',',\n",
" 'june',\n",
" ',',\n",
" 'september',\n",
" ',',\n",
" 'october',\n",
" ',',\n",
" 'november'),\n",
" 12),\n",
" (('``',\n",
" 'e',\n",
" \"''\",\n",
" 'on',\n",
" 'tuesdays',\n",
" 'at',\n",
" '10:00',\n",
" 'a.m.',\n",
" 'review',\n",
" 'sessions'),\n",
" 12),\n",
" (('commission',\n",
" 'meets',\n",
" 'at',\n",
" 'its',\n",
" 'office',\n",
" ',',\n",
" '100',\n",
" 'centre',\n",
" 'street',\n",
" ','),\n",
" 12),\n",
" (('at',\n",
" 'gotham',\n",
" 'center',\n",
" ',',\n",
" '42-09',\n",
" '28th',\n",
" 'street',\n",
" ',',\n",
" 'long',\n",
" 'island'),\n",
" 12),\n",
" (('standards',\n",
" 'and',\n",
" 'appeals',\n",
" 'meets',\n",
" 'at',\n",
" '40',\n",
" 'rector',\n",
" 'street',\n",
" ',',\n",
" '6th'),\n",
" 12),\n",
" (('meets',\n",
" 'by',\n",
" 'charter',\n",
" 'twice',\n",
" 'a',\n",
" 'month',\n",
" 'in',\n",
" 'councilman',\n",
" \"'s\",\n",
" 'chamber'),\n",
" 12),\n",
" (('york',\n",
" ',',\n",
" 'ny',\n",
" '10007',\n",
" ',',\n",
" 'twice',\n",
" 'monthly',\n",
" 'on',\n",
" 'wednesday',\n",
" ','),\n",
" 12),\n",
" (('location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'real',\n",
" 'property',\n",
" 'acquisition',\n",
" 'and',\n",
" 'disposition',\n",
" 'meets'),\n",
" 12),\n",
" (('ny',\n",
" '10007',\n",
" '(',\n",
" 'unless',\n",
" 'otherwise',\n",
" 'noted',\n",
" ')',\n",
" '.',\n",
" 'any',\n",
" 'changes'),\n",
" 12),\n",
" (('street', ',', 'new', 'york', ',', 'ny', '10007', ',', 'twice', 'monthly'),\n",
" 12),\n",
" (('floor', ',', 'new', 'york', ',', 'ny', '10007', '.', 'for', 'meeting'),\n",
" 12),\n",
" (('reasonable',\n",
" 'time',\n",
" 'before',\n",
" 'the',\n",
" 'meeting',\n",
" '.',\n",
" 'for',\n",
" 'additional',\n",
" 'information',\n",
" ','),\n",
" 12),\n",
" (('a.m.', ',', 'on', 'the', 'third', 'thursday', 'of', 'each', 'month', ','),\n",
" 12),\n",
" (('40',\n",
" 'rector',\n",
" 'street',\n",
" ',',\n",
" '6th',\n",
" 'floor',\n",
" ',',\n",
" 'hearing',\n",
" 'room',\n",
" '``'),\n",
" 12),\n",
" ((',',\n",
" '2nd',\n",
" 'floor',\n",
" 'conference',\n",
" 'room',\n",
" ',',\n",
" 'borough',\n",
" 'of',\n",
" 'manhattan',\n",
" ','),\n",
" 12),\n",
" (('rector',\n",
" 'street',\n",
" ',',\n",
" '9th',\n",
" 'floor',\n",
" '.',\n",
" 'tax',\n",
" 'commission',\n",
" 'meets',\n",
" 'in'),\n",
" 12),\n",
" (('22',\n",
" 'reade',\n",
" 'street',\n",
" ',',\n",
" 'main',\n",
" 'floor',\n",
" ',',\n",
" 'manhattan',\n",
" ',',\n",
" 'monthly'),\n",
" 12),\n",
" (('at',\n",
" 'the',\n",
" 'call',\n",
" 'of',\n",
" 'the',\n",
" 'chairman',\n",
" '.',\n",
" 'board',\n",
" 'of',\n",
" 'standards'),\n",
" 12),\n",
" ((',', 'new', 'york', ',', 'ny', '10007', 'at', '9:15', 'a.m.', 'once'), 12),\n",
" (('information',\n",
" ',',\n",
" 'please',\n",
" 'call',\n",
" 'the',\n",
" 'application',\n",
" 'desk',\n",
" 'at',\n",
" '(',\n",
" '212'),\n",
" 12),\n",
" (('a.m.',\n",
" 'review',\n",
" 'sessions',\n",
" 'begin',\n",
" 'at',\n",
" '9:30',\n",
" 'a.m.',\n",
" 'and',\n",
" 'are',\n",
" 'customarily'),\n",
" 12),\n",
" (('rights',\n",
" 'meets',\n",
" 'on',\n",
" '10th',\n",
" 'floor',\n",
" 'in',\n",
" 'the',\n",
" 'commission',\n",
" \"'s\",\n",
" 'central'),\n",
" 12),\n",
" ((',',\n",
" 'at',\n",
" '10:00',\n",
" 'a.m.',\n",
" ',',\n",
" 'unless',\n",
" 'otherwise',\n",
" 'ordered',\n",
" 'by',\n",
" 'the'),\n",
" 12),\n",
" (('hall', ',', 'third', 'floor', ',', 'new', 'york', ',', 'ny', '10007'), 12),\n",
" (('chairman',\n",
" '.',\n",
" 'health',\n",
" 'insurance',\n",
" 'board',\n",
" 'meets',\n",
" 'in',\n",
" 'room',\n",
" '530',\n",
" ','),\n",
" 12),\n",
" (('needed',\n",
" 'in',\n",
" 'room',\n",
" '2203',\n",
" ',',\n",
" '2',\n",
" 'washington',\n",
" 'street',\n",
" ',',\n",
" 'new'),\n",
" 12),\n",
" (('floor', ',', 'new', 'york', ',', 'ny', '10004', ',', 'on', 'tuesday'), 12),\n",
" (('floor', ',', 'new', 'york', ',', 'ny', '10006', '.', 'visit', 'http'), 12),\n",
" (('changes',\n",
" 'in',\n",
" 'the',\n",
" 'schedule',\n",
" ',',\n",
" 'or',\n",
" 'additonal',\n",
" 'information',\n",
" ',',\n",
" 'please'),\n",
" 12),\n",
" (('for',\n",
" 'the',\n",
" 'last',\n",
" 'wednesday',\n",
" 'of',\n",
" 'each',\n",
" 'month',\n",
" '(',\n",
" 'except',\n",
" 'august'),\n",
" 12),\n",
" (('warranted',\n",
" '.',\n",
" 'civilian',\n",
" 'complaint',\n",
" 'review',\n",
" 'board',\n",
" 'generally',\n",
" 'meets',\n",
" 'at',\n",
" '10:00'),\n",
" 12),\n",
" (('location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'landmarks',\n",
" 'preservation',\n",
" 'commission',\n",
" 'meets',\n",
" 'in',\n",
" 'the'),\n",
" 12),\n",
" (('floor', ',', 'hearing', 'room', '``', 'e', \"''\", 'on', 'tuesdays', 'at'),\n",
" 12),\n",
" (('sessions',\n",
" 'begin',\n",
" 'at',\n",
" '9:30',\n",
" 'a.m.',\n",
" 'and',\n",
" 'are',\n",
" 'customarily',\n",
" 'held',\n",
" 'on'),\n",
" 12),\n",
" (('call',\n",
" 'of',\n",
" 'the',\n",
" 'chairman',\n",
" '.',\n",
" 'housing',\n",
" 'authority',\n",
" 'board',\n",
" 'meetings',\n",
" 'of'),\n",
" 12),\n",
" (('1:30',\n",
" 'p.m.',\n",
" 'and',\n",
" 'at',\n",
" 'the',\n",
" 'call',\n",
" 'of',\n",
" 'the',\n",
" 'commissioner',\n",
" '.'),\n",
" 12),\n",
" (('desk',\n",
" 'at',\n",
" '(',\n",
" '212',\n",
" ')',\n",
" '513-4670',\n",
" 'or',\n",
" 'consult',\n",
" 'the',\n",
" 'bulletin'),\n",
" 12),\n",
" ((')',\n",
" '513-4670',\n",
" 'or',\n",
" 'consult',\n",
" 'the',\n",
" 'bulletin',\n",
" 'board',\n",
" 'at',\n",
" 'the',\n",
" 'board'),\n",
" 12),\n",
" (('scheduling',\n",
" 'changes',\n",
" '.',\n",
" 'design',\n",
" 'commission',\n",
" 'meets',\n",
" 'at',\n",
" 'city',\n",
" 'hall',\n",
" ','),\n",
" 12),\n",
" ((\"'s\",\n",
" 'central',\n",
" 'office',\n",
" ',',\n",
" '40',\n",
" 'rector',\n",
" 'street',\n",
" ',',\n",
" 'new',\n",
" 'york'),\n",
" 12),\n",
" (('new',\n",
" 'york',\n",
" ',',\n",
" 'ny',\n",
" '10007',\n",
" ',',\n",
" 'twice',\n",
" 'monthly',\n",
" 'on',\n",
" 'wednesday'),\n",
" 12),\n",
" (('july',\n",
" 'at',\n",
" '10:00',\n",
" 'a.m.',\n",
" 'board',\n",
" 'of',\n",
" 'elections',\n",
" '32',\n",
" 'broadway',\n",
" ','),\n",
" 12),\n",
" (('the', 'hours', 'of', '10', 'am', 'and', '4', 'pm', '.', 'please'), 12),\n",
" (('.',\n",
" 'for',\n",
" 'current',\n",
" 'meeting',\n",
" 'dates',\n",
" ',',\n",
" 'times',\n",
" 'and',\n",
" 'agendas',\n",
" ','),\n",
" 12),\n",
" (('tuesday',\n",
" 'public',\n",
" 'hearing',\n",
" 'in',\n",
" 'the',\n",
" 'bsa',\n",
" 'conference',\n",
" 'room',\n",
" 'on',\n",
" 'the'),\n",
" 12),\n",
" (('10007',\n",
" '(',\n",
" 'unless',\n",
" 'otherwise',\n",
" 'noted',\n",
" ')',\n",
" '.',\n",
" 'any',\n",
" 'changes',\n",
" 'to'),\n",
" 12),\n",
" (('or',\n",
" 'call',\n",
" '212-788-3071',\n",
" '.',\n",
" 'department',\n",
" 'of',\n",
" 'education',\n",
" 'meets',\n",
" 'in',\n",
" 'the'),\n",
" 12),\n",
" (('commission',\n",
" \"'s\",\n",
" 'central',\n",
" 'office',\n",
" ',',\n",
" '40',\n",
" 'rector',\n",
" 'street',\n",
" ',',\n",
" 'new'),\n",
" 12),\n",
" ((',',\n",
" 'at',\n",
" '10:30',\n",
" 'a.m.',\n",
" 'board',\n",
" 'of',\n",
" 'revision',\n",
" 'of',\n",
" 'awards',\n",
" 'meets'),\n",
" 12),\n",
" (('meets', 'at', 'city', 'hall', ',', 'third', 'floor', ',', 'new', 'york'),\n",
" 12),\n",
" (('elections',\n",
" '32',\n",
" 'broadway',\n",
" ',',\n",
" '7th',\n",
" 'floor',\n",
" ',',\n",
" 'new',\n",
" 'york',\n",
" ','),\n",
" 12),\n",
" (('boardroom',\n",
" ',',\n",
" '22nd',\n",
" 'floor',\n",
" ',',\n",
" '335',\n",
" 'adams',\n",
" 'street',\n",
" ',',\n",
" 'brooklyn'),\n",
" 12),\n",
" (('40',\n",
" 'rector',\n",
" 'street',\n",
" ',',\n",
" '9th',\n",
" 'floor',\n",
" '.',\n",
" 'tax',\n",
" 'commission',\n",
" 'meets'),\n",
" 12),\n",
" (('room',\n",
" ',',\n",
" 'borough',\n",
" 'of',\n",
" 'manhattan',\n",
" ',',\n",
" 'in',\n",
" 'the',\n",
" 'matter',\n",
" 'of'),\n",
" 12),\n",
" (('by',\n",
" 'the',\n",
" 'commission',\n",
" '.',\n",
" 'for',\n",
" 'current',\n",
" 'meeting',\n",
" 'dates',\n",
" ',',\n",
" 'times'),\n",
" 12),\n",
" (('customarily',\n",
" 'held',\n",
" 'on',\n",
" 'mondays',\n",
" 'preceding',\n",
" 'a',\n",
" 'tuesday',\n",
" 'public',\n",
" 'hearing',\n",
" 'in'),\n",
" 12),\n",
" (('office', ',', '40', 'rector', 'street', ',', 'new', 'york', ',', 'ny'),\n",
" 12),\n",
" (('consult',\n",
" 'the',\n",
" 'bulletin',\n",
" 'board',\n",
" 'at',\n",
" 'the',\n",
" 'board',\n",
" \"'s\",\n",
" 'offices',\n",
" ','),\n",
" 12),\n",
" (('practicable',\n",
" 'at',\n",
" 'a',\n",
" 'reasonable',\n",
" 'time',\n",
" 'before',\n",
" 'the',\n",
" 'meeting',\n",
" '.',\n",
" 'for'),\n",
" 12),\n",
" (('health',\n",
" 'meets',\n",
" 'at',\n",
" 'gotham',\n",
" 'center',\n",
" ',',\n",
" '42-09',\n",
" '28th',\n",
" 'street',\n",
" ','),\n",
" 12),\n",
" (('other',\n",
" 'days',\n",
" ',',\n",
" 'times',\n",
" 'and',\n",
" 'location',\n",
" 'as',\n",
" 'warranted',\n",
" '.',\n",
" 'landmarks'),\n",
" 12),\n",
" ((',',\n",
" '1',\n",
" 'centre',\n",
" 'street',\n",
" 'in',\n",
" 'manhattan',\n",
" 'on',\n",
" 'approximately',\n",
" 'three',\n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment